Shortcuts

Source code for torchgeo.datasets.esri2020

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

"""Esri 2020 Land Cover Dataset."""

import glob
import os
from collections.abc import Callable, Iterable
from typing import Any

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

from .geo import RasterDataset
from .utils import DatasetNotFoundError, download_url, extract_archive


[docs]class Esri2020(RasterDataset): """Esri 2020 Land Cover Dataset. The `Esri 2020 Land Cover dataset <https://www.arcgis.com/home/item.html?id=fc92d38533d440078f17678ebc20e8e2>`_ consists of a global single band land use/land cover map derived from ESA Sentinel-2 imagery at 10m resolution with a total of 10 classes. It was published in July 2021 and used the Universal Transverse Mercator (UTM) projection. This dataset only contains labels, no raw satellite imagery. The 10 classes are: 0. No Data 1. Water 2. Trees 3. Grass 4. Flooded Vegetation 5. Crops 6. Scrub/Shrub 7. Built Area 8. Bare Ground 9. Snow/Ice 10. Clouds A more detailed explanation of the invidual classes can be found `here <https://www.arcgis.com/home/item.html?id=fc92d38533d440078f17678ebc20e8e2>`_. If you use this dataset please cite the following paper: * https://ieeexplore.ieee.org/document/9553499 .. versionadded:: 0.3 """ is_image = False filename_glob = "*_20200101-20210101.*" filename_regex = r"""^ (?P<id>[0-9][0-9][A-Z]) _(?P<date>\d{8}) -(?P<processing_date>\d{8}) """ zipfile = "io-lulc-model-001-v01-composite-v03-supercell-v02-clip-v01.zip" md5 = "4932855fcd00735a34b74b1f87db3df0" url = ( "https://ai4edataeuwest.blob.core.windows.net/io-lulc/" "io-lulc-model-001-v01-composite-v03-supercell-v02-clip-v01.zip" )
[docs] def __init__( self, paths: str | Iterable[str] = "data", crs: CRS | None = None, res: float | None = None, transforms: Callable[[dict[str, Any]], dict[str, Any]] | None = None, cache: bool = True, download: bool = False, checksum: bool = False, ) -> None: """Initialize a new Dataset instance. Args: paths: one or more root directories to search or files to load 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 download: if True, download dataset and store it in the root directory checksum: if True, check the MD5 of the downloaded files (may be slow) Raises: DatasetNotFoundError: If dataset is not found and *download* is False. .. versionchanged:: 0.5 *root* was renamed to *paths*. """ self.paths = paths self.download = download self.checksum = checksum self._verify() super().__init__(paths, crs, res, transforms=transforms, cache=cache)
def _verify(self) -> None: """Verify the integrity of the dataset.""" # Check if the extracted file already exists if self.files: return # Check if the zip files have already been downloaded assert isinstance(self.paths, str) pathname = os.path.join(self.paths, self.zipfile) if glob.glob(pathname): self._extract() return # Check if the user requested to download the dataset if not self.download: raise DatasetNotFoundError(self) # Download the dataset self._download() self._extract() def _download(self) -> None: """Download the dataset.""" download_url(self.url, self.paths, filename=self.zipfile, md5=self.md5) def _extract(self) -> None: """Extract the dataset.""" assert isinstance(self.paths, str) extract_archive(os.path.join(self.paths, self.zipfile))
[docs] def plot( self, sample: dict[str, Any], show_titles: bool = True, suptitle: str | None = 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 484d6663.

Built with Sphinx using a theme provided by Read the Docs.
Read the Docs v: latest
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