chris_debian's Comments
| Post | When | Comment |
|---|---|---|
| Contributing commercial vehicle GPS traces from Kerala — a routing approach | Hi Arjun, Really interesting approach. Using OSRM to route-match segment-based telematics data is an elegant solution to what is otherwise a frustrating data quality problem. The 19 unmapped road candidates from just two months of data shows how much potential there is in this kind of pipeline. I am curious whether you see this scaling beyond Kerala. Commercial vehicle telematics is a global dataset; logistics operators, bus fleets, and freight companies exist everywhere, and many regions have the same gap between what is in OSM and what vehicles are actually driving. A replicable, documented workflow (your Python, OSRM and gpxpy stack sounds like a good basis) could be valuable for OSM communities in other countries, particularly where aerial imagery is sparse or outdated. Have you thought about packaging this up as a reproducible tool or writing it up more formally? Publishing it on Codeberg or GitHub with a good README and some example data would make it easy for other OSM communities to pick up and adapt. It feels like the kind of thing that could get traction well beyond Kerala. One thing worth considering as the pipeline scales is privacy. Even anonymised commercial vehicle traces can potentially reveal driver behaviour, working patterns, or commercially sensitive routes. It may be worth documenting the consent chain from the telematics provider through to OSM contribution, and noting any anonymisation steps taken, such as stripping timestamps before upload. This would also strengthen the case for wider adoption. Great work, and good luck with the JOSM review of the unmapped candidates. Chris |
|
| What does "disused=yes" in OSM actually mean? | Interesting post, and the quarry example really illustrates the point well. The physical feature persists even when the function has ended, which is quite different from a closed restaurant. Janjko’s apartment building example points at the same underlying principle: the lifecycle prefix system works well where the thing genuinely ceases to exist as that thing (a closed restaurant is no longer a restaurant), but becomes awkward where the form remains while only the use has changed. In those cases One dimension I don’t think has been fully explored in the comments is reversibility. Thanks, Chris |
|
| rw | I can see the village is now mapped. Have you thought about adding local knowledge, using StreetComplete? https://streetcomplete.app/ You will need access to a smartphone to do this. Thanks, Chris. |
|
| Solar farms uk | The OSM tag wiki should help. I find this from one of the linked reports: https://taginfo.geofabrik.de/europe:united-kingdom/tags/plant%3Asource=solar#map Chris |
|
| Correcting wrong tag values | Nice work. |
|
| Correcting wrong tag values | Thanks for the clarification Marcos, makes sense to keep the edits manual for accuracy. I had a go at tidying up the script a little, in case it’s useful. The main changes:
Revised script below. Sorry about the formatting, the diary interprets hash/ pound as bold font, they should be comments in the script. Happy to be ignored if you prefer your original — it clearly does the job! :) Chris Revised script```python #! /usr/bin/env python3 “”” fix_osm_tags.py - Find and manually correct wrong highway tag values in OSM. Requires a local osm2pgsql rendering database (e.g. ‘europe’). Workflow: 1. Queries planet_osm_line for highway values, rarest first (long tail first). 2. For each rare value, opens the OSM editor in your browser one object at a time. 3. You review, correct or leave a note, then press Enter to continue. “”” import subprocess import sys import psycopg2 — Configuration —DB_NAME = “europe” BROWSER = “librewolf” BROWSER_PROFILE = “default” Highway values that are known-good and should be skipped.# Expand this list to avoid being prompted for valid rare values. KNOWN_GOOD = { “residential”, “track”, “path”, “footway”, “cycleway”, “service”, “unclassified”, “tertiary”, “secondary”, “primary”, “trunk”, “motorway”, “living_street”, “pedestrian”, “steps”, “motorway_link”, “trunk_link”, “primary_link”, “secondary_link”, “tertiary_link”, } Only show groups with fewer than this many occurrences.# Keeps the focus on the long tail of rare/likely-wrong values. MAX_COUNT = 50 def open_in_editor(osm_id: int) -> None: “"”Open the OSM web editor for a given osm2pgsql osm_id.
def main() -> None: with psycopg2.connect(dbname=DB_NAME) as db: cursor = db.cursor()
if name == “main”: sys.exit(main()) ``` |
|
| Correcting wrong tag values | Nice script, Marcos! Would you be able to share an example of a ‘before’ and ‘after’ tag? Thanks, Chris |
|
| I built a free neighborhood scoring tool for 50 European cities using OSM data | Excellent job, well done. Chris |
|
| Finally giving back... | Well done, have you tried StreetComplete? https://streetcomplete.app/ Chris |
|
| Lethbridge Neighbourhoods & My first edit! | You’re doing a really good job, Marcie. Re the addresses, if you’ve got an Android smartphone, I think having a look at StreetComplete https://streetcomplete.app/?lang=en-gb would help. Take care, Chris |
|
| Lethbridge Neighbourhoods & My first edit! | Hi, Marcie. Well done for taking your first foray into editing the best map in the world! You’re bound to make some mistakes as you go along, we all do. Something to watch out for, is importing information from sources that don’t have a compatible licence. The government map you refer to, may have some sort of proprietary licence; it’s best, if possible, to survey in person, and update OSM with what you can see. The other downside of relying on other maps, is you may introduce errors to OSM, from poorly verified local maps. Just something to watch out for. Not sure whether you’ve heard of it, but an app called StreetComplete is good for adding information. Good luck, Chris (UK) |
|
| Sulphur (Springs) Creek | Cool, have fun. Don’t forget the quick and easy updates that you can do, using the StreetComplete smartphone app. Chris |
|
| Sulphur (Springs) Creek | Perhaps add this tag, to show the previously used name? Chris |
|
| Did you know OSMwrapped? Also celebrating 1 year of mapping everyday. | This is new to me, but thanks for highlighting it. Chris |
|
| New properties to be added | Hi, Ray. Good work! To help your efforts, are you aware of the RapidID editor? It analyses the mapping imagery and suggests houses, etc. https://rapideditor.org/ This of course, should not replace common sense, and if using this method, it should be done in small batches. Mass/ automated editing is strongly discouraged, and just because Rapid identifies something, it may not be correct; you should always be sure, before committing the change. Happy mapping. Chris |
|
| Statistics.. Statistics.. Statistics.. | Hi, this sounds interesting. Are you aware of the useful tools, here: ohsome - dashboard https://share.google/PiwlQi1k512agz7ec Thanks, Chris |
|
| Sakumaps v2 | Hi, rphyrin. That’s a really good idea, especially the reuse of your code. I’m not a developer, but am trying to get MOROW off the ground. I have two versions; one based on old code, which I couldn’t get to build, and one created in Flutter, which I’ve just started. Any thoughts you have, would be greatly received. https://github.com/chrisdebian Chris |
|
| Learning OSM and JOSM and Accessibility | Jason, I meant to say, have you tried the StreetComplete app? https://streetcomplete.app Cheers, Chris |
|
| Learning OSM and JOSM and Accessibility | OSM devs, I wonder how we get this on the backlog, to factor into future planning? Jason makes valid points. I tried the accessibility checker, but it came up with a paywall, for me. Cheers, Chris chris_debian 2E0FRU |
|
| Finding streets that are really steps with OSMnx | Good point, Alan. I guess there would have to be a minimal acceptable imagery resolution, for a Quest to be available. Thanks, Chris |