Changeset 31419 in osm for applications/editors/josm/plugins/mapillary
- Timestamp:
- 2015-07-30T13:23:26+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/mapillary
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/build.gradle
r31405 r31419 138 138 139 139 task runJosm(type: Exec) { 140 commandLine 'j osm'140 commandLine 'java', '-jar', '/home/nokutu/josm/core/dist/josm-custom.jar' 141 141 } 142 142 runJosm.dependsOn installPluginToJosm -
applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/ImportTest.java
r31418 r31419 66 66 assertEquals(-1, MapillaryImportAction.degMinSecToDouble(num, ref), 0.01); 67 67 num[0] = new RationalNumber(180, 1); 68 assertEquals(0, MapillaryImportAction.degMinSecToDouble(num, ref), 0.01); 68 assertEquals(-180, MapillaryImportAction.degMinSecToDouble(num, ref), 0.01); 69 num[0] = new RationalNumber(190, 1); 70 assertEquals(170, MapillaryImportAction.degMinSecToDouble(num, ref), 0.01); 69 71 } 70 72
Note:
See TracChangeset
for help on using the changeset viewer.