-
Notifications
You must be signed in to change notification settings - Fork 77
Consider surroundings
utagawal edited this page Feb 10, 2022
·
6 revisions
-
separat kartierte Radwege sind ein Problem
Es ist mächtig kompliziert zu beachten dass diese Wege eigentlich an großen Verkehrstraßen laufen und 1000 Einmündungen kreuzen. Aus den Tags des Weges allein kann man nicht wissen dass dieser parallel zu einer richtig dicken highway=primary etc ist. Diese Wege sehen in erster Linie nicht anders aus als ein schöner isolierter Radweg im Park oder am Fluss entlang.
-
is_sidepath
very low usage (taginfo), without highway classification (no uses ofis_side_path_of
)
-
-
Java-Bibliotheken für Routing gesucht / users: Germany / OpenStreetMap Forum
Umgebung/POIs, z.B. "im Wald", "am Wasser entlang", Aussichtspunkte
(me, 8 years ago)
-
feature proposition: cycleway linked to roads - BRouter Group
-
Avoid Areas? · #319 - avoid ways within
boundary=protected_area
- Quantifying scenic areas using crowdsourced data
- POI/ROI Discovery using Flickr geotagged photos
- Reducing stress by avoiding noise with ‘Quiet Routing’ in OpenRouteService
- Introducing Healthy Routing preferring Green Areas with OpenRouteService
- A System for Generating Customized Pleasant Pedestrian Routes Based on OpenStreetMap Data
- The Shortest Path to Happiness: Recommending Beautiful, Quiet, and Happy Routes in the City
- Ist die Schönheit der Landschaft errechenbar? – Entwicklung einer Methode zur flächendeckenden Vorbewertung des Landschaftsbildes - (no longer online?)
- Quiet route planning for pedestrians in traffic noise polluted environments (GIScience)
- Lärmlayer? (OSM Forum Germany)
- How Trail Router works - Green routing
- Mapping the bicycle environment
- Openrouteservice (web) - Fußgänger > Weitere Einstellungen; GPL/LGPL License, incompatible with MIT
- Osmium
- Imposm/osm2pgsql: shp/GeoJSON (see also Mapzen Metro Extracts - directly or via DB?)
- JOSM class
- JTS Topology Suite (old site)
-
GeoSpace microservice (for Socrata SODA Server, archived)
- Efficient Streaming Vector Processing in Scala at Socrata - JTS point in polygon, PreparedGeometry, compact coordinate storage
- Biking Directions With OSRM’s New External Data Support
- systemed: Normalising OpenStreetMap tag ambiguities by location - regional track access differences by country polygon, path surface guessing by built-up area polygons (osm2pgsql, OSRM)
- How to do geographic operations (intersect) on OSM XML? - GIS SE
-
Walks.IO presentation -
"Initially used PostGIS, but that was too slow. So implemented a JTS based RTree server in Java". - How to get predominant land use for given area? / Questions and Answers / OpenStreetMap Forum
-
How Trail Router works - Green routing
SELECT l.osm_id, sum( st_area(st_intersection(ST_Buffer(l.way, 30), p.way)) / st_area(ST_Buffer(l.way, 30)) ) as green_fraction FROM planet_osm_line AS l INNER JOIN planet_osm_polygon AS p ON ST_Intersects(l.way, ST_Buffer(p.way,30)) WHERE p.natural in ('water', ...) or p.landuse in ('forest', ...) or ... GROUP BY l.osm_id