Last active
October 25, 2021 21:56
-
-
Save jdbcode/e0ea32149ad971864bb01b9d6fa86a55 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
// Get CMI image collection and process it for visualization. | |
var geosVisCol = ee.ImageCollection('NOAA/GOES/17/MCMIPF') | |
.filterDate('2020-09-05T15:00', '2020-09-06T02:00') | |
.map(processForVis); | |
// Set display parameters and render the animation. | |
var visParams = { | |
bands: ['CMI_C02', 'CMI_GREEN', 'CMI_C01'], | |
min: 0, | |
max: 0.8, | |
gamma: 0.8, | |
dimensions: 600, | |
framesPerSecond: 10, | |
region: ee.Geometry.BBox(-123.17, 36.56, -116.22, 40.03), | |
crs: 'EPSG:3857' | |
}; | |
print(ui.Thumbnail(geosVisCol, visParams)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment