Get the Definition of a Virtual Mosaic

get

{server}/georaster/v1/{datasource}/vm/{virtualMosaicName}

Get the definition of a virtual mosaic by specifying the virtual mosaic name.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Return the information of the requested virtual mosaic
Body ()
Root Schema : VMObjectResponse
Type: object
Show Source
Nested Schema : sdo_number_array
Type: array
Show Source
Nested Schema : sdo_geometry
Type: object
Show Source
Nested Schema : schema
Type: object
virtual mosaic related parameters. pyramidlevel, bandNumber, cropArea not included here as it will be specified at the request.
Show Source
Nested Schema : colorBalance
Type: object
Show Source
Nested Schema : outResolutions
Type: object
Show Source
Nested Schema : sourceImages
Type: object
Show Source
Nested Schema : reference
Match One Schema
Show Source
Nested Schema : sdo_georaster
Type: object
Show Source
Nested Schema : type
Type: object
Show Source
Nested Schema : sdo_geor_histogram
Type: object
Show Source
Nested Schema : columnNames
Type: array
Show Source
Nested Schema : conditions
Type: array
Show Source
Nested Schema : tableNames
Type: array
Show Source

401 Response

Authentication information is missing or invalid
Headers
Back to Top

Examples

The following is an example on how to request the definition of a mosaic with name "landsatMosaic" by submitting a GET request using cURL.

curl -X GET "https://localhost:8080/oraclespatial/georaster/v1/datasource1/vm/landsatMosaic" -H "Cookie: JSESSIONID=<jsessionid_value>"

The following shows an example of the response JSON format for the above request.

{
     "name" : "landsatMosaic",
     "vmDefinition" : {
       "sourceImages" : {
         "tableNames" : [ "landsat" ],
         "columnNames" : [ "image" ],
         "conditions" : null
       },
       "outSRID" : 4326,
       "outResolutions" : [ 30.0, 30.0 ],
       "resolutionUnit" : "meter",
       "resamplingMethod" : "bilinear",
       "resamplingTolerance" : 0.2,
       "commonPointRule" : "high"
     },
     "pyramidMaxLevel" : 7,
     "maxNumberOfBand" : 3,
     "cellDepth" : "8BIT_U",
     "dimensionSize" : [ 111498, 186723 ],
     "spatialExtent" : {
       "srid" : 4326,
       "polygon" : {
         "boundary" : [ {
           "rectangle" : {
             "datapoints" : [ [ -130.10368, 22.6478 ], [ -64.168344, 52.7826807 ] ]
           }
         } ]
       }
     },
     "links" : [ {
       "rel" : "self",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/vm/landsatMosaic"
     }, {
       "rel" : "rasterImage",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/vm/landsatMosaic/rasterImage"
     }, {
       "rel" : "rasterData",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/vm/landsatMosaic/rasterData"
     }, {
       "rel" : "statistics",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/vm/landsatMosaic/statistics"
     }, {
       "rel" : "parent",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/vm"
     } ]
 } 
Back to Top