rgee is a Google Earth Engine bindings package for R. Use with the 'r' and 'google-earth-engine' tags.
Questions tagged [rgee]
37 questions
0
votes
1 answer
What is the equivalent ee.Image.not() in Rgee
I try to replicate this gee line
directions=directions.addBands(directions.select(0).not().multiply(5));
in rgee as
directions<-directions$addBands(directions$select(0)$not()$multiply(5))
I get the error AttributeError: 'Image' object has no…

Victor Korir
- 11
- 2
0
votes
1 answer
Trouble setting up Google Earth Engine API in RGEE package R. normalizePath cannot find python.exe
Hi Im new to stackoverflow, so apologies in advance if this is a basic question or if information on the problem is insufficient.
The Problem:
I am trying to setup the RGEE package in R. I have installed rgee and reticulate packages with…

psydrax
- 1
- 1
0
votes
1 answer
Reset and change Google Drive credentials
I'd like to change Google Drive credentials after ee_Initialize(drive = TRUE). I install again rgee and ee_install() but not new credential in Tidyverse API Packages was demand.
Please, any help to fix it?

Leprechault
- 1,531
- 12
- 28
0
votes
1 answer
Image stats in Google Earth Engine and rgee package in R?
I'm trying to calculate the mean of all pixels at the county level for an image in Google Earth Engine and am using the rgee package in R Studio.
I've tried following the example here:…

Steph
- 33
- 1
- 5
0
votes
1 answer
adding properties to each feature of Feature Collection in rgee
I want to add a property to each element of a Feature Collection using rgee. This feature collection I have is just a list of polygons, and I want to add an ID (which is different) for each of these geometries. So far, I…

dsbm89
- 3
- 1
0
votes
1 answer
Create time series of JRC MonthlyHistory surface water observations by region with R + rgee
I'm completely stumped, I'm trying to create a regional time series of JRC MonthlyHistory surface water count observations (by region) using R + rgee. I'm able to download the total observations of the band, but i am unable to filter by specific…

Matthew J Watts
- 69
- 7
0
votes
2 answers
raster does not align with shapefile after processing with rgee
I defined a polygon:
library(rgee)
ee_Initialize()
polygon <- ee$Geometry$Polygon(
list(
c(91.17, -13.42),
c(154.10, -13.42),
c(154.10, 21.27),
c(91.17, 21.27),
c(91.17, -13.42)
))
Map$addLayer(polygon)
The polygon…

89_Simple
- 3,393
- 3
- 39
- 94