Created
April 23, 2022 06:20
-
-
Save PratyushTripathy/8f6ebaf011680925f20653b013ba222a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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