List GeoRaster Objects

get

{server}/georaster/v1/{datasource}/{tableName}/{georasterColumnName}

Query the given GeoRaster table to get a list of GeoRaster Objects.

Request

Path Parameters
Query Parameters
  • Limit the items included in the response, use in conjuntion with offset parameter.
    Examples

  • The amount of items from the beggining of the collection not to be included in the response.
    Examples

  • Query parameter in JSON format, see "Filtering in Queries" in ORDS documentation.
    Example: {"id":1}
    Example: {"AND":[{"state":"CA"},{"date":"10/02/2020"}]}
    Examples

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Return a list of GeoRaster Objects
Body ()
Root Schema : georasterObjectListResponse
Type: object
A list of GeoRaster Objects returned
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : georasterObjectResponse
Type: object
The json response of the information of the GeoRaster Object
Show Source
Nested Schema : sdogeormetadata
Type: object
GeoRaster Object metadata
Show Source
Nested Schema : spatialExent
Match All
Show Source
Nested Schema : rasterBandReferenceSystemType
Type: object
Show Source
Nested Schema : layerInfo
Type: array
Minimum Length: 1
Show Source
Nested Schema : objectDescriptionType
Type: object
Show Source
Nested Schema : rasterDescriptionType
Type: object
Show Source
Nested Schema : rasterSpatialReferenceSystemType
Type: object
Show Source
Nested Schema : rasterTemporalReferenceSystemType
Type: object
Show Source
Nested Schema : bandReference
Type: array
Show Source
Nested Schema : spatialResolution
Type: object
Show Source
Nested Schema : extentType
Type: object
Show Source
Nested Schema : segmentationDataType
Type: object
Show Source
Nested Schema : layerDescriptionType
Type: object
Show Source
Nested Schema : layerType
Type: object
Show Source
Nested Schema : subLayer
Type: array
Minimum Length: 0
Show Source
Nested Schema : binFunctionType
Type: object
Show Source
Nested Schema : colorMapType
Type: object
Show Source
Nested Schema : grayScaleType
Type: object
Show Source
Nested Schema : NODATAType
Type: object
Show Source
Nested Schema : scalingFunctionType
Type: object
Show Source
Nested Schema : statisticDatasetType
Type: object
Show Source
Nested Schema : binDefinition
Match One Schema
Show Source
Nested Schema : colors
Match One Schema
Show Source
Nested Schema : colors-oneOf[0]
Type: array
Minimum Length: 1
Show Source
Nested Schema : cellPseudoColorType
Type: object
Show Source
Nested Schema : grays
Match One Schema
Show Source
Nested Schema : grays-oneOf[0]
Type: array
Minimum Length: 1
Show Source
Nested Schema : cellGrayType
Type: object
Show Source
Nested Schema : ranges
Type: array
Show Source
Nested Schema : values
Type: array
Show Source
Nested Schema : histogramType
Type: object
Show Source
Nested Schema : rectangularWindowType
Type: object
Show Source
Nested Schema : counts
Match One Schema
Show Source
Nested Schema : counts-oneOf[0]
Type: array
Minimum Length: 1
Show Source
Nested Schema : cellCountType
Type: object
Show Source
Nested Schema : cellCoordinateType
Type: object
Show Source
Nested Schema : blockingDescriptionType
Type: object
Show Source
Nested Schema : cellDimensionSizeType
Type: object
Show Source
Nested Schema : pyramidDescriptionType
Type: object
Show Source
Nested Schema : maxLevel
Default Value: 0
Match All
Show Source
  • Minimum Value: 0
    Minimum Value: > false
Nested Schema : GCPGeoreferenceType
Type: object
Show Source
Nested Schema : rationalPolynomialType
Type: object
Show Source
Nested Schema : gcp
Type: array
Minimum Length: 0
Show Source
Nested Schema : GCPType
Type: object
Show Source
Nested Schema : polynomialType
Type: object
Show Source
Nested Schema : polynomialCoefficients
Type: array
Show Source
Examples

401 Response

Authentication information is missing or invalid
Headers
Back to Top

Examples

The following is an example on how to list the GeoRaster Objects from data source datasource1 table image_table and column image by submitting a GET request using cURL.

curl -X GET "https://localhost:8080/oraclespatial/georaster/v1/datasource1/image_table/image?limit=2&offset=0" -H "Cookie: JSESSIONID=<jsessionid_value>"

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

{
   "items" : [ {
     "rasterType" : 21001,
     "spatialExtent" : null,
     "rasterDataTable" : "IMAGE_TABLE_RDT1",
     "rasterID" : 1,
     "links" : [ {
       "rel" : "self",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/image_table/image/image_table_rdt1/1"
     }, {
       "rel" : "metadata",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/image_table/image/image_table_rdt1/1/metadata"
     } ]
   }, {
     "rasterType" : 21001,
     "spatialExtent" : null,
     "rasterDataTable" : "IMAGE_TABLE_RDT1",
     "rasterID" : 2,
     "links" : [ {
       "rel" : "self",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/image_table/image/image_table_rdt1/2"
     }, {
       "rel" : "metadata",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/image_table/image/image_table_rdt1/2/metadata"
     } ]
   },
   "hasMore" : true,
   "totalResults" : 16,
   "links" : [ {
     "rel" : "canonical",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/image_table/image"
   }, {
     "rel" : "self",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/image_table/image?limit=2&offset=0"
   }, {
     "rel" : "next",
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/image_table/image?limit=2&offset=2"
   } ]
  } 
Back to Top