Skip to content

Commit

Permalink
Merge pull request #1004 from bjlittle/minor-docs
Browse files Browse the repository at this point in the history
minor fix to crs doc-strings
  • Loading branch information
snowman2 authored Dec 6, 2021
2 parents 75b5d04 + 835f08b commit 2d3cc7e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyproj/crs/crs.py
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,7 @@ def geodetic_crs(self) -> Optional["CRS"]:
Returns
-------
CRS:
The the geodeticCRS / geographicCRS from the CRS.
The geodeticCRS / geographicCRS from the CRS.
"""
return (
Expand All @@ -981,7 +981,7 @@ def geodetic_crs(self) -> Optional["CRS"]:
@property
def source_crs(self) -> Optional["CRS"]:
"""
The the base CRS of a BoundCRS or a DerivedCRS/ProjectedCRS,
The base CRS of a BoundCRS or a DerivedCRS/ProjectedCRS,
or the source CRS of a CoordinateOperation.
Returns
Expand Down Expand Up @@ -1648,15 +1648,15 @@ def geodetic_crs(self) -> Optional["CRS"]:
Returns
-------
CRS:
The the geodeticCRS / geographicCRS from the CRS.
The geodeticCRS / geographicCRS from the CRS.
"""
return None if self._crs.geodetic_crs is None else CRS(self._crs.geodetic_crs)

@property
def source_crs(self) -> Optional["CRS"]:
"""
The the base CRS of a BoundCRS or a DerivedCRS/ProjectedCRS,
The base CRS of a BoundCRS or a DerivedCRS/ProjectedCRS,
or the source CRS of a CoordinateOperation.
Returns
Expand Down

0 comments on commit 2d3cc7e

Please sign in to comment.