[Schmitzm-commits] r239 - trunk/src/schmitzm/geotools
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Tue Jul 28 10:46:47 CEST 2009
Author: alfonx
Date: 2009-07-28 10:46:47 +0200 (Tue, 28 Jul 2009)
New Revision: 239
Modified:
trunk/src/schmitzm/geotools/GTUtil.java
Log:
* Methode GTUtil.createCRS (String crsDef) ge?\195?\164ndert. Bisher wurde nach einem fehlgeschlagenen EPSG Einleseveruch auch noch WKT probiert bevor null zur?\195?\188ckgegeben wurde. Das machte aber keinen Sinn, weil WKT nie mit "EPSG:" beginnt und hat bei mir zu unn?\195?\182tigen Exception-Loggings gef?\195?\188hrt.
try {
// Akzeptiert wird: EPSG-Code
if (crsDef.startsWith("EPSG:"))
crs = createCRS_EPSG( crsDef );
else
crs = CRS.parseWKT( crsDef );
} catch (Exception err) {
LOGGER.error("....
Vorher:
try {
// Akzeptiert wird: EPSG-Code
if (crsDef.startsWith("EPSG:"))
crs = createCRS_EPSG( crsDef );
if (crs == null)
crs = CRS.parseWKT( crsDef );
} catch (Exception err) {
LOGGER.error("....
Modified: trunk/src/schmitzm/geotools/GTUtil.java
===================================================================
--- trunk/src/schmitzm/geotools/GTUtil.java 2009-07-28 08:07:12 UTC (rev 238)
+++ trunk/src/schmitzm/geotools/GTUtil.java 2009-07-28 08:46:47 UTC (rev 239)
@@ -60,8 +60,7 @@
// Akzeptiert wird: EPSG-Code
if (crsDef.startsWith("EPSG:"))
crs = createCRS_EPSG( crsDef );
- // Wenn EPSG-Dekodierung nicht erfolgreich: WKT versuchen
- if ( crs == null )
+ else
crs = CRS.parseWKT( crsDef );
} catch (Exception err) {
LOGGER.error("Error while creating CRS",err);
More information about the Schmitzm-commits
mailing list