Skip to content

Instantly share code, notes, and snippets.

View jdbcode's full-sized avatar

Justin Braaten jdbcode

View GitHub Profile
@jdbcode
jdbcode / intro_to_earth_engine_with_python_ndvi.ipynb
Last active April 23, 2024 18:28
Intro to Earth Engine with Python shown at EGU 2024. An example of calculating the difference NDVI for riparian and upland regions of a watershed. Operations are common GIS vector and raster tasks.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdbcode
jdbcode / g4g22_ndvi_time_series_viz.ipynb
Last active April 18, 2024 07:49
g4g22_ndvi_time_series_viz.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdbcode
jdbcode / about_ee_with_drought_et.ipynb
Created April 14, 2024 14:06
about_ee_with_drought_et.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdbcode
jdbcode / get-hex-colors.py
Last active April 11, 2024 20:09
Get a list of n hex colors for a given matplotlib palette
# Source: https://stackoverflow.com/a/33597599/5391200
from pylab import *
cmap = cm.get_cmap('seismic', 5) # matplotlib color palette name, n colors
for i in range(cmap.N):
rgb = cmap(i)[:3] # will return rgba, we take only first 3 so we get rgb
print(matplotlib.colors.rgb2hex(rgb))
cmap = cm.get_cmap('plasma', 101)
@jdbcode
jdbcode / ee_goes_16_eclipse_2024.ipynb
Last active April 8, 2024 23:22
ee_goes_16_eclipse_2024.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdbcode
jdbcode / earth-engine-data-converters.ipynb
Last active March 12, 2024 06:45
A Colab notebook on how to use Earth Engine data converters for visualizing and exploring data in Pandas, GeoPandas, and NumPy formats.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdbcode
jdbcode / ee_landtrendr_ftv_deck_viz.ipynb
Last active February 17, 2024 08:55
Earth Engine LandTrendr FTV image time series deck visualization
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdbcode
jdbcode / ee_cli_in_colab.md
Last active February 13, 2024 17:52
Earth Engine CLI in Colab
@jdbcode
jdbcode / ee_landtrendr_example.ipynb
Last active February 3, 2024 18:43
ee_landtrendr_example.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jdbcode
jdbcode / earth-engine-data-converters.ipynb
Last active December 18, 2023 16:48
Earth Engine Data Converters
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.