Development Protocols and Processes for Accessing Data from the Bolivia Surface Water Balance using monthly measurements of temperature, precipitation, runoff, evapotranspiration (real and reference) between 1980 and 2020.
Application available at: https://carlosmendezsei.users.earthengine.app/view/hruwatersei
HTTPS
https://github.com/sei-latam/WEAP_WebAppRepWBGitHub CLI
gh repo clone sei-latam/WEAP_WebAppRepWBGit repositories on Google Earth Engine
https://earthengine.googlesource.com/users/carlosmendez/ExercicesSEI/+/refs/heads/master/Application_SEI_WaterRepository built in Google Earth Engine (GEE) and Google Colab.
Each part is described below:
- First folder (Files_and_data)
Contains the original files (txt, xlsx, shp, etc.) used in the development of the application.
- Second folder (Google_Git_versions)
Includes all versions, commits, scripts, codes, and interfaces developed in Google Earth Engine.
- Third folder (Tests_and_queries)
The WEAP_WebAppRepWB application includes dynamic temporal and spatial queries and filters, allowing users to display graphs, maps, tables, download files. Also, include the functionality to import Keyhole Markup Language (KML) files and perform additional queries.
var snazzy =require("users/aazuspan/snazzy:styles");
// https://github.com/aazuspan/snazzy
var MultiBrand = "https://snazzymaps.com/style/20053/multi-brand-network"require('users/gena/packages:palettes');
// https://github.com/gee-community/ee-palettes#gennadii-donchyts-fedor-baart--justin-braaten
var Temp_pal = ['#313695','#4575b4','#74add1','#abd9e9','#e0f3f8','#ffffbf','#fee090','#fdae61','#f46d43','#d73027'];//10
var Prcp_pal = ['#f7fbff', '#deebf7', '#c6dbef', '#9ecae1', '#6baed6', '#4292c6', '#2171b5', '#08519c', '#08306b', '#041836'];//10
var Runoff_pal = ['#D0F4FF','#A8E9FF','#7FDFFF','#56D4F0','#3CC9D9','#2ABFBF', '#1AB3A6', '#13998F', '#0F7F78', '#0B6561']; //10
var ETReal_pal = ['af0000', 'eb1e00', 'ff6400', 'ffb300', 'ffeb00', '9beb4a', '33db80', '00b4ff', '0064ff', '000096']; //10
var ETRef_pal = ['d73027', 'f46d43', 'fdae61', 'fee08b', 'ffffbf', 'd9ef8b', 'a6d96a','66bd63', '1a9850', '006837']; // 10-
- Temperature
var Temperature = ee.Image("projects/ee-sebastianpalominoangel/assets/Assets_BM_Bolivia/Tmedio_M1_M492_multiband")-
- Precipitation
var Precipitation = ee.Image("projects/ee-sebastianpalominoangel/assets/Assets_BM_Bolivia/PcP_M1_M492_multiband")-
- Runoff
var Runoff = ee.Image("projects/ee-sebastianpalominoangel/assets/Assets_BM_Bolivia/Escorrentia_M1_M492_multiband")-
- Real Evapotranspiration
var Evap_real = ee.Image("projects/ee-sebastianpalominoangel/assets/Assets_BM_Bolivia/ETR_M1_M492_multiband")-
- Evapotranspiration of Reference
var Evap_reference = ee.Image("projects/ee-sebastianpalominoangel/assets/Assets_BM_Bolivia/ETref_M1_M492_multiband")Version 1.0
https://github.com/sei-latam/WEAP_WebAppRepWB/commits/Version1.0The original code, repositories and scripts used in this project, are available at: https://earthengine.googlesource.com/users/carlosmendez/ExercicesSEI/+/refs/heads/master/WEAP_WebAppRepWB
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate.
BSD 3-Clause License
Copyright (c) 2025, Stockholm Environment Institute - Latin America
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
-
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
-
Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.