File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 1717
1818
1919"""
20- This module defines _spatial data types.
20+ This module defines spatial data types.
2121"""
2222
2323from __future__ import annotations
3232
3333
3434class Point (t .Tuple [float , ...]):
35- """Base-class for _spatial data.
35+ """Base-class for spatial data.
3636
3737 A point within a geometric space. This type is generally used via its
3838 subclasses and should not be instantiated directly unless there is no
@@ -44,10 +44,9 @@ class Point(t.Tuple[float, ...]):
4444 :type iterable: Iterable[float]
4545 """
4646
47- #: The SRID (_spatial reference identifier) of the _spatial data.
48- #: A number that identifies the coordinate system the _spatial type is to be
49- #: interpreted in.
50-
47+ #: The SRID (spatial reference identifier) of the spatial data.
48+ #: A number that identifies the coordinate system the spatial type is to
49+ #: be interpreted in.
5150 srid : t .Optional [int ]
5251
5352 @property
You can’t perform that action at this time.
0 commit comments