This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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()); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.