geo_tiff
Creates, updates, deletes, gets or lists a geo_tiff
resource.
Overview
Name | geo_tiff |
Type | Resource |
Id | google.solar.geo_tiff |
Fields
The following fields are returned by SELECT
queries:
- get
Successful response
Name | Datatype | Description |
---|---|---|
contentType | string | The HTTP Content-Type header value specifying the content type of the body. |
data | string (byte) | The HTTP request/response body as raw binary. |
extensions | array | Application specific response metadata. Must be set in the first response for streaming APIs. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | id | Returns an image by its ID. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
id | string |
SELECT
examples
- get
Returns an image by its ID.
SELECT
contentType,
data,
extensions
FROM google.solar.geo_tiff
WHERE id = '{{ id }}';