Changeset 9880 in josm for trunk/scripts
- Timestamp:
- 2016-02-25T00:50:30+01:00 (9 years ago)
- Location:
- trunk/scripts
- Files:
-
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/SyncEditorImageryIndex.groovy
r9879 r9880 29 29 import org.openstreetmap.josm.tools.Utils 30 30 31 class sync_editor_imagery_index {31 class SyncEditorImageryIndex { 32 32 33 33 List<ImageryInfo> josmEntries; … … 51 51 static main(def args) { 52 52 parse_command_line_arguments(args) 53 def script = new sync_editor_imagery_index()53 def script = new SyncEditorImageryIndex() 54 54 script.loadSkip() 55 55 script.start() -
trunk/scripts/TagInfoExtract.groovy
r9879 r9880 47 47 import org.openstreetmap.josm.tools.Utils 48 48 49 class taginfoextract {49 class TagInfoExtract { 50 50 51 51 static def options … … 187 187 static main(def args) { 188 188 parse_command_line_arguments(args) 189 def script = new taginfoextract()189 def script = new TagInfoExtract() 190 190 if (!options.t || options.t == 'mappaint') { 191 191 script.run()
Note:
See TracChangeset
for help on using the changeset viewer.