/**
* @license
* Copyright 2020 Google LLC.
* SPDX-License-Identifier: Apache-2.0
*
* Generates wind trajectory maps and animations from NOAA/NWS
* Real-Time Mesoscale Analysis wind dataset. A set of random points are drawn
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
/**
* @license
* Copyright 2020 Google LLC.
* SPDX-License-Identifier: Apache-2.0
*
* Generates wind trajectory maps and animations from ECMWF ERA-5 hourly wind
* data. A set of random points are drawn within an area of interest; a path is
/**
* @license
* Copyright 2020 Google LLC.
* SPDX-License-Identifier: Apache-2.0
*
* Makes a GOES MCMIPC animation that tracks an event. Set a region of interest
* and two points that define the path to track along the duration of the
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
// Import the example feature collection and subset the forest feature. | |
var forest = ee.FeatureCollection('projects/google/charts_feature_example') | |
.filter(ee.Filter.eq('label', 'Forest')); | |
// Load MODIS vegetation indices data and subset a decade of images. | |
var vegIndices = ee.ImageCollection('MODIS/006/MOD13A1') | |
.filter(ee.Filter.date('2010-01-01', '2020-01-01')) | |
.select(['NDVI', 'EVI']); | |
// Define the chart and print it to the console. |
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 what = ee.ImageCollection('MODIS/006/MOD13A2').select('NDVI'); | |
var where = ee.Geometry.Point([-93.51, 35.76]); | |
print(ui.Chart.image.series(what, where)); |