mmd's Comments
Post | When | Comment |
---|---|---|
The use of Free and Open Source Software in the OpenStreetMap Foundation | @1ec5 reported on Slack that Framadate doesn’t distinguish timezones, which is “pretty much a dealbreaker for anything in OSM that I would use it for”. See https://framagit.org/framasoft/framadate/framadate/-/issues/158 |
|
The use of Free and Open Source Software in the OpenStreetMap Foundation | Regarding the code collaboration platform: almost all projects in the https://github.com/openstreetmap organisation depend on some sort of CI/CD pipeline (by the way, are those the projects which are in focus here?). I’m not 100% sure what the options are available when using Gitea, but in any case I would consider CI/CD as an absolute must have feature for any kind of new platform to switch to. OSMF based code hosting isn’t an entirely new idea: we used to have svn.openstreetmap.org (+ trac) for quite some time before some projects started moving to Github. |
|
The use of Free and Open Source Software in the OpenStreetMap Foundation | OSM’s OAuth will support OAuth2 anyway in the future, which should rule out many of today’s issues with OAuth 1.0a. For reference: https://github.com/openstreetmap/openstreetmap-website/issues/1408 |
|
Cartography an introduction | Thanks for the update! I have to say it was somewhat unexpected to see this in an official newsletter ;) |
|
Cartography an introduction | That’s a pretty weird URL for what you call a “free book”. As it stands, you’re most likely linking to some pirated copy here. |
|
Missing National Parks | Apologies, i didn’t mean to throw a random piece of overpass gibberish over the fence… :) https://dev.overpass-api.de/blog/loop_and_group.html#for has some more details about how the “for” statement works. In the example above this boils down to “for” calculating a number of groups based on the “name” tag, and then iterate over those groups. |
|
Missing National Parks | For a sorted, duplicate free (aka “DISTINCT”) list of national park names for the UK you need to use something like https://overpass-turbo.eu/s/11In |
|
Potlatch 3.0 beta | With today’s (19 November 2020) build, the Windows Task Manager “not responding” status issue seems to be gone. Also the linux wine environment crashes less frequently. I hope this is expected behaviour and not some coincidence? I’m seeing some infrequent issues when P3 fails to show parts of the map. I couldn’t figure out, if the loading process itself isn’t working properly at times, or some parts of the map are simply not drawn. In any case, I don’t see any error message. By the way, could you include some more detailed build information in the “Help” menu, maybe? That would be really helpful when reporting issues. |
|
Potlatch 3.0 beta | I tested both versions in the same small townish area, that would still fit well in the 50k node limit for an export on z16. Although working on z16 feels a bit sluggish, it’s still feasible on P2. I experienced issues in particular when panning on z17+z18. Maybe there’s something special in my set up, that impacts P3. Let’s see what other users report back. |
|
Potlatch 3.0 beta | I also tested Potlatch 3 on Windows 10 now. While the Flash based Potlatch 2 works quite smoothly on that machine, I’m seeing frequent lockups w/ Potlatch 3, in particular when panning the map. Windows Task Manager reports the app as “not responding”, and an impatient users gets prompted to kill the process. It usually takes about 5-30 seconds until it all clears all up again. Maybe there’s some processing going on that blocks the main thread, and Windows thinks the app is just unresponsive and dead. |
|
Potlatch 3.0 beta | Oh well, this seems to be somewhat unstable and tends to crash when panning the map. |
|
Potlatch 3.0 beta | those should be two separate commands after all:
|
|
Potlatch 3.0 beta | At a first glance, it seems to be working using wine: https://get2.adobe.com/air/ –> download windows version wine AdobeAIRInstaller.exe download & unzip potlatch cp Potlatch.air ~/.wine/drive_c/users/USER wine ‘C:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller\airappinstaller.exe’ C:\users\USER\Potlatch.air wine ‘C:\Program Files (x86)\Potlatch\Potlatch.exe’ (replace USER by your login user name in Linux) |
|
Potlatch 3.0 beta | Documenting things that don’t work is a good way to save others lots of time (and frustration). In general, people trying this out should be aware that installing some really old software could potentially screw up their system (end of mandatory disclaimer). |
|
Potlatch 3.0 beta | Tried a Docker image on Ubuntu 20.04 b/c I didn’t want to install some ancient libs on my box: Dockerfile:
docker build . -t my_image sudo docker run -ti –rm -e DISPLAY=$DISPLAY –net=host -v /tmp/.X11-unix:/tmp/.X11-unix my_image /bin/bash Unfortunately, installing the app using the installer crashed with a segfault. I gave up at this point.
|
|
Перестал работать инструмент контроля правок https://simon04.dev.openstreetmap.org/ | ||
Baustellenkarte für Feuerwehren | Die Karte zeigt auch ein Bauunternehmen als Baustelle: osm.org/node/2134184963 Die Overpass query scheint hier auf den ersten Blick noch etwas ausbaufähig zu sein. |
|
My August 2020 in OSM | https://lists.openstreetmap.org/pipermail/osmf-talk/2020-July/006973.html mentioned “We’re looking for a site reliability engineer who can help the OpenStreetMap Foundation’s sysadmin team manage the growth in the demand for its services.[…]”. Typically you would expect an open selection process following such an announcemnt. Having a preferred candiate in kind kind of defeats the whole idea of consulting the membership on any details about this position. BTW: No, thank you, I’m not a sysadmin kind of person :) |
|
My August 2020 in OSM |
I was somehow expecting a public announcement (not just some random tweet like https://twitter.com/OSM_Tech/status/1287395222847139846), followed by a more formal candidate selection process that includes interviews, etc. Maybe I missed this, or this was all done behind the scenes. |
|
Just Released: Third Update to Daylight Map Distribution | The positive numbers would still fit perfectly well into uint64, so that wouldn’t be much of an issue here. osm2pgsql uses an internal node cache that derives some block numbers from object ids. If those ids happen to be too large as in this case, block numbers exceed internal limits and eventually the whole processing aborts. Renumbering makes sure there’s no conflicting ids while at the same time keeping object ids in a reasonable value range. |