Skip to content

Instantly share code, notes, and snippets.

View tylere's full-sized avatar

Tyler Erickson tylere

View GitHub Profile
import ee
ee.Initialize()
geom = ee.Geometry.Polygon(
[[[-112.115478515625, 39.60899451189312],
[-112.1044921875, 38.81737493267723],
[-111.126708984375, 38.7659965678143],
[-111.038818359375, 39.59206441884747]]])
# Define years of interest
@tylere
tylere / execute_notebook_files.ipynb
Created May 22, 2017 18:32
Jupyter notebook for executing a series of notebooks and exporting them.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tylere
tylere / example-getthumburl-scale-parameter.ipynb
Created November 14, 2020 19:15
Example getThumbURL scale parameter.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tylere
tylere / country_hillshade.js
Last active December 30, 2020 22:51
Hillshade visualization of country borders.
// Copyright 2020 Google LLC.
// SPDX-License-Identifier: Apache-2.0
// Hillshade visualization of country borders.
// Code Editor: https://code.earthengine.google.com/7f5d68875d0e2d1d106685a1af2c5d4a
var fc = ee.FeatureCollection("USDOS/LSIB_SIMPLE/2017");
var edgeSize = 3e4;
var land = ee.Image(0).byte().paint(fc, edgeSize);
var distance = fc.distance(edgeSize, 1);
var edge = land.and(distance.mask());
@tylere
tylere / print-list-example.ipynb
Created September 8, 2021 23:06
print list example.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tylere
tylere / print-list-example.ipynb
Created September 8, 2021 23:07
print list example.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tylere
tylere / satellite-platform-acquisition-time-comparison.ipynb
Created September 10, 2021 17:19
Satellite platform acquisition time comparison.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tylere
tylere / accordian-widget-test.ipynb
Created January 26, 2022 18:46
Accordian widget test.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tylere
tylere / sloped-area-analysis.ipynb
Last active July 8, 2023 00:49
sloped-area-analysis.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.