@@ -172,15 +172,15 @@ class CRS:
172
172
173
173
The functionality is based on other fantastic projects:
174
174
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>`_
177
177
178
178
Attributes
179
179
----------
180
180
srs: str
181
181
The string form of the user input used to create the CRS.
182
182
183
- """
183
+ """ # noqa: E501
184
184
185
185
def __init__ (self , projparams : Any | None = None , ** kwargs ) -> None :
186
186
"""
@@ -579,14 +579,14 @@ def to_dict(self) -> dict:
579
579
580
580
.. warning:: You will likely lose important projection
581
581
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
583
583
584
584
Returns
585
585
-------
586
586
dict:
587
587
PROJ params in dict format.
588
588
589
- """
589
+ """ # noqa: E501
590
590
591
591
proj_string = self .to_proj4 ()
592
592
if proj_string is None :
@@ -1280,7 +1280,7 @@ def to_proj4(self, version: ProjVersion | int = ProjVersion.PROJ_5) -> str:
1280
1280
.. warning:: You will likely lose important projection
1281
1281
information when converting to a PROJ string from
1282
1282
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
1284
1284
1285
1285
Parameters
1286
1286
----------
@@ -1291,7 +1291,7 @@ def to_proj4(self, version: ProjVersion | int = ProjVersion.PROJ_5) -> str:
1291
1291
Returns
1292
1292
-------
1293
1293
str
1294
- """
1294
+ """ # noqa: E501
1295
1295
proj = self ._crs .to_proj4 (version = version )
1296
1296
if proj is None :
1297
1297
raise CRSError ("CRS cannot be converted to a PROJ string." )
0 commit comments