vorpalblade-kaart's Comments
| Post | When | Comment |
|---|---|---|
| Mapping based on Excursions of Feb to Sept 2022, Calico |
If you hold down |
|
| JOSM : Update Java | Fair enough. For the link from JOSM, it should have prefilled most of those fields based off of the currently running system, and gone directly to the download area. I tried to make it as painless as possible. Obviously I failed. :( |
|
| JOSM : Update Java |
I’m hoping that we’ll be able to move off of Java 8 by end of year, but that kind of depends upon how many of our users move to Java 11 or later.
I tried to make it as painless as possible – I know most people are used to the java.com being the “official” Java distributor, but for Java 11+, it no longer is one. So we have to send users to one of several different Java distributors. We wanted users to have JavaFX (since it is required for some plugins), which decreased the options available. Essentially Bellsoft’s Liberica distribution or Azul’s Zulu distribution. With OpenWebStart, we are preferring the Zulu distribution, so I made the decision to link to Azul’s Zulu page. We are also building our installers using Azul’s distribution.
It is more a case that java.com doesn’t provide Java Runtime Environment installers for Java 11 or later, and we want to move to Java 11 or later. So we can’t link to java.com.
Stupid question: Why didn’t you use the MSI installer (I’m assuming you are running x64)? It should have appeared as an option (albeit the second option). |
|
| Addresses in Whitman County, Washington | Looking at the NAD, it looks like that section of Washington is With that said, can you please verify that the data is license compatible with OpenStreetMap (i.e., is it in the public domain and/or you have appropriate permissions) prior to adding data? Alternatively, you can wait for the next NAD update, at which point the data should start appearing in RapiD and the JOSM MapWithAI plugin. If you use the JOSM MapWithAI plugin, addresses (by default) are automatically added to building outlines unless another address already exists inside the building outline. |
|
| autoupdate josm.jar | Please note that we have made JOSM available through the Microsoft Store. This also provides auto updates, but on a slightly delayed schedule (1 day or so). https://apps.microsoft.com/store/detail/josm/XPFCG1GV0WWGZX (for verification that this is the correct link, go to https://josm.openstreetmap.de/ ). |
|
| A deep dive into the OSM Wiki for service=driveway, the proposal service=Driveway2 and lack of professionalism by one OSM Wiki administrator |
Considering almost all usage is from a single user (see https://josm.openstreetmap.de/ticket/21396#comment:44 ), and how it is extraordinarily similar to @JaLooooNz: I kind of get why people don’t like In the future, can you please go through the tagging list and/or wiki proposal process? Or at least don’t use a tag that can be very easily mistaken as a misspelling for another? |
|
| Using Global Building Data |
That is roughly correct. JOSM reads delimited geojson files that follow the RFC 8142 proposed standard, which depends upon the
You’ll still have to deal with the data slowing down JOSM (it tries to draw everything), but that can be fixed by zooming in once everything loads, assuming you have allocated enough memory to JOSM. With a 6.0 GB file, you are going to want to allocate more memory to JOSM (see JOSM OutOfMemory), since the default memory given for JOSM is typically 4 GB or less. Yes, we don’t have to keep the whole file in memory, but we do have to keep the data from the whole file in memory, since we aren’t just processing it and forgetting about it (which is where the line-delimited geojson format makes a difference). |
|
| JOSM browser. |
I am hoping that this becomes easier in the future (see https://chromeos.dev/en/posts/bringing-steam-to-chromeos ), but time will tell. |
|
| 3D Mapping | Quick comment for people reading this post and wanting to use At the time of writing, the Kendzi3d plugin works on Java 8 only (and not at all on Mac). There is a version which works on Java 9+ (and Mac) called |
|
| Some JOSM error message are fatal if you are not careful | Did you file a bug report at https://josm.openstreetmap.de/newticket ? Please keep in mind that developers cannot fix items that they do not know about, and filing good bug reports is a way to (a) tell the developer about the problem and (b) how to reproduce it. My best guess: something deleted a new node that was in way/741879858 without updating the way. Which shouldn’t happen. Anyway, notes on how to fix the problem:
In this case, only delete the
|
|
| How to properly install JOSM on a Mac with Apple Silicon | No problem. We just released a new version of the JNA plugin, which should fix the issue. So people just need to update plugins prior to following your instructions. |
|
| How to properly install JOSM on a Mac with Apple Silicon | Just a heads up, if you install any plugin which depends directly or indirectly on the JNA plugin, JOSM may freeze on startup. If this happens, you may need to either (a) delete the See https://josm.openstreetmap.de/ticket/21620 . Hopefully, an updated JNA plugin will be released in the next few days. Until then, if you do need any plugin which depends upon the JNA plugin, use any of the packages that are going to run using x64 emulation modes. This may affect other plugins that bundle JNA themselves, but they are going to have to update JNA individually. This may affect the following plugins (each level indicates that the plugin(s) depend upon the upper level, and I’ve tried to indicate where each may cause a freeze):
P.S. JOSM recommends Azul or Bell Software Java distributions, preferably with OpenJFX (JavaFX) included. See https://josm.openstreetmap.de/browser/josm/trunk/README . |
|
| Styling MVT layers in JOSM | Spaces in the file path shouldn’t break it, but it wasn’t something I tested when I was coding the MVT support. As you noted, JOSM does internally convert the Mapbox Vector Tile Style into a mapcss file. I don’t remember coding anything specifically to clear the mapcss on changes from the MVT style, but I also wasn’t coding for that specific use case – I only added that ability to simplify testing while coding. There is a lot that can be done to style MVT layers, but I didn’t implement everything – that would have been (a) a big lift and (b) would have required more from the mapcss implementation. In the interest of getting support into JOSM, I only added mappings for stuff that mapcss supported. See https://josm.openstreetmap.de/browser/josm/trunk/src/org/openstreetmap/josm/data/imagery/vectortile/mapbox/style for the source code. Layers.java is probably the file you would be most interested in. It is great to see people start using the functionality. :) Source: I was the person who had to implement MVT support. |
|
| Kaart built a MapWithAI plugin for JOSM! | I don’t think we made it explicitly clear in the documentation, but you can add any server that provides OSM XML in preferences (or via remote control, for tasking managers). It just has to take a bbox in the same format as the main OSM API (left,bottom,right,top). So, if you have a county/state/country that has released address data into the public domain (or is allowing OSM to use it), you can spin up an OSM-like server and serve the data that way for importers. |