123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407 |
- ---
- swagger: '2.0'
- info:
- version: 1.0.0
- title: GeoServer Coverages
- description: A coverage is a raster data set which originates from a coverage store.
- contact:
- name: GeoServer
- email: 'geoserver-users@osgeo.org'
- url: 'https://geoserver.org/comm/'
- host: localhost:8080
- basePath: /geoserver/rest
- paths:
- /workspaces/{workspace}/coveragestores/{store}/coverages:
- get:
- tags:
- - "Coverages"
- operationId: getWorkspaceCoverageStore
- description: |
- Get the coverages available for the provided workspace and data store.
- parameters:
- - name: workspace
- in: path
- description: The name of the workspace
- required: true
- type: string
- - name: store
- in: path
- description: The name of the coverage data store
- required: true
- type: string
- - name: list
- description: |
- If the list parameter value is equal to "all" all the coverages available in the data source (even the non-published ones) will be returned.
- in: query
- required: false
- type: string
- enum:
- - all
- produces:
- - text/html
- - application/xml
- - application/json
- responses:
- 200:
- description: Successful response containing the list of coverages.
- schema:
- type: object
- properties:
- coverages:
- type: object
- properties:
- coverage:
- type: array
- items:
- type: object
- properties:
- name:
- type: string
- description: The Name
- link:
- type: string
- description: The URL
- examples:
- application/json: |
- {
- "coverages": {
- "coverage": [
- {
- "name": "sfdem",
- "href": "http://localhost:/geoserver/restng/workspaces/sf/coverages/sfdem.json"
- }
- ]
- }
- }
- text/xml: |
- <coverages>
- <coverage>
- <name>sfdem</name>
- <atom:link xmlns:atom="http://www.w3.org/2005/Atom" rel="alternate" href="http://localhost:/geoserver/restng/workspaces/sf/coverages/sfdem.xml" type="application/atom+xml"/>
- </coverage>
- </coverages>
- post:
- operationId: postWorkspaceCoverageStore
- tags:
- - "Coverages"
- description: |
- Create a new coverage, the underlying data store must exist.
- parameters:
- - name: workspace
- in: path
- description: The name of the workspace
- required: true
- type: string
- - name: store
- in: path
- description: The name of the coverage data store
- required: true
- type: string
- - name: coverage
- in: body
- description: The body of the coverage to POST
- required: true
- schema:
- $ref: "#/definitions/CoverageInfo"
- responses:
- 201:
- description: The coverage was successfully created.
- headers:
- Location:
- description: The location of the newly created coverage.
- type: string
- put:
- operationId: putWorkspaceCoverageStore
- tags:
- - "Coverages"
- description: Invalid. Use POST for adding a new coverage, or PUT on an individual coverage to edit that type.
- responses:
- 405:
- description: Method not allowed.
- delete:
- operationId: deleteWorkspaceCoverageStore
- tags:
- - "Coverages"
- description: Invalid. Can only delete an individual coverage.
- responses:
- 405:
- description: Method not allowed.
- /workspaces/{workspace}/coverages:
- get:
- operationId: getCoverageStore
- tags:
- - "Coverages"
- description: |
- Get the coverages available for the provided workspace.
- parameters:
- - name: workspace
- in: path
- description: The name of the workspace
- required: true
- type: string
- - name: list
- description: |
- If the list parameter value is equal to "all" all the coverages available in the data source (even the non-published ones) will be returned.
- in: query
- required: false
- type: string
- enum:
- - all
- produces:
- - text/html
- - application/xml
- - application/json
- responses:
- 200:
- description: Successful response containing the list of coverages.
- schema:
- type: object
- properties:
- coverages:
- type: object
- properties:
- coverage:
- type: array
- items:
- type: object
- properties:
- name:
- type: string
- description: The Name
- link:
- type: string
- description: The URL
- examples:
- application/json: |
- {
- "coverages": {
- "coverage": [
- {
- "name": "sfdem",
- "href": "http://localhost:/geoserver/restng/workspaces/sf/coverages/sfdem.json"
- }
- ]
- }
- }
- text/xml: |
- <coverages>
- <coverage>
- <name>sfdem</name>
- <atom:link xmlns:atom="http://www.w3.org/2005/Atom" rel="alternate" href="http://localhost:/geoserver/restng/workspaces/sf/coverages/sfdem.xml" type="application/atom+xml"/>
- </coverage>
- </coverages>
- post:
- operationId: postCoverageStore
- tags:
- - "Coverages"
- description: |
- Create a new coverage, the coverage definition needs to reference a store.
- parameters:
- - name: workspace
- in: path
- description: The name of the workspace
- required: true
- type: string
- - name: coverage
- in: body
- description: The body of the coverage to POST
- required: true
- schema:
- $ref: "#/definitions/CoverageInfo"
- responses:
- 201:
- description: The coverage was successfully created.
- headers:
- Location:
- description: The location of the newly created coverage.
- type: string
- put:
- operationId: putCoverageStore
- tags:
- - "Coverages"
- description: Invalid. Use POST for adding a new coverage, or PUT on an individual coverage to edit that type.
- responses:
- 405:
- description: Method not allowed.
- delete:
- operationId: deleteCoverageStore
- tags:
- - "Coverages"
- description: Invalid. Can only delete an individual coverage.
- responses:
- 405:
- description: Method not allowed.
- /workspaces/{workspace}/coverages/{coverage}:
- get:
- operationId: getCoverage
- tags:
- - "Coverages"
- description: Get an individual coverage.
- produces:
- - text/html
- - application/xml
- - application/json
- parameters:
- - name: workspace
- in: path
- description: The name of the workspace
- required: true
- type: string
- - name: coverage
- in: path
- description: The name of the coverage
- required: true
- type: string
- - name: quietOnNotFound
- in: query
- description: The quietOnNotFound parameter avoids logging an Exception when the coverage is not present. Note that 404 status code will be returned anyway.
- type: boolean
- required: false
- default: false
- responses:
- 200:
- description: Successful response containing coverage
- schema:
- type: object
- properties:
- featureType:
- $ref: "#/definitions/CoverageInfo"
- examples:
- application/json: |
- {
- "coverage": {
- "abstract": "Digital elevation model for the Spearfish region.\r\n\r\nsfdem is a Tagged Image File Format with Geographic information",
- "defaultInterpolationMethod": "nearest neighbor",
- "description": "Generated from sfdem",
- "dimensions": {
- "coverageDimension": [
- {
- "description": "GridSampleDimension[-9.999999933815813E36,-9.999999933815813E36]",
- "name": "GRAY_INDEX",
- "range": {
- "max": -9.999999933815813e+36,
- "min": -9.999999933815813e+36
- }
- }
- ]
- },
- "enabled": true,
- "grid": {
- "@dimension": "2",
- "crs": "EPSG:26713",
- "range": {
- "high": "634 477",
- "low": "0 0"
- },
- "transform": {
- "scaleX": 30,
- "scaleY": -30,
- "shearX": 0,
- "shearY": 0,
- "translateX": 589995,
- "translateY": 4927995
- }
- },
- "interpolationMethods": {
- "string": [
- "nearest neighbor",
- "bilinear",
- "bicubic"
- ]
- },
- "keywords": {
- "string": [
- "WCS",
- "sfdem",
- "sfdem"
- ]
- },
- "latLonBoundingBox": {
- "crs": "EPSG:4326",
- "maxx": -103.62940739432703,
- "maxy": 44.5016011535299,
- "minx": -103.87108701853181,
- "miny": 44.370187074132616
- },
- "metadata": {
- "entry": {
- "$": "sfdem_sfdem",
- "@key": "dirName"
- }
- },
- "name": "sfdem",
- "namespace": {
- "href": "http://localhost:/geoserver/restng/namespaces/sf.json",
- "name": "sf"
- },
- "nativeBoundingBox": {
- "crs": {
- "$": "EPSG:26713",
- "@class": "projected"
- },
- "maxx": 609000,
- "maxy": 4928010,
- "minx": 589980,
- "miny": 4913700
- },
- "nativeCRS": {
- "$": "PROJCS[\"NAD27 / UTM zone 13N\", \n GEOGCS[\"NAD27\", \n DATUM[\"North American Datum 1927\", \n SPHEROID[\"Clarke 1866\", 6378206.4, 294.9786982138982, AUTHORITY[\"EPSG\",\"7008\"]], \n TOWGS84[2.478, 149.752, 197.726, 0.526, -0.498, 0.501, 0.685], \n AUTHORITY[\"EPSG\",\"6267\"]], \n PRIMEM[\"Greenwich\", 0.0, AUTHORITY[\"EPSG\",\"8901\"]], \n UNIT[\"degree\", 0.017453292519943295], \n AXIS[\"Geodetic longitude\", EAST], \n AXIS[\"Geodetic latitude\", NORTH], \n AUTHORITY[\"EPSG\",\"4267\"]], \n PROJECTION[\"Transverse_Mercator\"], \n PARAMETER[\"central_meridian\", -105.0], \n PARAMETER[\"latitude_of_origin\", 0.0], \n PARAMETER[\"scale_factor\", 0.9996], \n PARAMETER[\"false_easting\", 500000.0], \n PARAMETER[\"false_northing\", 0.0], \n UNIT[\"m\", 1.0], \n AXIS[\"Easting\", EAST], \n AXIS[\"Northing\", NORTH], \n AUTHORITY[\"EPSG\",\"26713\"]]",
- "@class": "projected"
- },
- "nativeFormat": "GeoTIFF",
- "nativeName": "sfdem",
- "requestSRS": {
- "string": [
- "EPSG:26713"
- ]
- },
- "responseSRS": {
- "string": [
- "EPSG:26713"
- ]
- },
- "srs": "EPSG:26713",
- "store": {
- "@class": "coverageStore",
- "href": "http://localhost:/geoserver/restng/workspaces/sf/coveragestores/sfdem.json",
- "name": "sf:sfdem"
- },
- "supportedFormats": {
- "string": [
- "ARCGRID",
- "IMAGEMOSAIC",
- "GTOPO30",
- "GEOTIFF",
- "GIF",
- "PNG",
- "JPEG",
- "TIFF"
- ]
- },
- "title": "Spearfish elevation"
- }
- }
- application/xml: |
- <coverage>
- <name>sfdem</name>
- <nativeName>sfdem</nativeName>
- <namespace>
- <name>sf</name>
- <atom:link href="http://localhost:8080/geoserver/restng/namespaces/sf.xml" rel="alternate" type="application/atom+xml" xmlns:atom="http://www.w3.org/2005/Atom"/>
- </namespace>
- <title>Spearfish elevation</title>
- <description>Generated from sfdem</description>
- <abstract>Digital elevation model for the Spearfish region.
- sfdem is a Tagged Image File Format with Geographic information</abstract>
- <keywords>
- <string>WCS</string>
- <string>sfdem</string>
- <string>sfdem</string>
- <string>type\@language=fr\;\@vocabulary=test\;</string>
- </keywords>
- <nativeCRS class="projected">PROJCS["NAD27 / UTM zone 13N",
- GEOGCS["NAD27",
- DATUM["North American Datum 1927",
- SPHEROID["Clarke 1866", 6378206.4, 294.9786982138982, AUTHORITY["EPSG","7008"]],
- TOWGS84[2.478, 149.752, 197.726, 0.526, -0.498, 0.501, 0.685],
- AUTHORITY["EPSG","6267"]],
- PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]],
- UNIT["degree", 0.017453292519943295],
- AXIS["Geodetic longitude", EAST],
- AXIS["Geodetic latitude", NORTH],
- AUTHORITY["EPSG","4267"]],
- PROJECTION["Transverse_Mercator", AUTHORITY["EPSG","9807"]],
- PARAMETER["central_meridian", -105.0],
- PARAMETER["latitude_of_origin", 0.0],
- PARAMETER["scale_factor", 0.9996],
- PARAMETER["false_easting", 500000.0],
- PARAMETER["false_northing", 0.0],
- UNIT["m", 1.0],
- AXIS["Easting", EAST],
- AXIS["Northing", NORTH],
- AUTHORITY["EPSG","26713"]]</nativeCRS>
- <srs>EPSG:26713</srs>
- <nativeBoundingBox>
- <minx>589980.0</minx>
- <maxx>609000.0</maxx>
- <miny>4913700.0</miny>
- <maxy>4928010.0</maxy>
- <crs class="projected">EPSG:26713</crs>
- </nativeBoundingBox>
- <latLonBoundingBox>
- <minx>-103.87108701853181</minx>
- <maxx>-103.62940739432703</maxx>
- <miny>44.370187074132616</miny>
- <maxy>44.5016011535299</maxy>
- <crs>EPSG:4326</crs>
- </latLonBoundingBox>
- <enabled>true</enabled>
- <metadata>
- <entry key="elevation">
- <dimensionInfo>
- <enabled>false</enabled>
- </dimensionInfo>
- </entry>
- <entry key="cacheAgeMax">10</entry>
- <entry key="time">
- <dimensionInfo>
- <enabled>false</enabled>
- <defaultValue/>
- </dimensionInfo>
- </entry>
- <entry key="cachingEnabled">true</entry>
- <entry key="dirName">sfdem_sfdem</entry>
- </metadata>
- <store class="coverageStore">
- <name>sf:sfdem</name>
- <atom:link href="http://localhost:8080/geoserver/restng/workspaces/sf/coveragestores/sfdem.xml" rel="alternate" type="application/atom+xml" xmlns:atom="http://www.w3.org/2005/Atom"/>
- </store>
- <nativeFormat>GeoTIFF</nativeFormat>
- <grid dimension="2">
- <range>
- <low>0 0</low>
- <high>634 477</high>
- </range>
- <transform>
- <scaleX>30.0</scaleX>
- <scaleY>-30.0</scaleY>
- <shearX>0.0</shearX>
- <shearY>0.0</shearY>
- <translateX>589995.0</translateX>
- <translateY>4927995.0</translateY>
- </transform>
- <crs>EPSG:26713</crs>
- </grid>
- <supportedFormats>
- <string>ARCGRID</string>
- <string>IMAGEMOSAIC</string>
- <string>GTOPO30</string>
- <string>GEOTIFF</string>
- <string>GIF</string>
- <string>PNG</string>
- <string>JPEG</string>
- <string>TIFF</string>
- </supportedFormats>
- <interpolationMethods>
- <string>nearest neighbor</string>
- <string>bilinear</string>
- <string>bicubic</string>
- </interpolationMethods>
- <defaultInterpolationMethod>nearest neighbor</defaultInterpolationMethod>
- <dimensions>
- <coverageDimension>
- <name>GRAY_INDEX</name>
- <description>GridSampleDimension[-9.999999933815813E36,-9.999999933815813E36]</description>
- <range>
- <min>-9.999999933815813E36</min>
- <max>-9.999999933815813E36</max>
- </range>
- </coverageDimension>
- </dimensions>
- <requestSRS>
- <string>EPSG:26713</string>
- </requestSRS>
- <responseSRS>
- <string>EPSG:26713</string>
- </responseSRS>
- </coverage>
- post:
- operationId: postCoverage
- tags:
- - "Coverages"
- description: Invalid. Use POST on the coverages endpoint to add a new coverage, or PUT on an individual coverage to edit it.
- responses:
- 405:
- description: Method not allowed.
- put:
- operationId: putCoverage
- tags:
- - "Coverages"
- description: Invalid. Use POST for adding a new coverage, or PUT on an individual coverage to edit that type.
- responses:
- 405:
- description: Method not allowed.
- delete:
- operationId: deleteCoverage
- tags:
- - "Coverages"
- description: Invalid. Can only delete an individual coverage.
- responses:
- 405:
- description: Method not allowed.
- /workspaces/{workspace}/coveragestores/{store}/coverages/{coverage}:
- get:
- operationId: getWorkspaceCoverage
- tags:
- - "Coverages"
- description: Get an individual coverage.
- produces:
- - text/html
- - application/xml
- - application/json
- parameters:
- - name: workspace
- in: path
- description: The name of the workspace
- required: true
- type: string
- - name: store
- in: path
- description: The name of the coverage datastore
- required: true
- type: string
- - name: coverage
- in: path
- description: The name of the coverage
- required: true
- type: string
- - name: quietOnNotFound
- in: query
- description: The quietOnNotFound parameter avoids logging an Exception when the coverage is not present. Note that 404 status code will be returned anyway.
- type: boolean
- required: false
- default: false
- responses:
- 200:
- description: Successful response containing coverage.
- schema:
- type: object
- properties:
- featureType:
- $ref: "#/definitions/CoverageInfo"
- examples:
- application/json: |
- {
- "coverage": {
- "abstract": "Digital elevation model for the Spearfish region.\r\n\r\nsfdem is a Tagged Image File Format with Geographic information",
- "defaultInterpolationMethod": "nearest neighbor",
- "description": "Generated from sfdem",
- "dimensions": {
- "coverageDimension": [
- {
- "description": "GridSampleDimension[-9.999999933815813E36,-9.999999933815813E36]",
- "name": "GRAY_INDEX",
- "range": {
- "max": -9.999999933815813e+36,
- "min": -9.999999933815813e+36
- }
- }
- ]
- },
- "enabled": true,
- "grid": {
- "@dimension": "2",
- "crs": "EPSG:26713",
- "range": {
- "high": "634 477",
- "low": "0 0"
- },
- "transform": {
- "scaleX": 30,
- "scaleY": -30,
- "shearX": 0,
- "shearY": 0,
- "translateX": 589995,
- "translateY": 4927995
- }
- },
- "interpolationMethods": {
- "string": [
- "nearest neighbor",
- "bilinear",
- "bicubic"
- ]
- },
- "keywords": {
- "string": [
- "WCS",
- "sfdem",
- "sfdem"
- ]
- },
- "latLonBoundingBox": {
- "crs": "EPSG:4326",
- "maxx": -103.62940739432703,
- "maxy": 44.5016011535299,
- "minx": -103.87108701853181,
- "miny": 44.370187074132616
- },
- "metadata": {
- "entry": [
- {
- "$": "sfdem_sfdem",
- "@key": "dirName"
- },
- {
- "@key": "time",
- "dimensionInfo": {
- "enabled": true,
- "presentation": "CONTINUOUS_INTERVAL",
- "units": "ISO8601",
- "defaultValue": "",
- "nearestMatchEnabled": false,
- "rawNearestMatchEnabled": false,
- "startValue": 2001,
- "endValue": "2017-09-01"
- }
- }
- ]
- },
- "name": "sfdem",
- "namespace": {
- "href": "http://localhost:/geoserver/restng/namespaces/sf.json",
- "name": "sf"
- },
- "nativeBoundingBox": {
- "crs": {
- "$": "EPSG:26713",
- "@class": "projected"
- },
- "maxx": 609000,
- "maxy": 4928010,
- "minx": 589980,
- "miny": 4913700
- },
- "nativeCRS": {
- "$": "PROJCS[\"NAD27 / UTM zone 13N\", \n GEOGCS[\"NAD27\", \n DATUM[\"North American Datum 1927\", \n SPHEROID[\"Clarke 1866\", 6378206.4, 294.9786982138982, AUTHORITY[\"EPSG\",\"7008\"]], \n TOWGS84[2.478, 149.752, 197.726, 0.526, -0.498, 0.501, 0.685], \n AUTHORITY[\"EPSG\",\"6267\"]], \n PRIMEM[\"Greenwich\", 0.0, AUTHORITY[\"EPSG\",\"8901\"]], \n UNIT[\"degree\", 0.017453292519943295], \n AXIS[\"Geodetic longitude\", EAST], \n AXIS[\"Geodetic latitude\", NORTH], \n AUTHORITY[\"EPSG\",\"4267\"]], \n PROJECTION[\"Transverse_Mercator\"], \n PARAMETER[\"central_meridian\", -105.0], \n PARAMETER[\"latitude_of_origin\", 0.0], \n PARAMETER[\"scale_factor\", 0.9996], \n PARAMETER[\"false_easting\", 500000.0], \n PARAMETER[\"false_northing\", 0.0], \n UNIT[\"m\", 1.0], \n AXIS[\"Easting\", EAST], \n AXIS[\"Northing\", NORTH], \n AUTHORITY[\"EPSG\",\"26713\"]]",
- "@class": "projected"
- },
- "nativeFormat": "GeoTIFF",
- "nativeName": "sfdem",
- "requestSRS": {
- "string": [
- "EPSG:26713"
- ]
- },
- "responseSRS": {
- "string": [
- "EPSG:26713"
- ]
- },
- "srs": "EPSG:26713",
- "store": {
- "@class": "coverageStore",
- "href": "http://localhost:/geoserver/restng/workspaces/sf/coveragestores/sfdem.json",
- "name": "sf:sfdem"
- },
- "supportedFormats": {
- "string": [
- "ARCGRID",
- "IMAGEMOSAIC",
- "GTOPO30",
- "GEOTIFF",
- "GIF",
- "PNG",
- "JPEG",
- "TIFF"
- ]
- },
- "title": "Spearfish elevation"
- }
- }
- application/xml: |
- <coverage>
- <name>sfdem</name>
- <nativeName>sfdem</nativeName>
- <namespace>
- <name>sf</name>
- <atom:link href="http://localhost:8080/geoserver/restng/namespaces/sf.xml" rel="alternate" type="application/atom+xml" xmlns:atom="http://www.w3.org/2005/Atom"/>
- </namespace>
- <title>Spearfish elevation</title>
- <description>Generated from sfdem</description>
- <abstract>Digital elevation model for the Spearfish region.
- sfdem is a Tagged Image File Format with Geographic information</abstract>
- <keywords>
- <string>WCS</string>
- <string>sfdem</string>
- <string>sfdem</string>
- <string>type\@language=fr\;\@vocabulary=test\;</string>
- </keywords>
- <nativeCRS class="projected">PROJCS["NAD27 / UTM zone 13N",
- GEOGCS["NAD27",
- DATUM["North American Datum 1927",
- SPHEROID["Clarke 1866", 6378206.4, 294.9786982138982, AUTHORITY["EPSG","7008"]],
- TOWGS84[2.478, 149.752, 197.726, 0.526, -0.498, 0.501, 0.685],
- AUTHORITY["EPSG","6267"]],
- PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]],
- UNIT["degree", 0.017453292519943295],
- AXIS["Geodetic longitude", EAST],
- AXIS["Geodetic latitude", NORTH],
- AUTHORITY["EPSG","4267"]],
- PROJECTION["Transverse_Mercator", AUTHORITY["EPSG","9807"]],
- PARAMETER["central_meridian", -105.0],
- PARAMETER["latitude_of_origin", 0.0],
- PARAMETER["scale_factor", 0.9996],
- PARAMETER["false_easting", 500000.0],
- PARAMETER["false_northing", 0.0],
- UNIT["m", 1.0],
- AXIS["Easting", EAST],
- AXIS["Northing", NORTH],
- AUTHORITY["EPSG","26713"]]</nativeCRS>
- <srs>EPSG:26713</srs>
- <nativeBoundingBox>
- <minx>589980.0</minx>
- <maxx>609000.0</maxx>
- <miny>4913700.0</miny>
- <maxy>4928010.0</maxy>
- <crs class="projected">EPSG:26713</crs>
- </nativeBoundingBox>
- <latLonBoundingBox>
- <minx>-103.87108701853181</minx>
- <maxx>-103.62940739432703</maxx>
- <miny>44.370187074132616</miny>
- <maxy>44.5016011535299</maxy>
- <crs>EPSG:4326</crs>
- </latLonBoundingBox>
- <enabled>true</enabled>
- <metadata>
- <entry key="elevation">
- <dimensionInfo>
- <enabled>false</enabled>
- </dimensionInfo>
- </entry>
- <entry key="cacheAgeMax">10</entry>
- <entry key="time">
- <dimensionInfo>
- <enabled>true</enabled>
- <presentation>CONTINUOUS_INTERVAL</presentation>
- <units>ISO8601</units>
- <defaultValue/>
- <nearestMatchEnabled>false</nearestMatchEnabled>
- <rawNearestMatchEnabled>false</rawNearestMatchEnabled>
- <startValue>2001</startValue>
- <endValue>2017-09-01</endValue>
- </dimensionInfo>
- </entry>
- <entry key="cachingEnabled">true</entry>
- <entry key="dirName">sfdem_sfdem</entry>
- </metadata>
- <store class="coverageStore">
- <name>sf:sfdem</name>
- <atom:link href="http://localhost:8080/geoserver/restng/workspaces/sf/coveragestores/sfdem.xml" rel="alternate" type="application/atom+xml" xmlns:atom="http://www.w3.org/2005/Atom"/>
- </store>
- <nativeFormat>GeoTIFF</nativeFormat>
- <grid dimension="2">
- <range>
- <low>0 0</low>
- <high>634 477</high>
- </range>
- <transform>
- <scaleX>30.0</scaleX>
- <scaleY>-30.0</scaleY>
- <shearX>0.0</shearX>
- <shearY>0.0</shearY>
- <translateX>589995.0</translateX>
- <translateY>4927995.0</translateY>
- </transform>
- <crs>EPSG:26713</crs>
- </grid>
- <supportedFormats>
- <string>ARCGRID</string>
- <string>IMAGEMOSAIC</string>
- <string>GTOPO30</string>
- <string>GEOTIFF</string>
- <string>GIF</string>
- <string>PNG</string>
- <string>JPEG</string>
- <string>TIFF</string>
- </supportedFormats>
- <interpolationMethods>
- <string>nearest neighbor</string>
- <string>bilinear</string>
- <string>bicubic</string>
- </interpolationMethods>
- <defaultInterpolationMethod>nearest neighbor</defaultInterpolationMethod>
- <dimensions>
- <coverageDimension>
- <name>GRAY_INDEX</name>
- <description>GridSampleDimension[-9.999999933815813E36,-9.999999933815813E36]</description>
- <range>
- <min>-9.999999933815813E36</min>
- <max>-9.999999933815813E36</max>
- </range>
- </coverageDimension>
- </dimensions>
- <requestSRS>
- <string>EPSG:26713</string>
- </requestSRS>
- <responseSRS>
- <string>EPSG:26713</string>
- </responseSRS>
- </coverage>
- post:
- operationId: postWorkspaceCoverage
- tags:
- - "Coverages"
- description: Invalid. Use POST on the coverages endpoint to add a new coverage, or PUT on an individual coverage to edit it.
- responses:
- 405:
- description: Method not allowed.
- put:
- operationId: putWorkspaceCoverage
- tags:
- - "Coverages"
- description: Update an individual coverage
- consumes:
- - application/xml
- - text/xml
- - application/json
- - text/json
- parameters:
- - name: workspace
- in: path
- description: The name of the workspace
- required: true
- type: string
- - name: store
- in: path
- description: The name of the coverage data store
- required: true
- type: string
- - name: coverage
- in: path
- description: The name of the coverage
- required: true
- type: string
- - name: coverage
- in: body
- description: The body of the coverage to PUT
- required: true
- schema:
- $ref: "#/definitions/CoverageInfo"
- - name: calculate
- in: query
- description: 'Comma-separated list of optional fields to calculate. Optional fields include: "nativebbox", "latlonbbox", "dimensions" (that is, bands).'
- required: false
- type: array
- collectionFormat: csv
- minItems: 0
- maxItems: 2
- items:
- type: string
- enum: [nativebbox,latlonbbox]
- responses:
- 200:
- description: The coverage was successfully updated.
- delete:
- operationId: deleteWorkspaceCoverage
- tags:
- - "Coverages"
- description: Delete a coverage (optionally recursively deleting layers).
- parameters:
- - name: workspace
- in: path
- description: The name of the workspace
- required: true
- type: string
- - name: store
- in: path
- description: The name of the coverage data store
- required: true
- type: string
- - name: coverage
- in: path
- description: The name of the coverage
- required: true
- type: string
- - name: recurse
- type: boolean
- in: query
- required: false
- description: The recurse controls recursive deletion. When set to true all stores containing the resource are also removed.
- default: false
- responses:
- 200:
- description: Successfully deleted.
-
- /workspaces/{workspace}/coveragestores/{store}/coverages/{coverage}/reset:
- put:
- operationId: putCoverageReset
- tags:
- - "Coverages"
- summary: Reset the caches related to this specific coverage.
- description: Resets raster caches for this coverage. This operation is used to force GeoServer to drop caches associated to this coverage, and reconnect to the raster source the next time it is needed by a request. This is useful as the readers often cache some information about the bounds, coordinate system and image structure that might have changed in the meantime. Warning, the band structure is stored as part of the coverage configuration and won't be modified by this call, in case of need it should be modified issuing a PUT request against the coverage resource itself.
- parameters:
- - name: workspace
- in: path
- type: string
- required: true
- description: The name of the workspace containing the coverage store.
- - name: store
- in: path
- required: true
- description: The name of the coverage store containing the target coverage.
- type: string
- - name: coverage
- in: path
- required: true
- description: The name of the target coverage.
- type: string
- responses:
- 200:
- description: OK
- post:
- operationId: postCoverageReset
- tags:
- - "Coverages"
- summary: Reset the caches related to this specific coverage.
- description: Resets raster caches for this coverage. This operation is used to force GeoServer to drop caches associated to this coverage, and reconnect to the raster source the next time it is needed by a request. This is useful as the readers often cache some information about the bounds, coordinate system and image structure that might have changed in the meantime. Warning, the band structure is stored as part of the coverage configuration and won't be modified by this call, in case of need it should be modified issuing a PUT request against the coverage resource itself.
- parameters:
- - name: workspace
- in: path
- type: string
- required: true
- description: The name of the workspace containing the coverage store.
- - name: store
- in: path
- required: true
- description: The name of the coverage store containing the target coverage.
- type: string
- - name: coverage
- in: path
- required: true
- description: The name of the target coverage.
- type: string
- responses:
- 200:
- description: OK
- definitions:
- CoverageInfo:
- type: object
- properties:
- name:
- type: string
- description: The name of the resource. This name corresponds to the "published" name of the resource.
- nativeName:
- type: string
- description: The native name of the resource. This name corresponds to the physical resource that feature type is derived from -- a shapefile name, a database table, etc...
- namespace:
- type: object
- description: The namespace URI of the resource. Example would be an application schema namespace URI.
- properties:
- name:
- type: string
- description: The name of the namespace.
- href:
- type: string
- readOnly: true
- description: URL to the namespace.
- title:
- type: string
- description: The title of the resource. This is usually something that is meant to be displayed in a user interface.
- abstract:
- type: string
- description: A description of the resource. This is usually something that is meant to be displayed in a user interface.
- defaultInterpolationMethod:
- type: string
- description: Default resampling (interpolation) method that will be used for this coverage.
- keywords:
- type: object
- description: A collection of keywords associated with the resource.
- properties:
- string:
- type: array
- description: List of keyword values with internationalization and vocabulary
- items:
- type: string
- description: A single keyword value
- metadatalinks:
- type: object
- description: Wraps a collection of metadata links for the resource.
- properties:
- metadataLink:
- type: array
- description: A collection of metadata links for the resource.
- items:
- type: object
- properties:
- type:
- type: string
- description: The MIME type
- metadataType:
- type: string
- description: The type of metadata, e.g. "FGDC"
- content:
- type: string
- description: The link URL
- dataLinks:
- type: object
- description: Wraps a collection of data links for the resource.
- properties:
- metadataLink:
- type: array
- description: A collection of data links for the resource.
- items:
- type: object
- properties:
- type:
- type: string
- description: The MIME type
- content:
- type: string
- description: The link URL
- nativeCRS:
- type: string
- description: The native coordinate reference system object of the resource.
- srs:
- type: string
- description: Returns the identifier of coordinate reference system of the resource.
- nativeBoundingBox:
- type: object
- description: Returns the bounds of the resource in its declared CRS.
- properties:
- minx:
- type: number
- description: The min x coordinate
- maxx:
- type: number
- description: The max x coordinate
- miny:
- type: number
- description: The min y coordinate
- maxy:
- type: number
- description: The max y coordinate
- crs:
- type: string
- description: The coordinate reference system object of the bounding box.
- latLonBoundingBox:
- type: object
- description: The bounds of the resource in lat / lon. This value represents a "fixed value" and is not calculated on the underlying dataset.
- properties:
- minx:
- type: number
- description: The min x coordinate
- maxx:
- type: number
- description: The max x coordinate
- miny:
- type: number
- description: The min y coordinate
- maxy:
- type: number
- description: The max y coordinate
- crs:
- type: string
- description: The coordinate reference system object of the bounding box.
- metadata:
- type: array
- description: A list of key/value metadata pairs.
- items:
- $ref: "#/definitions/MetadataEntry"
- store:
- type: object
- description: The store the resource is a part of.
- properties:
- '@class':
- type: string
- description: The class of the store
- name:
- type: string
- description: The name of the store
- href:
- type: string
- description: URL to the data store
- cqlFilter:
- type: string
- description: The ECQL string used as default feature type filter
- maxFeatures:
- type: integer
- description: A cap on the number of features that a query against this type can return.
- numDecimals:
- type: number
- description: The number of decimal places to use when encoding floating point numbers from data of this feature type.
- responseSRS:
- type: object
- description: The SRSs that the WFS service will advertise in the capabilities document for this feature type (overriding the global WFS settings).
- properties:
- string:
- type: string
- description: The value of the srs
- overridingServiceSRS:
- type: boolean
- description: True if this feature type info is overriding the WFS global SRS list
- skipNumberMatched:
- type: boolean
- description: True if this feature type info is overriding the counting of numberMatched.
- circularArcPresent:
- type: boolean
- linearizationTolerance:
- type: number
- description: Tolerance used to linearize this feature type, as an absolute value expressed in the geometries own CRS
- attributes:
- type: object
- description: Wrapper for the derived set of attributes for the feature type.
- properties:
- attribute:
- type: array
- description: The derived set of attributes for the feature type.
- items:
- type: object
- description: A single attribute
- properties:
- name:
- type: string
- description: "Name of the attribute."
- minOccurs:
- type: integer
- description: "Minimum number of occurrences of the attribute."
- maxOccurs:
- type: integer
- description: "Maximum number of occurrences of the attribute."
- nillable:
- type: boolean
- description: "Flag indicating if null is an acceptable value for the attribute."
- binding:
- type: string
- description: "The java class that values of this attribute are bound to."
- length:
- type: integer
- description: Returns the length of this attribute. It's usually non null only for string and numeric types"
- dimensions:
- type: object
- description: raster dimensions
- properties:
- coverageDimension:
- type: array
- items:
- type: object
- description: raster dimension
- properties:
- description:
- type: string
- description: description of the raster dimension
- name:
- type: string
- description: name of the dimension
- range:
- type: object
- description: dimension range
- properties:
- max:
- type: number
- description: max range value
- min:
- type: number
- description: min range value
- grid:
- type: object
- description: contains information about how to translate from the raster plan to a coordinate reference system
- properties:
- dimension:
- type: string
- description: cardinality of the raster plan
- crs:
- type: string
- description: target coordinate system
- range:
- type: object
- description: range of the raster plan
- properties:
- high:
- type: string
- description: max range values
- low:
- type: string
- description: min range values
- transform:
- type: object
- description: transformation definition
- properties:
- scaleX:
- type: number
- description: scale value to apply in X
- scaleY:
- type: number
- description: scale value to apply in Y
- shearX:
- type: number
- description: shear value to apply in X
- shearY:
- type: number
- description: shear value to apply in Y
- translateX:
- type: number
- description: translation to apply in X
- translatexY:
- type: number
- description: translation to apply in Y
- interpolationMethods:
- type: object
- description: available interpolations methods for this coverage
- properties:
- string:
- type: array
- items:
- type: string
- description: name of the interpolation method
- example: {
- "coverage": {
- "abstract": "Digital elevation model for the Spearfish region.\r\n\r\nsfdem is a Tagged Image File Format with Geographic information",
- "defaultInterpolationMethod": "nearest neighbor",
- "description": "Generated from sfdem",
- "dimensions": {
- "coverageDimension": [
- {
- "description": "GridSampleDimension[-9.999999933815813E36,-9.999999933815813E36]",
- "name": "GRAY_INDEX",
- "range": {
- "max": -9.999999933815813e+36,
- "min": -9.999999933815813e+36
- }
- }
- ]
- },
- "enabled": true,
- "grid": {
- "@dimension": "2",
- "crs": "EPSG:26713",
- "range": {
- "high": "634 477",
- "low": "0 0"
- },
- "transform": {
- "scaleX": 30,
- "scaleY": -30,
- "shearX": 0,
- "shearY": 0,
- "translateX": 589995,
- "translateY": 4927995
- }
- },
- "interpolationMethods": {
- "string": [
- "nearest neighbor",
- "bilinear",
- "bicubic"
- ]
- },
- "keywords": {
- "string": [
- "WCS",
- "sfdem",
- "sfdem",
- "type\\@language=fr\\;\\@vocabulary=test\\;"
- ]
- },
- "latLonBoundingBox": {
- "crs": "EPSG:4326",
- "maxx": -103.62940739432703,
- "maxy": 44.5016011535299,
- "minx": -103.87108701853181,
- "miny": 44.370187074132616
- },
- "metadata": {
- "entry": [
- {
- "@key": "elevation",
- "dimensionInfo": {
- "enabled": false
- }
- },
- {
- "$": "10",
- "@key": "cacheAgeMax"
- },
- {
- "@key": "time",
- "dimensionInfo": {
- "defaultValue": "",
- "enabled": false
- }
- },
- {
- "$": "true",
- "@key": "cachingEnabled"
- },
- {
- "$": "sfdem_sfdem",
- "@key": "dirName"
- }
- ]
- },
- "name": "sfdem",
- "namespace": {
- "href": "http://localhost:8075/geoserver/restng/namespaces/sf.json",
- "name": "sf"
- },
- "nativeBoundingBox": {
- "crs": {
- "$": "EPSG:26713",
- "@class": "projected"
- },
- "maxx": 609000,
- "maxy": 4928010,
- "minx": 589980,
- "miny": 4913700
- },
- "nativeCRS": {
- "$": "PROJCS[\"NAD27 / UTM zone 13N\", \n GEOGCS[\"NAD27\", \n DATUM[\"North American Datum 1927\", \n SPHEROID[\"Clarke 1866\", 6378206.4, 294.9786982138982, AUTHORITY[\"EPSG\",\"7008\"]], \n TOWGS84[2.478, 149.752, 197.726, 0.526, -0.498, 0.501, 0.685], \n AUTHORITY[\"EPSG\",\"6267\"]], \n PRIMEM[\"Greenwich\", 0.0, AUTHORITY[\"EPSG\",\"8901\"]], \n UNIT[\"degree\", 0.017453292519943295], \n AXIS[\"Geodetic longitude\", EAST], \n AXIS[\"Geodetic latitude\", NORTH], \n AUTHORITY[\"EPSG\",\"4267\"]], \n PROJECTION[\"Transverse_Mercator\", AUTHORITY[\"EPSG\",\"9807\"]], \n PARAMETER[\"central_meridian\", -105.0], \n PARAMETER[\"latitude_of_origin\", 0.0], \n PARAMETER[\"scale_factor\", 0.9996], \n PARAMETER[\"false_easting\", 500000.0], \n PARAMETER[\"false_northing\", 0.0], \n UNIT[\"m\", 1.0], \n AXIS[\"Easting\", EAST], \n AXIS[\"Northing\", NORTH], \n AUTHORITY[\"EPSG\",\"26713\"]]",
- "@class": "projected"
- },
- "nativeFormat": "GeoTIFF",
- "nativeName": "sfdem",
- "requestSRS": {
- "string": [
- "EPSG:26713"
- ]
- },
- "responseSRS": {
- "string": [
- "EPSG:26713"
- ]
- },
- "srs": "EPSG:26713",
- "store": {
- "@class": "coverageStore",
- "href": "http://localhost:8075/geoserver/restng/workspaces/sf/coveragestores/sfdem.json",
- "name": "sf:sfdem"
- },
- "supportedFormats": {
- "string": [
- "ARCGRID",
- "IMAGEMOSAIC",
- "GTOPO30",
- "GEOTIFF",
- "GIF",
- "PNG",
- "JPEG",
- "TIFF"
- ]
- },
- "title": "Spearfish elevation"
- }
- }
-
- MetadataEntry:
- type: object
- title: entry
- properties:
- '@key':
- title: key
- type: string
- enum:
- - regionateStrategy
- - regionateFeatureLimit
- - cacheAgeMax
- - cachingEnabled
- - regionateAttribute
- - indexingEnabled
- - dirName
- description: Key used for metadata entry, additional keys are added over time
- '$':
- title: text
- type: string
- description: Text value for provided key Valid text depends on key used. Example {'@key'='cachingEnabled','$'='true'}.
|