Henry Martin
Henry Martin
It would be great if `generate_tours` would support parallelization. This can be easily implemented by using [apply_parallel](https://github.com/mie-lab/trackintel/blob/master/trackintel/preprocessing/util.py#L42) instead of [apply](https://github.com/mie-lab/trackintel/blob/master/trackintel/preprocessing/trips.py#L152) as it is for example done in `generate_locations` [here](https://github.com/mie-lab/trackintel/blob/master/trackintel/preprocessing/staypoints.py#L96)
We are still on the hunt for the postgis integration that allows to read any data directly into a trackintel class using only one line of code ;-) We are...
The trackintel generator functions (`generate_triplegs`, `generate_trips`, ...) assign an ID to every instance. This ID plays a key role in many trackintel functions. If we want to merge trips from...
Idealy we would also have environment_dev and requirements_dev files. We can use this issue to collect dependencies. Here are some: - sphinx - pytest - black - sphinx_rtd_theme
Hey everyone, I think it would be a great idea to submit our framework for peer review once it is operational. We can also already keep the requirements in mind...
- [calc_temporal_overlap](https://github.com/mie-lab/trackintel/blob/f62ba524c6fcaec29129dd82bba5366a18e43718/trackintel/preprocessing/util.py#L6) - [apply_parallel](https://github.com/mie-lab/trackintel/blob/f62ba524c6fcaec29129dd82bba5366a18e43718/trackintel/preprocessing/util.py#L69) Both are missing in the documentation
It seems that Geopandas changed something and now the labels of the index are not correct anymore: ``` E AssertionError: GeoDataFrame.index are different E E Attribute "names" are different E...
Hi, I am trying to use the `Fit().plot_pdf` function with custom bins by passing the `bins` keyword. However this leads to an error (see error message below). I have investigated...
Fixes #99 The bins keyword is popped in `plot_pdf` and given explicitly to the `pdf` function. As there is only 1 keyword available in the `pdf` function I thought that...
Hi, I encountered a problem with latitude/longitude in the csv submission. In the documentation https://docs.opensensemap.org/#parameter-examples-Measurements-postNewMeasurements-0_0_0-2 The example for csv is: ``` sensorID,value anotherSensorId,value,RFC 3339-timestamp sensorIDtheThird,value anotherSensorId,value,RFC 3339-timestamp,longitude,latitude anotherSensorId,value,RFC 3339-timestamp,longitude,latitude,height ......