Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjstewart committed Feb 26, 2022
1 parent 3d36ef1 commit 1f44aac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions torchgeo/datasets/eudem.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class EUDEM(RasterDataset):
The dataset can be downloaded from this `website
<https://land.copernicus.eu/imagery-in-situ/eu-dem/eu-dem-v1.1?tab=mapview>`_
after making an account. A dataset factsheet is available
`here <https://land.copernicus.eu/user-corner/publications/eu-dem-flyer/view>`.
`here <https://land.copernicus.eu/user-corner/publications/eu-dem-flyer/view>`_.
Dataset features:
Expand All @@ -47,7 +47,7 @@ class EUDEM(RasterDataset):
is_image = False
filename_glob = "eu_dem_v11_*.TIF"
zipfile_glob = "eu_dem_v11_*[A-Z0-9].zip"
filename_regex = r"""(?P<name>[eudem_v11]{10})_(?P<id>[A-Z0-9]{6})"""
filename_regex = "(?P<name>[eudem_v11]{10})_(?P<id>[A-Z0-9]{6})"

md5s = {
"eu_dem_v11_E00N20.zip": "96edc7e11bc299b994e848050d6be591",
Expand Down

0 comments on commit 1f44aac

Please sign in to comment.