Changeset 35102 in osm for applications/editors/josm/plugins
- Timestamp:
- 2019-08-24T13:22:56+02:00 (5 years ago)
- Location:
- applications/editors/josm/plugins/opendata
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/OdConstants.java
r34196 r35102 100 100 * Coordinates fields 101 101 */ 102 public static final String X_STRING = "X|LON| LONGI|.*LONGITUDE.*|EASTING";103 public static final String Y_STRING = "Y|LAT| LATI|.*LATITUDE.*|NORTHING";102 public static final String X_STRING = "X|LON|.*_LON|LONGI|.*LONGITUDE.*|EASTING"; 103 public static final String Y_STRING = "Y|LAT|.*_LAT|LATI|.*LATITUDE.*|NORTHING"; 104 104 public static final String XY_STRING = "POINT"; 105 105 -
applications/editors/josm/plugins/opendata/test/unit/org/openstreetmap/josm/plugins/opendata/core/io/tabular/CsvReaderTest.java
r34153 r35102 52 52 53 53 /** 54 * Non-regression test for ticket <a href="https://josm.openstreetmap.de/ticket/18029">#18029</a> 55 * @throws Exception if an error occurs during reading 56 */ 57 @Test 58 public void testTicket18029() throws Exception { 59 try (InputStream is = TestUtils.getRegressionDataStream(18029, "gtfs_stops.broken.csv")) { 60 NonRegFunctionalTests.testGeneric("#18029", CsvReader.parseDataSet(is, newHandler("EPSG:4326"), null)); 61 } 62 } 63 64 /** 54 65 * Non-regression test for ticket <a href="https://josm.openstreetmap.de/ticket/13508">#13508</a> 55 66 * @throws Exception if an error occurs during reading
Note:
See TracChangeset
for help on using the changeset viewer.