File tree 4 files changed +21
-20
lines changed
django-stubs/contrib/gis/geos
4 files changed +21
-20
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ class GEOSGeometryBase(GEOSBase):
60
60
def disjoint (self , other : GEOSGeometry ) -> bool : ...
61
61
def equals (self , other : GEOSGeometry ) -> bool : ...
62
62
def equals_exact (self , other : GEOSGeometry , tolerance : float = ...) -> bool : ...
63
+ def equals_identical (self , other : GEOSGeometry ) -> bool : ...
63
64
def intersects (self , other : GEOSGeometry ) -> bool : ...
64
65
def overlaps (self , other : GEOSGeometry ) -> bool : ...
65
66
def relate_pattern (self , other : GEOSGeometry , pattern : str ) -> bool : ...
Original file line number Diff line number Diff line change @@ -73,6 +73,8 @@ class _WKBReader(IOBase):
73
73
destructor : Any
74
74
def read (self , wkb : Any ) -> Any : ...
75
75
76
+ def default_trim_value () -> bool : ...
77
+
76
78
class WKTWriter (IOBase ):
77
79
ptr_type : Any
78
80
destructor : Any
Original file line number Diff line number Diff line change @@ -10,20 +10,21 @@ class UnaryPredicate(GEOSFuncFactory):
10
10
class BinaryPredicate (UnaryPredicate ):
11
11
argtypes : Any
12
12
13
- geos_hasz : Any
14
- geos_isclosed : Any
15
- geos_isempty : Any
16
- geos_isring : Any
17
- geos_issimple : Any
18
- geos_isvalid : Any
19
- geos_contains : Any
20
- geos_covers : Any
21
- geos_crosses : Any
22
- geos_disjoint : Any
23
- geos_equals : Any
24
- geos_equalsexact : Any
25
- geos_intersects : Any
26
- geos_overlaps : Any
27
- geos_relatepattern : Any
28
- geos_touches : Any
29
- geos_within : Any
13
+ geos_hasz : UnaryPredicate
14
+ geos_isclosed : UnaryPredicate
15
+ geos_isempty : UnaryPredicate
16
+ geos_isring : UnaryPredicate
17
+ geos_issimple : UnaryPredicate
18
+ geos_isvalid : UnaryPredicate
19
+ geos_contains : BinaryPredicate
20
+ geos_covers : BinaryPredicate
21
+ geos_crosses : BinaryPredicate
22
+ geos_disjoint : BinaryPredicate
23
+ geos_equals : BinaryPredicate
24
+ geos_equalsexact : BinaryPredicate
25
+ geos_equalsidentical : BinaryPredicate
26
+ geos_intersects : BinaryPredicate
27
+ geos_overlaps : BinaryPredicate
28
+ geos_relatepattern : BinaryPredicate
29
+ geos_touches : BinaryPredicate
30
+ geos_within : BinaryPredicate
Original file line number Diff line number Diff line change @@ -33,10 +33,7 @@ django.contrib.gis.forms.BoundField.template_name
33
33
django.contrib.gis.forms.ClearableFileInput.checked
34
34
django.contrib.gis.forms.Field.__init__
35
35
django.contrib.gis.forms.fields_for_model
36
- django.contrib.gis.geos.geometry.GEOSGeometryBase.equals_identical
37
36
django.contrib.gis.geos.prototypes.io.DEFAULT_TRIM_VALUE
38
- django.contrib.gis.geos.prototypes.io.default_trim_value
39
- django.contrib.gis.geos.prototypes.predicates.geos_equalsidentical
40
37
django.contrib.gis.management
41
38
django.contrib.gis.management.commands
42
39
django.contrib.gis.management.commands.inspectdb
You can’t perform that action at this time.
0 commit comments