Add Google Earth Engine data to Google Earth

google earthgoogle-earth-engine

I just found out about the Google Earth Engine Catalogue and there are a few datasets that I want to take a look at. Is there an easy way to display some of these datasets in my desktop version of Google Earth? I would prefer not to download all of the datasets and then import them into Google Earth.

Best Answer

In addition to exporting a GeoTiff and loading that in Earth Pro (as mentioned in a comment), for larger datasets you can export a map tile set from EE, and load it into the Earth web client using the new Tile Layer functionality.

But generally, it's probably better to preview Earth Engine (EE) datasets in the EE Code Editor. In fact, for most datasets in the EE Data Catalog, if you look at the bottom of the data page there is sample code that you can copy and paste into the code editor to preview the data, or just click the blue "Open in Code Editor" button.

Note that many of the datasets in EE are multispectral or other types of data, and are not natively RGB color images that can be directly viewed. So for most of them you need to process and add visualization parameters before they can be visualized on a map... that's what the sample code is for.

Related Question