Shortcuts

Source code for torchgeo.datasets.astergdem

# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

"""Aster Global Digital Elevation Model dataset."""

from typing import Any, Callable, Optional, Union

import matplotlib.pyplot as plt
from matplotlib.figure import Figure
from rasterio.crs import CRS

from .geo import RasterDataset


[docs]class AsterGDEM(RasterDataset): """Aster Global Digital Elevation Model Dataset. The `Aster Global Digital Elevation Model <https://lpdaac.usgs.gov/products/astgtmv003/>`_ dataset is a Digital Elevation Model (DEM) on a global scale. The dataset can be downloaded from the `Earth Data website <https://search.earthdata.nasa.gov/search/>`_ after making an account. Dataset features: * DEMs at 30 m per pixel spatial resolution (3601x3601 px) * data collected from the `Aster <https://terra.nasa.gov/about/terra-instruments/aster>`_ instrument Dataset format: * DEMs are single-channel tif files .. versionadded:: 0.3 """ is_image = False filename_glob = "ASTGTMV003_*_dem*" filename_regex = r""" (?P<name>[ASTGTMV003]{10}) _(?P<id>[A-Z0-9]{7}) _(?P<data>[a-z]{3})* """
[docs] def __init__( self, paths: Union[str, list[str]] = "data", crs: Optional[CRS] = None, res: Optional[float] = None, transforms: Optional[Callable[[dict[str, Any]], dict[str, Any]]] = None, cache: bool = True, ) -> None: """Initialize a new Dataset instance. Args: paths: one or more root directories to search or files to load, here the collection of individual zip files for each tile should be found crs: :term:`coordinate reference system (CRS)` to warp to (defaults to the CRS of the first file found) res: resolution of the dataset in units of CRS (defaults to the resolution of the first file found) transforms: a function/transform that takes an input sample and returns a transformed version cache: if True, cache file handle to speed up repeated sampling Raises: FileNotFoundError: if no files are found in ``paths`` RuntimeError: if dataset is missing .. versionchanged:: 0.5 *root* was renamed to *paths*. """ self.paths = paths self._verify() super().__init__(paths, crs, res, transforms=transforms, cache=cache)
def _verify(self) -> None: """Verify the integrity of the dataset. Raises: RuntimeError: if dataset is missing """ # Check if the extracted files already exists if self.files: return raise RuntimeError( f"Dataset not found in `paths={self.paths!r}` " "either specify a different `paths` or make sure you " "have manually downloaded dataset tiles as suggested in the documentation." )
[docs] def plot( self, sample: dict[str, Any], show_titles: bool = True, suptitle: Optional[str] = None, ) -> Figure: """Plot a sample from the dataset. Args: sample: a sample returned by :meth:`RasterDataset.__getitem__` show_titles: flag indicating whether to show titles above each panel suptitle: optional string to use as a suptitle Returns: a matplotlib Figure with the rendered sample """ mask = sample["mask"].squeeze() ncols = 1 showing_predictions = "prediction" in sample if showing_predictions: prediction = sample["prediction"].squeeze() ncols = 2 fig, axs = plt.subplots(nrows=1, ncols=ncols, figsize=(4 * ncols, 4)) if showing_predictions: axs[0].imshow(mask) axs[0].axis("off") axs[1].imshow(prediction) axs[1].axis("off") if show_titles: axs[0].set_title("Mask") axs[1].set_title("Prediction") else: axs.imshow(mask) axs.axis("off") if show_titles: axs.set_title("Mask") if suptitle is not None: plt.suptitle(suptitle) return fig

© Copyright 2021, Microsoft Corporation. Revision b9653beb.

Built with Sphinx using a theme provided by Read the Docs.
Read the Docs v: stable
Versions
latest
stable
v0.5.2
v0.5.1
v0.5.0
v0.4.1
v0.4.0
v0.3.1
v0.3.0
v0.2.1
v0.2.0
v0.1.1
v0.1.0
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources