length.ee.image.Image | R Documentation |
Get or set the length of an Earth Engine Image.
## S3 method for class 'ee.image.Image'
length(x)
x |
an EE Image Object. |
If a vector is shortened, extra values are discarded and when a vector is lengthened, it is padded out to its new length with ee$Image(0), with band name of zzz_rgee_NA_%02d.
A numeric value that indicate the number of bands in a ee$Image.
## Not run:
library(rgeeExtra)
library(rgee)
ee_Initialize() # Initialize the Google Earth Engine API connection
extra_Initialize() # Initialize the extended functionalities of rgeeExtra
ic <- ee$Image("COPERNICUS/S2_SR/20190310T105851_20190310T110327_T30TVK")
length(ic)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.