At submit an issue, please attached the following information of your rgee session:
[x] You have the Python API installed (from terminal):
earthengine -h
- [x] You can find the credentials file on your system:
```r
library(rgee)
ee_path <- path.expand("~/.config/earthengine/credentials")
file.exists(ee_path)
[x] You can run a simple EE command from R:
library(rgee)
# Initialize the Earth Engine module.
ee_Initialize()
# Print metadata for a DEM dataset.
print(ee$Image('USGS/SRTMGL1_003')$getInfo())
On trying print and return metadata about Spatial Earth Engine Objects using ee_print and passing an EarthEngine Object: Image as an argument to the function. I get an error. This error is only caused by certain image collections or rather earth engine objects from these collections, from what I have seen in my code, the error is caused by "MODIS/061/MOD11A1", "MODIS/061/MYD13Q1" but not by "UCSB-CHG/CHIRPS/DAILY".
spatialreference.org is down using web.archive.org ...
Error in file(con, "r") :
cannot open the connection to 'https://web.archive.org/web/https://spatialreference.org/ref/sr-org/6974/ogcwkt/'
The issue is that web archive has stopped supporting spatial reference. The new data can be found on this link instead.
At submit an issue, please attached the following information of your
rgee
session:Attach your Python (reticulate) configuration:
Description
On trying print and return metadata about Spatial Earth Engine Objects using
ee_print
and passing anEarthEngine Object: Image
as an argument to the function. I get an error. This error is only caused by certain image collections or rather earth engine objects from these collections, from what I have seen in my code, the error is caused by "MODIS/061/MOD11A1", "MODIS/061/MYD13Q1" but not by "UCSB-CHG/CHIRPS/DAILY".What I Did
Minimal example to recreate the error
On running this code snippet, I get this error -
The issue is that web archive has stopped supporting spatial reference. The new data can be found on this link instead.