Christian Beiwinkel

Results 64 issues of Christian Beiwinkel

I was wondering if there's a reason coordinates are provided as strings rather than floats. Most geospatial libraries for Python require coordinates to be of type float (such as [shapely](https://github.com/Toblerity/Shapely)...

v3

This PR adds support for [Vroom](https://github.com/VROOM-Project/vroom)'s optimization by - adding a new `Vroom` router class with an `optimization` method - porting objects from Vroom's API to Python classes (in `routingpy.optimization.py`)...

Since HereMaps' `isochrones()` method possibly returns multiple polygons for one isochrone, the interface is now unified so that each provider's isochrone geometry now returns a list of polygons (with mostly...

#### Here's what I did ```python from shapely.geometry import Polygon from routingpy import get_router_by_name api = get_router_by_name("heremaps")(api_key) location = [13.479801753996686, 52.55725875370285] isochrones = api.isochrones(location, profile="car", intervals=[300,600]) geometries = [] for...

bug

## Expected Behavior Constructing an `OSM` object by passing the filepath as a `pathlib.Path` object instead of a string should work just as well. ## Actual Behavior `validate_input_file()` only accepts...

enhancement

First, thanks for this amazingly helpful plugin! This PR adds logical operators as parameters to the processing algorithms. The issue was that using multiple keys/values did not work properly in...

Addresses #222 Created as a draft PR, since it's just meant to get the ball rolling. I can add some more here and there, and would be happy to get...

I have recently written a number of `ol` specific vuejs components for a client and taken some inspiration from this library. I have noticed that the components in this repo...

contribution welcome

# Issue Follow-up to #4574, fixes #4571. Open to better ideas for a name. I'll list more as well if I come up with any. @nilsnolde's first take was `ignore_safe_restrictions`....

# Issue fixes #4600. Tested it on this request with a local extract: https://valhalla.openstreetmap.de/directions?profile=bicycle&wps=8.753377518391417%2C51.723442947540484%2C8.754214176356287%2C51.72341635842018 Seems like that should fix the issue. It's just a small fix but if you think...