Changeset 30569 in osm for applications
- Timestamp:
- 2014-08-06T19:52:20+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/geotools
- Files:
-
- 15 added
- 15 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/geotools/.classpath
r30416 r30569 6 6 <classpathentry exported="true" kind="lib" path="lib/commons-beanutils-1.7.0.jar"/> 7 7 <classpathentry exported="true" kind="lib" path="lib/commons-pool-1.5.4.jar"/> 8 <classpathentry exported="true" kind="lib" path="lib/gt-api-1 0.5.jar"/>9 <classpathentry exported="true" kind="lib" path="lib/gt-coverage-1 0.5.jar"/>10 <classpathentry exported="true" kind="lib" path="lib/gt-data-1 0.5.jar"/>11 <classpathentry exported="true" kind="lib" path="lib/gt-epsg-extension-1 0.5.jar"/>12 <classpathentry exported="true" kind="lib" path="lib/gt-epsg-hsql-1 0.5.jar"/>13 <classpathentry exported="true" kind="lib" path="lib/gt-geotiff-1 0.5.jar"/>14 <classpathentry exported="true" kind="lib" path="lib/gt-main-1 0.5.jar"/>15 <classpathentry exported="true" kind="lib" path="lib/gt-metadata-1 0.5.jar"/>16 <classpathentry exported="true" kind="lib" path="lib/gt-opengis-1 0.5.jar"/>17 <classpathentry exported="true" kind="lib" path="lib/gt-referencing-1 0.5.jar"/>18 <classpathentry exported="true" kind="lib" path="lib/gt-shapefile-1 0.5.jar"/>19 <classpathentry exported="true" kind="lib" path="lib/hsqldb- 1.8.0.7.jar"/>20 <classpathentry exported="true" kind="lib" path="lib/imageio-ext-tiff-1.1. 8.jar"/>21 <classpathentry exported="true" kind="lib" path="lib/imageio-ext-utilities-1.1. 8.jar"/>8 <classpathentry exported="true" kind="lib" path="lib/gt-api-11.2.jar"/> 9 <classpathentry exported="true" kind="lib" path="lib/gt-coverage-11.2.jar"/> 10 <classpathentry exported="true" kind="lib" path="lib/gt-data-11.2.jar"/> 11 <classpathentry exported="true" kind="lib" path="lib/gt-epsg-extension-11.2.jar"/> 12 <classpathentry exported="true" kind="lib" path="lib/gt-epsg-hsql-11.2.jar"/> 13 <classpathentry exported="true" kind="lib" path="lib/gt-geotiff-11.2.jar"/> 14 <classpathentry exported="true" kind="lib" path="lib/gt-main-11.2.jar"/> 15 <classpathentry exported="true" kind="lib" path="lib/gt-metadata-11.2.jar"/> 16 <classpathentry exported="true" kind="lib" path="lib/gt-opengis-11.2.jar"/> 17 <classpathentry exported="true" kind="lib" path="lib/gt-referencing-11.2.jar"/> 18 <classpathentry exported="true" kind="lib" path="lib/gt-shapefile-11.2.jar"/> 19 <classpathentry exported="true" kind="lib" path="lib/hsqldb-2.2.8.jar"/> 20 <classpathentry exported="true" kind="lib" path="lib/imageio-ext-tiff-1.1.10.jar"/> 21 <classpathentry exported="true" kind="lib" path="lib/imageio-ext-utilities-1.1.10.jar"/> 22 22 <classpathentry exported="true" kind="lib" path="lib/jai_codec-1.1.3.jar"/> 23 23 <classpathentry exported="true" kind="lib" path="lib/jai_core-1.1.3.jar"/> 24 24 <classpathentry exported="true" kind="lib" path="lib/jai_imageio-1.1.jar"/> 25 <classpathentry exported="true" kind="lib" path="lib/jdom-1. 0.jar"/>25 <classpathentry exported="true" kind="lib" path="lib/jdom-1.1.3.jar"/> 26 26 <classpathentry exported="true" kind="lib" path="lib/jsr-275-1.0-beta-2.jar"/> 27 27 <classpathentry exported="true" kind="lib" path="lib/jt-contour-1.3.1.jar"/> -
applications/editors/josm/plugins/geotools/README
r30318 r30569 4 4 * Licensed under GPL v3 (see LICENSE) 5 5 6 The current embedded version of GeoTools is 1 0.5.6 The current embedded version of GeoTools is 11.2. -
applications/editors/josm/plugins/geotools/src/org/openstreetmap/josm/plugins/geotools/GeoToolsPlugin.java
r30349 r30569 11 11 import org.opengis.referencing.FactoryException; 12 12 import org.opengis.referencing.NoSuchAuthorityCodeException; 13 import org.openstreetmap.josm.Main; 13 14 import org.openstreetmap.josm.plugins.Plugin; 14 15 import org.openstreetmap.josm.plugins.PluginInformation; … … 74 75 CRS.decode("EPSG:4326"); 75 76 } catch (NoSuchAuthorityCodeException e) { 76 System.err.println("geotools: error in EPSG database initialization. NoSuchAuthorityCodeException: "+e.getMessage());77 Main.error("geotools: error in EPSG database initialization. NoSuchAuthorityCodeException: "+e.getMessage()); 77 78 } catch (FactoryException e) { 78 System.err.println("geotools: error in EPSG database initialization. FactoryException: "+e.getMessage());79 Main.error("geotools: error in EPSG database initialization. FactoryException: "+e.getMessage()); 79 80 } 80 81 }
Note:
See TracChangeset
for help on using the changeset viewer.