The latest updates from the town of Hernderson Nebraska. I believe i have around 90% of the buildings mapped. Once done, will move on to the sidewalks, parking lots, and other navigation details visible from the sky.

The latest updates from the town of Hernderson Nebraska. I believe i have around 90% of the buildings mapped. Once done, will move on to the sidewalks, parking lots, and other navigation details visible from the sky.

Started picking out small towns which have no detail, and started to add some details. This is Henderson, Nebraska. Currently trying to get all the buildings outlined.

I made another small analysis about the reviews made with MapComplete and Mangrove. You can read all about it here:
https://pietervdvn.me/2025/03/01/an-overview-of-reviews-made-with-mapcomplete-2025-edition/
Added missing house names and numbers. Many similar and/or confusing addresses in Old Conna area.
Some of the readers may have experienced the sinking feeling when they just attempted to upload dozens if not 100s of changes and a network glitch resulted in the editor app failing the upload.
What’s the problem when that happens?
It is literally that your editing app doesn’t know if any new objects it created locally have been successfully created on the server or not. If they have been created, retrying the upload will create duplicates, and if you don’t retry you potentially loose your work.
This post is related to work that I’m doing for version 21 of Vespucci that automates all of this, but the interesting thing is that you can easily handle many of the cases manually without editor support.
As you may know OSM changesets are not atomic, but individual uploads are (yes, you can upload multiple times in to the same changeset). With other words if your upload succeeded, but your editing app lost the response from the server, all your changes will have been successfully made, and, the other way around, if your upload fails it will fail completely.
The other point to note is that changesets are opened in a separate operation and are only automatically closed after a timeout of an hour if they are not explicitly closed after the upload by your editing app.
A normal upload operation will roughly contain the following steps
This means that there are simple cases that you can handle manually, assuming you are not uploading more than once per changeset (more on that later):
2021 was my most productive year in OpenStreetMap mapping. It was all downhill from there due to a variety of factors, highlighted by an abrupt career change that I never anticipated (COVID-19 pandemic did a lot of damage to everyone), and derailed me from my tracks.
Four (4) years since, despite being busier as a government employee with multiple designations, I decided to go back to mapping. I allocate a part of my free time to reacquaint myself with a long-lost love, and continue updating the places that became part of my journey.
Also, I became a father in the last quarter of 2024. To honor my only son, Daniw (an Iloko term for “poem”), who has exhibited a profound interest in exploring the outdoors at four (4) months old as of this writing, I shall be using a new name bearing his name.
Ngawit Aman Daniw means “Ngawit, the Father of Daniw” in Cordilleran lingo.
See our photo here: https://www.facebook.com/photo/?fbid=2294431287573827&set=a.119524685064509
“Ngawit”, by the way, is my Bontok Igorot name. I was adopted by the community in 2020 together with my life partner, Carla, through a Sangguniang Bayan Resolution. She was given the name, “Khayapon”.
You can read more about this narrative here https://nordis.net/2020/10/04/article/feature/culture-and-lifestyle/filming-their-way-home-to-the-cordillera/?amp
Hello, everyone! I am happy to be back!
View, edit, and create GPX files online with advanced route planning capabilities and file processing tools, beautiful maps and detailed data visualizations.
Mary Magdalena’s skull.
I used to enjoy making edits on OSM, but now it is so cluttered with every little detail in some areas that you can’t even zoom in to see anything but symbols. I don’t know how to cancel my username. Sorry folks, but I am outta here!
.
OSGEO Hokkaido team and SotM Japan team hosted the FOSS4G Hokkaido and State of the Map Japan 2024 in 15th February in Sapporo, Hokkaido.
The idea to organize two related conference was raised by Hokkosha in June 2024 and now is realized.
You can find the record at YouTube
Here is a link to the presentations.
This is cross-linked from my blog, posted on 11 July 2023
I recently joined the Humanitarian OpenStreetMap Team in moderating their Community Working Group and Tech Working Group’s discussions on AI-Assisted Mapping.
This, in part, was a reminder that I (still!) haven’t published an OSM diary that summarises my MA research, and that publication is still process. But it was also a reminder that I have yet to really summarise or bring together what I have shared so far.
Here’s a short summary:
Some days ago, I searched online for a bus route that was supposed to be newly introduced to go from Kilkenny to New Ross. I didn’t find it, but I found another one which pleased me even more which goes from Kilkenny to Fiddown (ref=891). The reason it pleases me is that the other route is already partly covered by another bus company and I don’t really need it, and the 891 covers a route that goes past several historical sites and at least two hiking routes. Since I don’t drive, I will certainly avail of it myself. I don’t mind organizing myself lifts, and I enjoy the company of my “drivers”, but sometimes it’s good to be more independent. For context, the bus route started on January 20th 2025.
So I decided to track it, because I don’t really trust Transport for Ireland’s route maps, and I can’t be sure that they didn’t use proprietary map material to provide the routes online, even though their background map is OSM. But I have seen routes on their website which they seemed to have taken out of thin air which had nothing to do with the actual route the bus takes.
To follow along with this tutorial, please setup and configure a Oracle Cloud instance for mapillary tools. Please refer to this guide for instructions on how to accomplish this.
ssh -i ~/.ssh/oracle_mapillary_keys/[your private key (not .pub)] opc@[IP Address copied from Oracle]scp -i ~/.ssh/oracle_mapillary_keys/[your private key (not .pub)] [/path/to/local/360/file] opc@[IP Address copied from Oracle]:~/mapillarymapillary_tools process_and_upload ~/mapillary/*.360rm ~/mapillary/*.360 && exitSo I recently started working on adding the features of a local high school into a relations group, but after looking at the docs, I’m not sure I’ve properly understood when or how relations should be used. Could somebody help clarify this?
Well, I’ve just discovered that anybody can edit like it’s wikipedia. So instead of doing homework, I’ve spent several hours fixing little things in my hometown. This is fun.
npm install leaflet react-leaflet @types/leaflet import ‘leaflet/dist/leaflet.css’; import { MapContainer, TileLayer, GeoJSON } from ‘react-leaflet’;
<MapContainer center={[39.8283, -98.5795]} zoom={4} style={{ height: ‘400px’, width: ‘100%’ }} >
<GeoJSON data={stateGeoJSON} style={stateStyle} onEachFeature={onEachFeature} /> </MapContainer>