Resource: EarthEngineAsset
Information about an Earth Engine asset.
JSON representation | |
---|---|
{ "type": enum ( |
Fields | ||
---|---|---|
type |
The type of the asset. |
|
name |
The name of the asset. |
|
id |
The ID of the asset. Equivalent to |
|
updateTime |
The last-modified time of the asset. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
|
title |
The title of the asset. |
|
description |
The description of the asset. |
|
properties |
Key/value properties associated with the asset. |
|
startTime |
The timestamp associated with the asset, if any, e.g. the time at which a satellite image was taken. For assets that correspond to an interval of time, such as average values over a month or year, this timestamp corresponds to the start of that interval. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
|
endTime |
For assets that correspond to an interval of time, such as average values over a month or year, this timestamp corresponds to the end of that interval (exclusive). A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
|
geometry |
The spatial footprint associated with the asset, if any, as a GeoJSON geometry object (see RFC 7946). |
|
bands[] |
Information about the data bands of the image asset. Omitted for non-image assets. |
|
sizeBytes |
The size of a leaf asset (e.g. an image) in bytes. |
|
quota |
The quota information associated with the folder asset, if any. Returned for top-level user-owned folder assets (e.g. "users/*" or "projects/*"). |
|
Union field location . Information about where and how the raster tiles are stored. location can be only one of the following: |
||
cloudStorageLocation |
The location of this asset on Cloud Storage. |
|
gcsLocation |
The location of this asset on Cloud Storage. |
CloudStorageLocation
The location of an asset on Cloud Storage.
JSON representation | |
---|---|
{ "uris": [ string ] } |
Fields | |
---|---|
uris[] |
The URIs of the data. Only Google Cloud Storage URIs are supported. Each URI must be specified in the following format: "gs://bucket-id/object-id". Only one URI is currently supported. If more than one URI is specified an |
GcsLocation
The location of an asset on Cloud Storage.
JSON representation | |
---|---|
{ "uris": [ string ] } |
Fields | |
---|---|
uris[] |
The URIs of the data. Only Google Cloud Storage URIs are supported. Each URI must be specified in the following format: "gs://bucket-id/object-id". Only one URI is currently supported. If more than one URI is specified an |
Type
Types of asset.
Enums | |
---|---|
TYPE_UNSPECIFIED |
Unspecified. |
IMAGE |
Image. |
IMAGE_COLLECTION |
Image collection. |
TABLE |
Table. |
FOLDER |
Folder. |
ImageBand
Information about a single data band of an image asset.
JSON representation | |
---|---|
{ "id": string, "dataType": { object ( |
Fields | |
---|---|
id |
The ID of the band. |
dataType |
The numeric type of the band. |
grid |
The pixel grid of the band. |
pyramidingPolicy |
The pyramiding policy of the band. |
missingData |
The value(s) denoting missing data. |
PixelDataType
Specifies the numeric type of the pixels in an image band.
JSON representation | |
---|---|
{ "precision": enum ( |
Fields | |
---|---|
precision |
The numeric precision of the type. |
range |
The range of the numeric type, if any. Typically absent for floating-point types. |
dimensionsCount |
The number of dimensions in an array-valued data type, or zero to indicate an ordinary scalar type. |
Precision
Specifies the precision of a numeric data type.
Enums | |
---|---|
PRECISION_UNSPECIFIED |
Unspecified. |
INT |
The data type has integer precision. Note that this could represent differently sized integers. |
FLOAT |
The data type has 32-bit floating point precision. |
DOUBLE |
The data type has 64-bit floating point (double) precision. |
PyramidingPolicy
The algorithm to be used when creating reduced-resolution versions of an image band. By default, the mask is computed as the MEAN of the input masks, reflecting the total weight of the input data over which the requested output statistic was calculated. In the case of SAMPLE, the sampled pixel's mask is used directly.
Enums | |
---|---|
PYRAMIDING_POLICY_UNSPECIFIED |
Not specified. |
MEAN |
Output pixel is the mask-weighted mean of the input pixels. Should be used for direct observation results and continuous quantities like temperature. |
SAMPLE |
Output pixel is identical to the upper-left input pixel. Should be used for QA/bitmask bands or other non-continuous fields like date of pixel acquisition. |
MIN |
Output pixel is the minimum value of the input pixels. |
MAX |
Output pixel is the maximum value of the input pixels. |
MODE |
Output pixel is the mask-weighted mode of the input pixels. Should be used for landcover bands. |
MissingData
A list of values which represent no data.
JSON representation | |
---|---|
{ "values": [ number ] } |
Fields | |
---|---|
values[] |
Values which represent no data. |
FolderQuota
Describes the current usage and limits of a top-level folder.
JSON representation | |
---|---|
{ "sizeBytes": string, "maxSizeBytes": string, "assetCount": string, "maxAssets": string, "maxAssetCount": string } |
Fields | |
---|---|
sizeBytes |
The size of the folder in bytes. |
maxSizeBytes |
The maximum size of the folder in bytes. |
assetCount |
The number of assets stored in the folder. |
maxAssets |
The maximum number of assets that can be stored in the folder. |
maxAssetCount |
The maximum number of assets that can be stored in the folder. |
Methods |
|
---|---|
|
Copies an asset. |
|
Creates an asset. |
|
Deletes an asset. |
|
Gets detailed information about an asset. |
|
Gets the access control policy for a resource. |
|
Fetches pixels from an image asset. |
|
Lists any container asset, such as a folder or collection. |
|
Lists the features in a table asset. |
|
Lists the images in an image collection asset. |
|
Moves an asset. |
|
Updates an asset. |
|
Sets the access control policy on the specified resource. |
|
Returns permissions that a caller has on the specified resource. |