@@ -172,15 +172,15 @@ class CRS:
172172
173173 The functionality is based on other fantastic projects:
174174
175- * `rasterio <https://github.com/mapbox/rasterio/blob/c13f0943b95c0eaa36ff3f620bd91107aa67b381/rasterio/_crs.pyx>`_ # noqa: E501
176- * `opendatacube <https://github.com/opendatacube/datacube-core/blob/83bae20d2a2469a6417097168fd4ede37fd2abe5/datacube/utils/geometry/_base.py>`_ # noqa: E501
175+ * `rasterio <https://github.com/mapbox/rasterio/blob/c13f0943b95c0eaa36ff3f620bd91107aa67b381/rasterio/_crs.pyx>`_
176+ * `opendatacube <https://github.com/opendatacube/datacube-core/blob/83bae20d2a2469a6417097168fd4ede37fd2abe5/datacube/utils/geometry/_base.py>`_
177177
178178 Attributes
179179 ----------
180180 srs: str
181181 The string form of the user input used to create the CRS.
182182
183- """
183+ """ # noqa: E501
184184
185185 def __init__ (self , projparams : Any | None = None , ** kwargs ) -> None :
186186 """
@@ -579,14 +579,14 @@ def to_dict(self) -> dict:
579579
580580 .. warning:: You will likely lose important projection
581581 information when converting to a PROJ string from
582- another format. See: https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems # noqa: E501
582+ another format. See: https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems
583583
584584 Returns
585585 -------
586586 dict:
587587 PROJ params in dict format.
588588
589- """
589+ """ # noqa: E501
590590
591591 proj_string = self .to_proj4 ()
592592 if proj_string is None :
@@ -1280,7 +1280,7 @@ def to_proj4(self, version: ProjVersion | int = ProjVersion.PROJ_5) -> str:
12801280 .. warning:: You will likely lose important projection
12811281 information when converting to a PROJ string from
12821282 another format. See:
1283- https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems # noqa: E501
1283+ https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems
12841284
12851285 Parameters
12861286 ----------
@@ -1291,7 +1291,7 @@ def to_proj4(self, version: ProjVersion | int = ProjVersion.PROJ_5) -> str:
12911291 Returns
12921292 -------
12931293 str
1294- """
1294+ """ # noqa: E501
12951295 proj = self ._crs .to_proj4 (version = version )
12961296 if proj is None :
12971297 raise CRSError ("CRS cannot be converted to a PROJ string." )
0 commit comments