Ignore:
Timestamp:
2018-01-19T20:15:02+01:00 (6 years ago)
Author:
Don-vip
Message:

fix #15800 - autofix common issues in overpass queries, like overpass turbo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/OverpassDownloadReader.java

    r12841 r13335  
    394394        return ds;
    395395    }
     396
     397    /**
     398     * Fixes Overpass API query to make sure it will be accepted by JOSM.
     399     * @param query Overpass query to check
     400     * @return fixed query
     401     * @since 13335
     402     */
     403    public static String fixQuery(String query) {
     404        return query.replaceFirst("out( body| skel| ids)?( id| qt)?;", "out meta$2;");
     405    }
    396406}
Note: See TracChangeset for help on using the changeset viewer.