-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #551 from lesserwhirls/wms
wmsConfig enhancements
- Loading branch information
Showing
12 changed files
with
218 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!ELEMENT wmsConfig (global, overrides?)> | ||
|
||
<!ELEMENT global (defaults, standardNames?)> | ||
|
||
<!ELEMENT defaults (allowFeatureInfo, defaultColorScaleRange, defaultPaletteName, defaultNumColorBands, logScaling, intervalTime)> | ||
|
||
<!ELEMENT standardNames (standardName*)> | ||
|
||
<!ELEMENT standardName (defaultColorScaleRange?, defaultPaletteName?, defaultNumColorBands?, logScaling?, intervalTime?)> | ||
<!ATTLIST standardName name CDATA #REQUIRED> | ||
<!ATTLIST standardName units CDATA #REQUIRED> | ||
|
||
<!ELEMENT overrides (datasetPath*)> | ||
|
||
<!ELEMENT datasetPath (pathDefaults?, variables?)> | ||
<!ATTLIST datasetPath pathSpec CDATA #REQUIRED> | ||
|
||
<!ELEMENT pathDefaults (allowFeatureInfo?, defaultColorScaleRange?, defaultPaletteName?, defaultNumColorBands?, logScaling?, intervalTime?)> | ||
|
||
<!ELEMENT variables (variable*)> | ||
|
||
<!ELEMENT variable (defaultColorScaleRange?, defaultPaletteName?, defaultNumColorBands?, logScaling?, intervalTime?)> | ||
<!ATTLIST variable id CDATA #REQUIRED> | ||
|
||
<!ELEMENT allowFeatureInfo (#PCDATA)> | ||
<!ELEMENT defaultColorScaleRange (#PCDATA)> | ||
<!ELEMENT defaultPaletteName (#PCDATA)> | ||
<!ELEMENT defaultNumColorBands (#PCDATA)> | ||
<!ELEMENT logScaling (#PCDATA)> | ||
<!ELEMENT intervalTime (#PCDATA)> <!-- Allows to use time ranges instead of lists in the capabilities documents --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!ELEMENT wmsConfig (global, overrides?)> | ||
|
||
<!ELEMENT global (defaults, standardNames?)> | ||
|
||
<!ELEMENT defaults (allowFeatureInfo, defaultColorScaleRange, defaultAboveMaxColor, defaultBelowMinColor, defaultNoDataColor, defaultOpacity, defaultPaletteName, defaultNumColorBands, logScaling, intervalTime)> | ||
|
||
<!ELEMENT standardNames (standardName*)> | ||
|
||
<!ELEMENT standardName (defaultColorScaleRange?, defaultAboveMaxColor?, defaultBelowMinColor?, defaultNoDataColor?, defaultOpacity?, defaultPaletteName?, defaultNumColorBands?, logScaling?, intervalTime?)> | ||
<!ATTLIST standardName name CDATA #REQUIRED> | ||
<!ATTLIST standardName units CDATA #REQUIRED> | ||
|
||
<!ELEMENT overrides (datasetPath*)> | ||
|
||
<!ELEMENT datasetPath (pathDefaults?, variables?)> | ||
<!ATTLIST datasetPath pathSpec CDATA #REQUIRED> | ||
|
||
<!ELEMENT pathDefaults (allowFeatureInfo?, defaultColorScaleRange?, defaultAboveMaxColor?, defaultBelowMinColor?, defaultNoDataColor?, defaultOpacity?, defaultPaletteName?, defaultNumColorBands?, logScaling?, intervalTime?)> | ||
|
||
<!ELEMENT variables (variable*)> | ||
|
||
<!ELEMENT variable (defaultColorScaleRange?, defaultAboveMaxColor?, defaultAboveMaxColor?, defaultBelowMinColor?, defaultNoDataColor?, defaultOpacity?, defaultPaletteName?, defaultNumColorBands?, logScaling?, intervalTime?)> | ||
<!ATTLIST variable id CDATA #REQUIRED> | ||
|
||
<!ELEMENT allowFeatureInfo (#PCDATA)> | ||
<!ELEMENT defaultColorScaleRange (#PCDATA)> | ||
<!ELEMENT defaultAboveMaxColor (#PCDATA)> | ||
<!ELEMENT defaultBelowMinColor (#PCDATA)> | ||
<!ELEMENT defaultNoDataColor (#PCDATA)> | ||
<!ELEMENT defaultOpacity (#PCDATA)> | ||
<!ELEMENT defaultPaletteName (#PCDATA)> | ||
<!ELEMENT defaultNumColorBands (#PCDATA)> | ||
<!ELEMENT logScaling (#PCDATA)> | ||
<!ELEMENT intervalTime (#PCDATA)> <!-- Allows to use time ranges instead of lists in the capabilities documents --> |
Oops, something went wrong.