summaryrefslogtreecommitdiffstats
path: root/src/petascope/ConfigManager.java
diff options
context:
space:
mode:
authorAndrei Aiordachioaie <a.aiordachioaie@jacobs-university.de>2010-02-26 18:49:25 +0100
committerAndrei Aiordachioaie <a.aiordachioaie@jacobs-university.de>2010-02-26 18:49:25 +0100
commit16d4371742f512938877f2f7ce89b89ad078052a (patch)
treee81df6903c8aebf759df35934047a7a16609c75b /src/petascope/ConfigManager.java
parent4d1cef4e9cb68fe44213319832217c833bc9cced (diff)
WCPS service can now understand WGS84 (EPSG:4326) coordinate values.
A trim operation can use either WGS84 or the default coordinate system (CRS:1) to express the trim interval limits.
Diffstat (limited to 'src/petascope/ConfigManager.java')
-rw-r--r--src/petascope/ConfigManager.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/petascope/ConfigManager.java b/src/petascope/ConfigManager.java
index 81a8536..5896234 100644
--- a/src/petascope/ConfigManager.java
+++ b/src/petascope/ConfigManager.java
@@ -47,10 +47,12 @@ public class ConfigManager {
/* Major version number. This is the first release (1). */
private final static String MAJOR = "1";
- /* Minor version number. .2 adds the reference implementation of WCS 2.0 */
- private final static String MINOR = "2";
- /* Bug-fix count. We have a hack because every WCPS response is written to disk. */
+ /* Minor version number. v2 adds the reference implementation of WCS 2.0.
+ v3 adds WGS84 handling in WCPS requests. */
+ private final static String MINOR = "3";
+ /* Bug-fix count. We have a hack: every WCPS response is written to disk. */
private final static String BUGFIX = "2-hack";
+
/* Petascope 1.2.0 contains WCS 1.1.0, WCS 2.0, WCS-T 1.0.0 and WCPS 1.0.0 */
public final static String PETASCOPE_VERSION = MAJOR + "." + MINOR + "." + BUGFIX;