Skip to content

Instantly share code, notes, and snippets.

View jdbcode's full-sized avatar

Justin Braaten jdbcode

View GitHub Profile
@jdbcode
jdbcode / geemap_cartoee_global_age_old_young_ratio.ipynb
Last active November 21, 2020 17:16
geemap_cartoee_global_age_old_young_ratio.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdbcode
jdbcode / gee_rtma_wind_animation_fading_history_dynamic_feed.md
Last active March 30, 2021 08:17
Earth Engine NOAA/NWS RTMA wind path animation with fading history and dynamic data feed

Code Editor script

/**
 * @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
@jdbcode
jdbcode / gee_era5_wind_animation_fading_history_dynamic_feed.md
Created December 29, 2020 19:17
Earth Engine ERA-5 wind path animation with fading history and dynamic data feed

Code Editor script

/**
 * @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
@jdbcode
jdbcode / gee_goes_event_tracking_animation.md
Last active January 6, 2021 22:26
Earth Engine GOES event tracking animation.

Code Editor script

/**
 * @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
@jdbcode
jdbcode / palette_generator.ipynb
Created February 17, 2021 20:39
palette_generator.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdbcode
jdbcode / ee_filmstrip_gif.ipynb
Last active October 3, 2022 17:54
ee_filmstrip_gif.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdbcode
jdbcode / geemap_timestamp_gif.ipynb
Last active February 20, 2021 11:05
geemap_timestamp_gif.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdbcode
jdbcode / medium_demo_ic_series.js
Created March 4, 2021 16:52
[Medium] Embed code demo image collection series chart
// 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.
@jdbcode
jdbcode / ee_filmstrip_gif_precipitable_water.ipynb
Last active March 19, 2021 18:33
[EE Animation] GFS precipitable water 2021 atmospheric river
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdbcode
jdbcode / medium_chart_doc_update_ex_01.js
Created March 18, 2021 19:39
[Medium] Code example 01 for the Medium blog on Earth Engine charting guide update
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));