Retrieves a DataObject.
Optionalbbox?: BboxSpecifies the Bbox. If omitted, it behaves as if [-180, -90, 180, 90] was specified.
Optionalwidth?: numberSpecifies the image width [px]. If omitted, it behaves as if 1000 was specified.
Optionalheight?: numberSpecifies the image height [px]. If omitted, it behaves as if 500 was specified.
Optionalresampling?: ResamplingSpecifies the resampling method. If omitted, it behaves as if je.Resampling.NEAREST was specified and processing is done with nearest neighbor.
Optionalonloading?: (progress: number, dataObject: DataObject) => voidA callback function that is executed each time a file is loaded. The callback function receives, as arguments, progress (a progress rate from 0 to 100) and the DataObject at each point in time.
If Image#getDataObject has already been executed, retrieves the DataObject again. It does not communicate again and returns the cache.
The DataObject retrieved by the previous execution of Image#getDataObject
Returns the collectionUrl of this Image.
Returns the date of this Image.
Returns the date of this Image as a string representation that takes into account the time interval of the dataset.
Returns the band name of this Image.
Image can be obtained from ImageCollection by specifying a date and a band name. It cannot be created directly from the constructor.
By specifying the latitude-longitude range, the image size, and the resampling method to Image#getDataObject, you can retrieve a DataObject.
Example