Changeset 34639 in osm
- Timestamp:
- 2018-09-13T00:06:20+02:00 (6 years ago)
- Location:
- applications/editors/josm/plugins/ColumbusCSV
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ColumbusCSV/build.xml
r34496 r34639 4 4 <property name="commit.message" value="Commit message"/> 5 5 <!-- Enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="14 153"/>6 <property name="plugin.main.version" value="14221"/> 7 7 8 8 <!-- Plugin meta data --> -
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.