Follow along here: https://github.com/MaptimeNYC/working-with-satellite-data
“Landsat 9 [will] propel the program past 50 years of collecting global land cover data,” said Jeffrey Masek... “That’s the hallmark of Landsat: the longer the satellites view the Earth, the more phenomena you can observe and understand.”
Use this Google data catalog to browse available datasets
In EE code editor, add the dataset to the map document:
/* 1. Add satellite data to map */
Map.addLayer(
// add collection of raw Landsat8 data
ee.ImageCollection('LANDSAT/LC8_L1T')
);
(below previous code in EE code editor)
/* 2. Center map on Indian Point (longitude, latitude, zoom) */
Map.setCenter(-73.954661, 41.269739, 15);
/* Filter by a vector(!!!) geometry */
var indianPoint = ee.Geometry.Point(-73.954661, 41.269739);
var filteredCollection = ee.ImageCollection('LANDSAT/LC8_L1T')
.filterBounds(indianPoint);
Map.addLayer(filteredCollection);
/* Filter by a vector(!!!) geometry */
var indianPoint = ee.Geometry.Point(-73.954661, 41.269739);
var filteredCollection = ee.ImageCollection('LANDSAT/LC8_L1T')
.filterBounds(indianPoint)
.filterDate('1990-01-01', '1990-05-31');
Map.addLayer(filteredCollection);
By combining different bands of Landsat data, you can visualize the otherwise non-visible data
See here for examples of band combinations
/* Add band visualizing 5-4-3 (infrared) */
Map.addLayer(
ee.ImageCollection('LANDSAT/LC8_L1T'),
{'min': 6000, 'max': 18000, 'bands': ['B5', 'B4', 'B3']});