diff options
| author | Andrei Aiordachioaie <a.aiordachioaie@jacobs-university.de> | 2010-04-06 23:48:22 +0200 |
|---|---|---|
| committer | Andrei Aiordachioaie <a.aiordachioaie@jacobs-university.de> | 2010-04-06 23:49:02 +0200 |
| commit | c89b1dd8aaf5ff4f1e9d9aec7809855a29c18f10 (patch) | |
| tree | fe3221cb00a212860dc6cac984d445d1f04c9c10 /src/petascope/ConfigManager.java | |
| parent | 45f727227ddf2a474a9ab1e3b3f48acdbcec5dd8 (diff) | |
Implemented range expressions.
Now WCPS can accept queries of the following form:
for c in ( rgb ) return
encode(
c.red *
{
red: (char) 1;
green: (char) 2;
blue: (char) 3
},
"jpeg")
Diffstat (limited to 'src/petascope/ConfigManager.java')
| -rw-r--r-- | src/petascope/ConfigManager.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/petascope/ConfigManager.java b/src/petascope/ConfigManager.java index f757d18..d5237f3 100644 --- a/src/petascope/ConfigManager.java +++ b/src/petascope/ConfigManager.java @@ -51,7 +51,7 @@ public class ConfigManager { 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 = "7-hack"; + private final static String BUGFIX = "8-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; |
