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
// Change display bands to false color. | |
visParams.bands = ['CMI_C05', 'CMI_C03', 'CMI_GREEN']; | |
print(ui.Thumbnail(geosVisCol, visParams)); |
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 the fire/hotspot characterization dataset. | |
var fdcCol = ee.ImageCollection('NOAA/GOES/17/FDCF') | |
.filterDate('2020-09-05T15:00', '2020-09-06T02:00'); | |
// Identify fire-detected pixels of medium to high confidence. | |
var fireMaskCodes = [10, 30, 11, 31, 12, 32, 13, 33, 14, 34, 15, 35]; | |
var confVals = [1.0, 1.0, 0.9, 0.9, 0.8, 0.8, 0.5, 0.5, 0.3, 0.3, 0.1, 0.1]; | |
var defaultConfVal = 0; | |
var fdcVisCol = fdcCol.map(function(img) { | |
var confImg = img.remap(fireMaskCodes, confVals, defaultConfVal, 'Mask'); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
var styleRules = { | |
pointSize: 15, | |
pointFillColor: { | |
property: 'fuel1', | |
categories: [ | |
['Coal', '#CD3290'], | |
['Gas', '#3290CD'], | |
['Nuclear', '#90CD32'], | |
] | |
}, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.