KMarkert / EarthEngine.jl

Google Earth Engine in Julia
https://kmarkert.github.io/EarthEngine.jl/dev/
MIT License
49 stars 2 forks source link

Shapefiles to GEE #3

Open marianaeavila opened 1 year ago

marianaeavila commented 1 year ago

How can I import and display a local shapefile (.shp) into Google Earth Engine using EarthEngine.jl, is there a function for that?

alex-s-gardner commented 1 year ago

EarthEngine.jl is simply providing api access to the GEE data. In the examples shown in the ReadMe the plotting is being done locally. In this case you can simply use something Shapefile.jl to read in your shapefile then you'll have the data in memory and can plot overtop of data retrieved using EarthEngine.jl. I hope that helps.