Data examples#
GeoUtils uses and proposes several data examples to manipulate and test the different features.
Description#
Several sites (Coromandel Peninsula in New Zealand, Mount Everest and Exploradores Glacier in Chili) are proposed to cover different kinds of data:
Alias |
Site and Filename |
Type |
Description |
|---|---|---|---|
|
Coromandel_Lidar |
Point Cloud |
Land elevation over the area measured in 2021 (1) |
|
Everest_Landsa |
Raster |
B04 (red) image of the Mount Everest area in 2000 |
|
Everest_Landsat |
Raster |
B04 (red) cropped image of the Mount Everest area in 2000 |
|
Everest_Landsat |
Raster |
RGB image of the Mount Everest area in 2000 |
|
Everest_Landsat |
Vector |
Glacier outlines around the Mount Everest around 2000 (2) |
|
Exploradores_ASTER |
Raster |
Land elevation of the Exploradores Glacier area 2012 (3) |
|
Exploradores_ASTER |
Vector |
Glacier outlines around the Exploradores Glacier around 2000 (2) |
Note
If you need more information about the data, you can read this page of the geoutils-data repository project where they are stored, described and referenced with their Digital Object Identifier:
DOI: 10.5069/G91J980G
DOI: 10.7265/N5-RGI-60
Access to data#
Python#
If you want to use one of the example data, you can run this function with the corresponding data alias:
import geoutils as gu
# Download the 2012 raster DEM from Exploradores_ASTER dataset and return its path
path = gu.examples.get_path("exploradores_aster_dem")
It downloads the entire dataset if it was not already available and returns its absolute file path.
Bash#
To download the data samples, you can run:
mkdir data_examples
tar -xvz -C data_examples --strip-components 2 -f <(wget -q -O - https://github.com/GlacioHack/geoutils-data/archive/e758274647a8dd2656d73c3026c90cc77cab8a86.tar.gz)