[GIS] Visualizing shapefile of polygons in Google Earth Engine Explorer

google-earth-engine-explorershapefile

I've just imported a shapefile of polygons in Google Earth Engine Explorer using the website http://shpescape.com/

The problem is that the polygons do not appear when I want to make them visible in the Google map.

May you help me with this ?

Best Answer

Two things to try:

1) make sure that the correct geometry column is specified e.g.:

ee.FeatureCollection('fn:xxx', '<geometry_column_name>')

2) As others @Mapperz suggested, check that your projection matches what's expected. The Fusion table interface is a good tool for this, IMO, because you can plot the geometry that you expect and see if it shows up.

Related Question