/**
* @license
* Copyright 2020 Google LLC.
* SPDX-License-Identifier: Apache-2.0
*
* Generates wind trajectory maps and animations from ECMWF ERA-5 hourly wind
* data. A set of random points are drawn within an area of interest; a path is
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
| # packages | |
| pacman::p_load('ps', "rgee", "tidyverse", "sf", "ggplot2", "patchwork", | |
| 'reticulate') | |
| ee_Initialize(email = '...@gmail.com') | |
| # Hansen Global Forest Change | |
| forestloss <- ee$Image("UMD/hansen/global_forest_change_2019_v1_7") | |
| flossyear <- forestloss$select('lossyear') |
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
| # packages | |
| pacman::p_load('ps', "rgee", "tidyverse", "sf", "ggplot2", "patchwork", | |
| 'reticulate', 'googledrive', 'stars', 'plotKML', 'readxl', | |
| 'networkD3', 'OpenLand', 'ggtern') | |
| ee_Initialize(email = 'pauloeducardoso@gmail.com') | |
| # CORINE | |
| clc18 = ee$Image('COPERNICUS/CORINE/V20/100m/2018')$select('landcover'); | |
| clc12 = ee$Image('COPERNICUS/CORINE/V20/100m/2012')$select('landcover'); |
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
| library(tidyverse) | |
| library(sf) | |
| library(terra) | |
| library(stars) | |
| library(ggspatial) | |
| library(systemfonts) | |
| library(patchwork) | |
| register_variant( | |
| name = "Input Mono Light", |
OlderNewer