Skip to content

Instantly share code, notes, and snippets.

View KMarkert's full-sized avatar
👨‍💻

Kel Markert KMarkert

👨‍💻
View GitHub Profile
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.
@KMarkert
KMarkert / g4g23_python_climate_example.ipynb
Last active October 10, 2023 14:15
g4g23_python_climate_example.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@KMarkert
KMarkert / nwm_bq_flood_analysis.ipynb
Last active May 17, 2023 11:44
Example notebook on how to execute BigQuery jobs through a notebook for analyzing the National Water Model data
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{
"description": "Orthorectified Surface reflectance (0-1 unitless, scaled by 10,000) \ncomputed from the NEON Imaging Spectrometer (NIS) per pixel; data \nare orthorectified and output onto a fixed, uniform spatial grid \nusing nearest-neighbor resampling (tbr). Level 1 flight lines over \na given site are mosaicked into 1 km by 1 km tiles with a spatial \nresolution of 1m.\nData are is a calibrated and atmospherically corrected product \ndistributed as scaled reflectance. It includes QA and ancillary \nrasters used as inputs to ATCOR for atmospheric correction as well \nas outputs from ATCOR for diagnostic purposes. L3 reflectance is \ndistributed in 1 km by 1 km tiles with one HDF5 file per tile \nincluding the reflectance data and all metadata and ancillary data. \nThe mosaic is created using the most-nadir pixels from the flight \nlines observed with the least cloud cover. \nCitation\nPlease use the appropriate citation(s) in your publications. \nSee Data Policies & Citation Guidelines for more info.\
@KMarkert
KMarkert / g4g-2022-rest-api-demo.ipynb
Last active July 10, 2023 08:41
g4g-2022-rest-api-demo.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@KMarkert
KMarkert / g4g-2022-rest-api-demo-serviceaccount.ipynb
Last active September 21, 2022 11:36
g4g-2022-rest-api-demo.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@KMarkert
KMarkert / julia_colab_notebook_earthengine.ipynb
Last active November 18, 2021 22:07
Julia_EarthEngine_GeoforGood21_Demo.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
using EarthEngine
Initialize()
# base ndvi function to do the calculation
function ndvi(n::EE.AbstractEEObject, r::EE.AbstractEEObject)
return (n - r) / (n + r)
end
# ndvi function for image, will extract out the correct bands
@KMarkert
KMarkert / julia_colab_notebook_earthengine.ipynb
Last active November 18, 2021 21:52
Julia_EarthEngine_GeoforGood21_Demo.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.