• Installation • Hello World • How does rgee work? • Guides • Contributing • Citation • Credits
## What is Google Earth Engine? [Google Earth Engine](https://earthengine.google.com/) is a cloud-based platform that enables users to access a petabyte-scale archive of remote sensing data and conduct geospatial analysis on Google's infrastructure. Currently, Google offers support only for Python and JavaScript. `rgee` fills that gap **by providing support for R!**. Below, you will find a comparison between the syntax of `rgee` and the two other client libraries supported by Google.| JS (Code Editor) | Python | R |
|---|---|---|
| ``` javascript var db = 'CGIAR/SRTM90_V4' var image = ee.Image(db) print(image.bandNames()) #> 'elevation' ``` | ``` python import ee ee.Initialize(project = "my-project-id") db = 'CGIAR/SRTM90_V4' image = ee.Image(db) image.bandNames().getInfo() #> [u'elevation'] ``` | ``` r library(rgee) ee_Initialize(project = "my-project-id") db <- 'CGIAR/SRTM90_V4' image <- ee$Image(db) image$bandNames()$getInfo() #> [1] "elevation" ``` |