Modify ↓
Opened 83 minutes ago
Closed 3 minutes ago
#24878 closed defect (worksforme)
Error on "download data" using overpass query
| Reported by: | Owned by: | team | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Core | Version: | |
| Keywords: | template_report | Cc: |
Description
What steps will reproduce the problem?
I'm trying to "download data" using overpass query:
[out:json][timeout:500];
area(3600179296)->.searchArea;
(
nwrname(area.searchArea);
);
out tags;
What is the expected result?
What happens instead?
Please provide any additional information below. Attach a screenshot if possible.
Revision:19613 Build-Date:2026-08-12 01:42:58 Identification: JOSM/1.5 (19613 en) Windows 11 64-Bit OS Build number: Windows 10 Pro 25H2 (26200) Memory Usage: 512 MB / 12000 MB (140 MB allocated, but free) Java version: 21.0.12+8-LTS, Azul Systems, Inc., OpenJDK 64-Bit Server VM Look and Feel: com.sun.java.swing.plaf.windows.WindowsLookAndFeel Screen: \Display0 1920x1080x32bpp@59Hz (scaling 1.00×1.00) Maximum Screen Size: 1920×1080 Best cursor sizes: 16×16→32×32, 32×32→32×32 System property file.encoding: UTF-8 System property sun.jnu.encoding: Cp1252 Locale info: en_IT Numbers with default locale: 1234567890 -> 1234567890 VM arguments: [-Djpackage.app-version=1.5.19613, -XX:MaxRAMPercentage=75.0, --add-modules=java.scripting,java.sql,javafx.controls,javafx.media,javafx.swing,javafx.web, --add-exports=java.base/sun.security.action=ALL-UNNAMED, --add-exports=java.desktop/com.sun.imageio.plugins.jpeg=ALL-UNNAMED, --add-exports=java.desktop/com.sun.imageio.spi=ALL-UNNAMED, --add-opens=java.base/java.lang=ALL-UNNAMED, --add-opens=java.base/java.nio=ALL-UNNAMED, --add-opens=java.base/jdk.internal.loader=ALL-UNNAMED, --add-opens=java.base/jdk.internal.ref=ALL-UNNAMED, --add-opens=java.desktop/javax.imageio.spi=ALL-UNNAMED, --add-opens=java.desktop/javax.swing.text.html=ALL-UNNAMED, --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED, -Djpackage.app-path=%UserProfile%\AppData\Local\JOSM\JOSM.exe] Plugins: + apache-commons (36483) + contourmerge (v0.2.3) + ejml (36483) + geotools (36483) + jackson (36502) + jaxb (36483) + jts (36483) + measurement (36503) + opendata (36503) + pt_assistant (684) + reverter (36503) + utilsplugin2 (36503) Tagging presets: + https://josm.openstreetmap.de/josmfile?page=Presets/hiking_routes_with_trail_marking&zip=1 Map paint styles: + https://josm.openstreetmap.de/josmfile?page=Styles/iD&zip=1 + https://josm.openstreetmap.de/josmfile?page=Styles/PublicTransport&zip=1 Last errors/warnings: - 00000.514 W: extended font config - overriding 'filename.Malgun_Gothic=malgun.ttf' with 'MALGUN.TTF' - 00000.515 W: extended font config - overriding 'filename.Myanmar_Text=mmrtext.ttf' with 'MMRTEXT.TTF' - 00000.515 W: extended font config - overriding 'filename.Mongolian_Baiti=monbaiti.ttf' with 'MONBAITI.TTF' - 00000.978 E: java.security.KeyStoreException: Windows-ROOT not found. Cause: java.security.NoSuchAlgorithmException: Windows-ROOT KeyStore not available - 00001.704 W: Update plugins - You updated your JOSM software. To prevent problems the plugins should be updated as well. Update plugins now? - 00353.678 E: Handled by bug report queue: java.lang.NullPointerException: Cannot invoke "jakarta.json.JsonNumber.doubleValue()" because the return value of "jakarta.json.JsonObject.getJsonNumber(String)" is null === REPORTED CRASH DATA === BugReportExceptionHandler#handleException: No data collected. Warning issued by: BugReportExceptionHandler#handleException === STACK TRACE === Thread: AWT-EventQueue-0 (40) of main java.lang.NullPointerException: Cannot invoke "jakarta.json.JsonNumber.doubleValue()" because the return value of "jakarta.json.JsonObject.getJsonNumber(String)" is null at org.openstreetmap.josm.io.OsmJsonReader.parseNode(OsmJsonReader.java:141) at org.openstreetmap.josm.io.OsmJsonReader.parseElements(OsmJsonReader.java:85) at org.openstreetmap.josm.io.OsmJsonReader.parseRoot(OsmJsonReader.java:71) at org.openstreetmap.josm.io.OsmJsonReader.parse(OsmJsonReader.java:60) at org.openstreetmap.josm.io.OsmJsonReader.lambda$doParseDataSet$6(OsmJsonReader.java:187) at org.openstreetmap.josm.io.AbstractReader.doParseDataSet(AbstractReader.java:331) at org.openstreetmap.josm.io.AbstractReader.doParseDataSet(AbstractReader.java:314) at org.openstreetmap.josm.io.OsmJsonReader.doParseDataSet(OsmJsonReader.java:185) at org.openstreetmap.josm.io.OverpassDownloadReader.parseDataSet(OverpassDownloadReader.java:397) at org.openstreetmap.josm.io.BoundingBoxDownloader.parseOsm(BoundingBoxDownloader.java:217) at org.openstreetmap.josm.io.OverpassDownloadReader.parseOsm(OverpassDownloadReader.java:403) at org.openstreetmap.josm.actions.downloadtasks.DownloadOsmTask$DownloadTask.parseDataSet(DownloadOsmTask.java:470) at org.openstreetmap.josm.actions.downloadtasks.DownloadOsmTask$DownloadTask.realRun(DownloadOsmTask.java:478) at org.openstreetmap.josm.gui.PleaseWaitRunnable.doRealRun(PleaseWaitRunnable.java:94) at org.openstreetmap.josm.gui.PleaseWaitRunnable.run(PleaseWaitRunnable.java:142) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) at java.base/java.util.concurrent.FutureTask.run(Unknown Source) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.base/java.lang.Thread.run(Unknown Source)
Attachments (0)
Note:
See TracTickets
for help on using tickets.



I can reproduce it with something like
[out:json][timeout:25]; // gather results nwr["name"]({{bbox}}); // print results out tags;JOSM reqires coordinates, so change the last line in the query to
out geom;Please reopen the ticket if that doesn't help.