Changeset 34639 in osm for applications/editors/josm/plugins/ColumbusCSV/src/org
- Timestamp:
- 2018-09-13T00:06:20+02:00 (6 years ago)
- Location:
- applications/editors/josm/plugins/ColumbusCSV/src/org/openstreetmap/josm/plugins/columbusCSV
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ColumbusCSV/src/org/openstreetmap/josm/plugins/columbusCSV/ColumbusCSVImporter.java
r34496 r34639 8 8 9 9 import org.openstreetmap.josm.actions.AutoScaleAction; 10 import org.openstreetmap.josm.actions.AutoScaleAction.AutoScaleMode; 10 11 import org.openstreetmap.josm.actions.ExtensionFileFilter; 11 12 import org.openstreetmap.josm.data.gpx.GpxData; … … 84 85 // ... and scale view appropriately - if wished by user 85 86 if (ColumbusCSVPreferences.zoomAfterImport()) { 86 AutoScaleAction action = new AutoScaleAction( "data");87 AutoScaleAction action = new AutoScaleAction(AutoScaleMode.DATA); 87 88 action.autoScale(); 88 89 } -
applications/editors/josm/plugins/ColumbusCSV/src/org/openstreetmap/josm/plugins/columbusCSV/ColumbusCSVReader.java
r34496 r34639 99 99 * @return GPX representation of Columbus track file. 100 100 * @throws IOException 101 * @throws DataFormatException101 * @throws IllegalDataException 102 102 */ 103 103 public GpxData transformColumbusCSV(String fileName) throws IOException, IllegalDataException {
Note:
See TracChangeset
for help on using the changeset viewer.