Skip to content

Commit

Permalink
Last edits
Browse files Browse the repository at this point in the history
  • Loading branch information
rhugonnet committed Nov 18, 2024
1 parent cf3da60 commit ae3900d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@
inheritance_alias = {
"geoutils.georaster.raster.Raster": "geoutils.Raster",
"geoutils.georaster.raster.Mask": "geoutils.Mask",
"geoutils.georaster.satimg.SatelliteImage": "geoutils.SatelliteImage",
"geoutils.geovector.Vector": "geoutils.Vector",
"xdem.dem.DEM": "xdem.DEM",
"xdem.coreg.base.Coreg": "xdem.Coreg",
Expand Down
4 changes: 2 additions & 2 deletions xdem/dem.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def __init__(
The vertical reference of the DEM can be defined by passing the `vcrs` argument.
Otherwise, a vertical reference is tentatively parsed from the DEM product name.
Inherits all attributes from the :class:`geoutils.Raster` and :class:`geoutils.SatelliteImage` classes.
Inherits all attributes from the :class:`geoutils.Raster` class.
:param filename_or_dataset: The filename of the dataset.
:param vcrs: Vertical coordinate reference system either as a name ("WGS84", "EGM08", "EGM96"),
Expand All @@ -103,7 +103,7 @@ def __init__(
for key in filename_or_dataset.__dict__:
setattr(self, key, filename_or_dataset.__dict__[key])
return
# Else rely on parent SatelliteImage class options (including raised errors)
# Else rely on parent Raster class options (including raised errors)
else:
with warnings.catch_warnings():
warnings.filterwarnings("ignore", message="Parse metadata from file not implemented")
Expand Down

0 comments on commit ae3900d

Please sign in to comment.