Summary and Footnotes

In this chapter, we created the same map using two ways: by rendering a static image, and then by creating an interactive map. We used the Google Earth Engine API to get remotely sensed image data (particularly from the MODIS Terra satellite) on our region of interest so that we can analyse a feature of that region aggregated over a period of time (particularly average land surface temperature in 2021).

Footnotes

1.1. Where to get location coordinates

  • You can use Google Maps to quickly obtain the coordinates of a certain location (at least that’s what I usually do). Wherever you are on Google Maps, the geographic coordinates of the place at the centre of the screen appears on the address bar. You can copy these coordinates, but remember which one is latitude and which one is longitude. In Google Maps, the latitude value comes first.

1.2. Geometry.Point buffer

1.3. Information about the MODIS dataset

1.4. Data from Google Earth Engine can be images, collections, or features.

  • An image is any raster data (gridded/pixelated data where each pixel refers to a: geographic location)

  • A feature is data about the attributes of a certain area (e.g. vegetation)

  • A collection is set of images or features

1.5. How images are scaled in Google Earth Engine