Details
Description
in... src/extension/wps/wps-core/src/main/java/org/geoserver/wps/gs/ImportProcess.java
line, 136:
targetSRSCode = "EPSG" + code;
should be:
targetSRSCode = "EPSG:" + code;
That is to say, the ':' is missing.
in... src/extension/wps/wps-core/src/main/java/org/geoserver/wps/gs/ImportProcess.java
line, 136:
targetSRSCode = "EPSG" + code;
should be:
targetSRSCode = "EPSG:" + code;
That is to say, the ':' is missing.