Skip to content

Instantly share code, notes, and snippets.

@PratyushTripathy
Created April 23, 2022 06:20
Show Gist options
  • Save PratyushTripathy/8f6ebaf011680925f20653b013ba222a to your computer and use it in GitHub Desktop.
Save PratyushTripathy/8f6ebaf011680925f20653b013ba222a to your computer and use it in GitHub Desktop.
// pull landsat footprint and filter for your area of interest
var landsat_footprints = ee.FeatureCollection("users/pratyusht/public_assets/landsat_footprints")
.filter(ee.Filter.and(
ee.Filter.lte('path', 148), ee.Filter.gte('path', 140),
ee.Filter.lte('row', 46), ee.Filter.gte('row', 42)
))
Map.addLayer(landsat_footprints, {}, 'landsat_footprints')
Map.centerObject(landsat_footprints, 6)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment