Skip to content

Instantly share code, notes, and snippets.

View jdbcode's full-sized avatar

Justin Braaten jdbcode

View GitHub Profile
@jdbcode
jdbcode / o-c-lands-from-the-perspective-of-sentinel-2.ipynb
Last active November 10, 2020 18:28
O&C Lands from the perspective of Sentinel-2
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdbcode
jdbcode / pydeck_earthengine_layers_landsat_olym.ipynb
Last active November 11, 2020 14:34
Earth Engine visualization with pydeck / deck.gl
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdbcode
jdbcode / geemap_cartoee_global_cropland_robinson_proj.ipynb
Last active November 20, 2020 20:49
geemap_cartoee_global_cropland_robinson_proj.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_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 / landsatlinkr-asset-manager.ipynb
Created October 1, 2020 16:07
LandsatLinkr Asset Manager
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@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 / 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.