List Virtual Mosaics

get

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

List all the virtual mosaics.

Request

There are no request parameters for this operation.

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Return a list of virtual mosaics.
Body ()
Root Schema : VMListResponse
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested 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 : VMObject
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 : reference-oneOf[1]
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
Back to Top

Examples

The following is an example on how to list available virtual mosaics by submitting a GET request using cURL.

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

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

{
   "items" : [ {
     "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"
     } ]
   }, {
     "name" : "railway",
     "vmDefinition" : {
       "sourceImages" : {
         "tableNames" : [ "railway_1", "railway_2" ],
         "columnNames" : [ "raster", "raster" ]
       },
       "outSRID" : 3078,
       "outResolutions" : [ 0.03190937, 0.03205382 ],
       "resolutionUnit" : "degree",
       "commonPointRule" : "high",
       "nodata" : false,
       "fillgap" : true,
       "resFilter" : true,
       "bgValues" : [ 100.0, 100.0, 100.0 ]
     },
     "pyramidMaxLevel" : 15,
     "maxNumberOfBand" : 3,
     "cellDepth" : "8BIT_U",
     "dimensionSize" : [ 10367826, 1930012 ],
     "spatialExtent" : {
       "srid" : 3078,
       "polygon" : {
         "boundary" : [ {
           "rectangle" : {
             "datapoints" : [ [ 78717.2701, -910680.42 ], [ 140302.73, -578352.01 ] ]
           }
         } ]
       }
     },
     "links" : [ {
       "rel" : "self",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/vm/railway"
     }, {
       "rel" : "rasterImage",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/vm/railway/rasterImage"
     }, {
       "rel" : "rasterData",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/vm/railway/rasterData"
     }, {
       "rel" : "statistics",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/vm/railway/statistics"
     }, {
       "rel" : "parent",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/vm"
     } ]
   } ],
   "hasMore" : false,
   "totalResults" : 2,
   "links" : [ {
     "rel" : "canonical",
     "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/vm"
   }, {
     "rel" : "self",
     "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/vm"
   } ]
  }
Back to Top