pygeobox 1.0.1__py3-none-any.whl → 1.0.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pygeobox/__init__.py +63 -63
- pygeobox/api.py +2517 -2517
- pygeobox/apikey.py +232 -232
- pygeobox/attachment.py +297 -297
- pygeobox/base.py +364 -364
- pygeobox/basemap.py +162 -162
- pygeobox/dashboard.py +316 -316
- pygeobox/enums.py +354 -354
- pygeobox/exception.py +47 -47
- pygeobox/field.py +309 -309
- pygeobox/map.py +858 -858
- pygeobox/model3d.py +334 -334
- pygeobox/mosaic.py +647 -647
- pygeobox/plan.py +260 -260
- pygeobox/query.py +668 -668
- pygeobox/raster.py +756 -756
- pygeobox/route.py +63 -63
- pygeobox/scene.py +317 -317
- pygeobox/settings.py +165 -165
- pygeobox/task.py +354 -354
- pygeobox/tile3d.py +294 -294
- pygeobox/tileset.py +585 -585
- pygeobox/user.py +423 -423
- pygeobox/utils.py +43 -43
- pygeobox/vectorlayer.py +1149 -1149
- pygeobox/version.py +248 -248
- pygeobox/view.py +859 -859
- pygeobox/workflow.py +315 -315
- {pygeobox-1.0.1.dist-info → pygeobox-1.0.3.dist-info}/METADATA +18 -33
- pygeobox-1.0.3.dist-info/RECORD +37 -0
- {pygeobox-1.0.1.dist-info → pygeobox-1.0.3.dist-info}/licenses/LICENSE +21 -21
- pygeobox-1.0.1.dist-info/RECORD +0 -37
- {pygeobox-1.0.1.dist-info → pygeobox-1.0.3.dist-info}/WHEEL +0 -0
- {pygeobox-1.0.1.dist-info → pygeobox-1.0.3.dist-info}/top_level.txt +0 -0
pygeobox/enums.py
CHANGED
@@ -1,355 +1,355 @@
|
|
1
|
-
from enum import Enum
|
2
|
-
|
3
|
-
# File Enums
|
4
|
-
class InputGeomType(Enum):
|
5
|
-
POINT = 'POINT'
|
6
|
-
LINE = 'LINE'
|
7
|
-
POLYGON = 'POLYGON'
|
8
|
-
MULTIPOINT = 'MULTIPOINT'
|
9
|
-
MULTILINE = 'MULTILINE'
|
10
|
-
MULTIPOLYGON = 'MULTIPOLYGON'
|
11
|
-
POINT_Z = 'POINTZ'
|
12
|
-
LINE_Z = 'LINEZ'
|
13
|
-
POLYGON_Z = 'POLYGONZ'
|
14
|
-
MULTIPOINT_Z = 'MULTIPOINTZ'
|
15
|
-
MULTILINE_Z = 'MULTILINEZ'
|
16
|
-
MULTIPOLYGON_Z = 'MULTIPOLYGONZ'
|
17
|
-
|
18
|
-
class PublishFileType(Enum):
|
19
|
-
VECTOR = 'vector'
|
20
|
-
RASTER = 'raster'
|
21
|
-
MODEL3D = 'model3d'
|
22
|
-
|
23
|
-
class FileType(Enum):
|
24
|
-
# Spatial Data Formats
|
25
|
-
Shapefile = '.shp'
|
26
|
-
FileGDB = '.gdb'
|
27
|
-
CSV = '.csv'
|
28
|
-
KML = '.kml'
|
29
|
-
DXF = '.dxf'
|
30
|
-
GPX = '.gpx'
|
31
|
-
GPKG = '.gpkg'
|
32
|
-
GeoJSON = '.geojson'
|
33
|
-
GeoTIFF = '.tif'
|
34
|
-
|
35
|
-
# Image Formats
|
36
|
-
JPG = '.jpg'
|
37
|
-
JPEG = '.jpeg'
|
38
|
-
SVG = '.svg'
|
39
|
-
PNG = '.png'
|
40
|
-
BMP = '.bmp'
|
41
|
-
TIF = '.tif'
|
42
|
-
GIF = '.gif'
|
43
|
-
|
44
|
-
# Video Formats
|
45
|
-
MP4 = '.mp4'
|
46
|
-
AVI = '.avi'
|
47
|
-
OGG = '.ogg'
|
48
|
-
WEBM = '.webm'
|
49
|
-
MPEG = '.mpeg'
|
50
|
-
WMV = '.wmv'
|
51
|
-
|
52
|
-
# Document Formats
|
53
|
-
TXT = '.txt'
|
54
|
-
DOC = '.doc'
|
55
|
-
DOCX = '.docx'
|
56
|
-
XLS = '.xls'
|
57
|
-
XLSX = '.xlsx'
|
58
|
-
PPT = '.ppt'
|
59
|
-
PPTX = '.pptx'
|
60
|
-
PDF = '.pdf'
|
61
|
-
|
62
|
-
# Compressed Formats
|
63
|
-
ZIP = '.zip'
|
64
|
-
SEVEN_Z = '.7z' # 7z
|
65
|
-
RAR = '.rar'
|
66
|
-
ISO = '.iso'
|
67
|
-
GZ = '.gz'
|
68
|
-
BZ2 = '.bz2'
|
69
|
-
TAR = '.tar'
|
70
|
-
CAB = '.cab'
|
71
|
-
IMG = '.img'
|
72
|
-
|
73
|
-
|
74
|
-
# Field Enums
|
75
|
-
class FieldType(Enum):
|
76
|
-
"""
|
77
|
-
A class representing the data type of a field.
|
78
|
-
"""
|
79
|
-
Integer = "Integer"
|
80
|
-
"""
|
81
|
-
An integer field.
|
82
|
-
"""
|
83
|
-
Float = "Float"
|
84
|
-
"""
|
85
|
-
A float field.
|
86
|
-
"""
|
87
|
-
String = "String"
|
88
|
-
"""
|
89
|
-
A string field.
|
90
|
-
"""
|
91
|
-
Long = "Long"
|
92
|
-
"""
|
93
|
-
A Long field.
|
94
|
-
"""
|
95
|
-
DATE = "Date"
|
96
|
-
"""
|
97
|
-
A Date field.
|
98
|
-
"""
|
99
|
-
TIME = "Time"
|
100
|
-
"""
|
101
|
-
A Time Field.
|
102
|
-
"""
|
103
|
-
DATETIME = "DateTime"
|
104
|
-
"""
|
105
|
-
A DateTime Field.
|
106
|
-
"""
|
107
|
-
|
108
|
-
|
109
|
-
# Layer Enums
|
110
|
-
class LayerType(Enum):
|
111
|
-
"""
|
112
|
-
Enumeration of supported vector layer geometry types.
|
113
|
-
|
114
|
-
This enum defines the different types of geometric shapes that can be stored in a vector layer.
|
115
|
-
Each type represents a specific geometric structure supported by the Geobox API.
|
116
|
-
"""
|
117
|
-
Point = "Point"
|
118
|
-
"""A single point in 2D space"""
|
119
|
-
|
120
|
-
LineString = "LineString"
|
121
|
-
"""A sequence of points forming a line"""
|
122
|
-
|
123
|
-
Polygon = "Polygon"
|
124
|
-
"""A closed shape defined by a sequence of points"""
|
125
|
-
|
126
|
-
MultiPoint = "MultiPoint"
|
127
|
-
"""A collection of points"""
|
128
|
-
|
129
|
-
MultiLineString = "MultiLineString"
|
130
|
-
"""A collection of lines"""
|
131
|
-
|
132
|
-
MultiPolygon = "MultiPolygon"
|
133
|
-
"""A collection of polygons"""
|
134
|
-
|
135
|
-
Polyline = "Polyline"
|
136
|
-
"""A polyline geometry"""
|
137
|
-
|
138
|
-
|
139
|
-
# Layer Enums
|
140
|
-
class FeatureType(Enum):
|
141
|
-
"""
|
142
|
-
Enumeration of supported feature geometry types.
|
143
|
-
|
144
|
-
This enum defines the different types of geometric shapes that can be stored in a feature.
|
145
|
-
Each type represents a specific geometric structure supported by the Geobox API.
|
146
|
-
"""
|
147
|
-
Point = "Point"
|
148
|
-
"""A single point in 2D space"""
|
149
|
-
|
150
|
-
LineString = "LineString"
|
151
|
-
"""A sequence of points forming a line"""
|
152
|
-
|
153
|
-
Polygon = "Polygon"
|
154
|
-
"""A closed shape defined by a sequence of points"""
|
155
|
-
|
156
|
-
MultiPoint = "MultiPoint"
|
157
|
-
"""A collection of points"""
|
158
|
-
|
159
|
-
MultiLineString = "MultiLineString"
|
160
|
-
"""A collection of lines"""
|
161
|
-
|
162
|
-
MultiPolygon = "MultiPolygon"
|
163
|
-
"""A collection of polygons"""
|
164
|
-
|
165
|
-
Polyline = "Polyline"
|
166
|
-
"""A polyline geometry"""
|
167
|
-
|
168
|
-
|
169
|
-
# Task Enums
|
170
|
-
class TaskStatus(Enum):
|
171
|
-
"""
|
172
|
-
Enumeration of possible task statuses.
|
173
|
-
"""
|
174
|
-
PENDING = "PENDING"
|
175
|
-
"""
|
176
|
-
The task is pending.
|
177
|
-
"""
|
178
|
-
PROGRESS = "PROGRESS"
|
179
|
-
"""
|
180
|
-
The task is in progress.
|
181
|
-
"""
|
182
|
-
SUCCESS = "SUCCESS"
|
183
|
-
"""
|
184
|
-
The task is successful.
|
185
|
-
"""
|
186
|
-
FAILURE = "FAILURE"
|
187
|
-
"""
|
188
|
-
The task is failed.
|
189
|
-
"""
|
190
|
-
ABORTED = "ABORTED"
|
191
|
-
"""
|
192
|
-
The task is aborted.
|
193
|
-
"""
|
194
|
-
|
195
|
-
class QueryGeometryType(Enum):
|
196
|
-
"""
|
197
|
-
Enumeration of possible query geometry types.
|
198
|
-
"""
|
199
|
-
POINT = "Point"
|
200
|
-
"""
|
201
|
-
A point geometry.
|
202
|
-
"""
|
203
|
-
MULTIPOINT = "Multipoint"
|
204
|
-
"""
|
205
|
-
A multipoint geometry.
|
206
|
-
"""
|
207
|
-
POLYLINE = "Polyline"
|
208
|
-
"""
|
209
|
-
A polyline geometry.
|
210
|
-
"""
|
211
|
-
POLYGON = "Polygon"
|
212
|
-
"""
|
213
|
-
A polygon geometry.
|
214
|
-
"""
|
215
|
-
|
216
|
-
class QueryParamType(Enum):
|
217
|
-
"""
|
218
|
-
Enumeration of possible query parameter types.
|
219
|
-
"""
|
220
|
-
LAYER = "Layer"
|
221
|
-
"""
|
222
|
-
A layer parameter.
|
223
|
-
"""
|
224
|
-
ATTRIBUTE = "Attribute"
|
225
|
-
"""
|
226
|
-
A Attribute parameter.
|
227
|
-
"""
|
228
|
-
FLOAT = "Float"
|
229
|
-
"""
|
230
|
-
A Float parameter.
|
231
|
-
"""
|
232
|
-
INTEGER = "Integer"
|
233
|
-
"""
|
234
|
-
A Integer parameter.
|
235
|
-
"""
|
236
|
-
TEXT = "Text"
|
237
|
-
"""
|
238
|
-
A Text parameter.
|
239
|
-
"""
|
240
|
-
BOOLEAN = "Boolean"
|
241
|
-
"""
|
242
|
-
A Boolean parameter.
|
243
|
-
"""
|
244
|
-
|
245
|
-
|
246
|
-
class UserRole(Enum):
|
247
|
-
SYSTEM_ADMIN = "System Admin"
|
248
|
-
|
249
|
-
ACCOUNT_ADMIN = "Account Admin"
|
250
|
-
|
251
|
-
PUBLISHER = "Publisher"
|
252
|
-
|
253
|
-
EDITOR = "Editor"
|
254
|
-
|
255
|
-
VIEWR = "Viewer"
|
256
|
-
|
257
|
-
|
258
|
-
class UserStatus(Enum):
|
259
|
-
NEW = "New"
|
260
|
-
|
261
|
-
PENDING = "Pending"
|
262
|
-
|
263
|
-
ACTIVE = "Active"
|
264
|
-
|
265
|
-
DISABLED = "Disabled"
|
266
|
-
|
267
|
-
|
268
|
-
class AttachmentResourceType(Enum):
|
269
|
-
Map = "map"
|
270
|
-
|
271
|
-
Vector = "vector"
|
272
|
-
|
273
|
-
View = "view"
|
274
|
-
|
275
|
-
|
276
|
-
class MaxLogPolicy(Enum):
|
277
|
-
OverwriteFirstLog = "OverwriteFirstLog"
|
278
|
-
|
279
|
-
IgnoreLogging = "IgnoreLogging"
|
280
|
-
|
281
|
-
|
282
|
-
class InvalidDataPolicy(Enum):
|
283
|
-
ReportToAdmin = "ReportToAdmin"
|
284
|
-
|
285
|
-
LogOnly = "LogOnly"
|
286
|
-
|
287
|
-
|
288
|
-
class LoginFailurePolicy(Enum):
|
289
|
-
BlockIPTemporarily = "BlockIPTemporarily"
|
290
|
-
|
291
|
-
DisableAccount = "DisableAccount"
|
292
|
-
|
293
|
-
|
294
|
-
class MaxConcurrentSessionPolicy(Enum):
|
295
|
-
CloseLastSession = "CloseLastSession"
|
296
|
-
|
297
|
-
CloseMostInactiveSession = "CloseMostInactiveSession"
|
298
|
-
|
299
|
-
PreventNewSession = "PreventNewSession"
|
300
|
-
|
301
|
-
|
302
|
-
class RoutingGeometryType(Enum):
|
303
|
-
geojson = "geojson"
|
304
|
-
|
305
|
-
polyline = "polyline"
|
306
|
-
|
307
|
-
polyline6= "polyline6"
|
308
|
-
|
309
|
-
|
310
|
-
class RoutingOverviewLevel(Enum):
|
311
|
-
Full = 'full'
|
312
|
-
|
313
|
-
Simplified = 'simplified'
|
314
|
-
|
315
|
-
|
316
|
-
class QueryResultType(Enum):
|
317
|
-
metadata = "metadata"
|
318
|
-
|
319
|
-
data = "data"
|
320
|
-
|
321
|
-
both = "both"
|
322
|
-
|
323
|
-
|
324
|
-
class TilesetLayerType(Enum):
|
325
|
-
Vector = "vector"
|
326
|
-
|
327
|
-
View = "view"
|
328
|
-
|
329
|
-
|
330
|
-
class FileOutputFormat(Enum):
|
331
|
-
Shapefile = "Shapefile"
|
332
|
-
|
333
|
-
GPKG = "GPKG"
|
334
|
-
|
335
|
-
GeoJSON = "GeoJSON"
|
336
|
-
|
337
|
-
CSV = "CSV"
|
338
|
-
|
339
|
-
KML = "KML"
|
340
|
-
|
341
|
-
DXF = "DXF"
|
342
|
-
|
343
|
-
|
344
|
-
class UsageScale(Enum):
|
345
|
-
Hour = 'hour'
|
346
|
-
|
347
|
-
Day = 'day'
|
348
|
-
|
349
|
-
Month = 'month'
|
350
|
-
|
351
|
-
|
352
|
-
class UsageParam(Enum):
|
353
|
-
Traffict = 'traffic'
|
354
|
-
|
1
|
+
from enum import Enum
|
2
|
+
|
3
|
+
# File Enums
|
4
|
+
class InputGeomType(Enum):
|
5
|
+
POINT = 'POINT'
|
6
|
+
LINE = 'LINE'
|
7
|
+
POLYGON = 'POLYGON'
|
8
|
+
MULTIPOINT = 'MULTIPOINT'
|
9
|
+
MULTILINE = 'MULTILINE'
|
10
|
+
MULTIPOLYGON = 'MULTIPOLYGON'
|
11
|
+
POINT_Z = 'POINTZ'
|
12
|
+
LINE_Z = 'LINEZ'
|
13
|
+
POLYGON_Z = 'POLYGONZ'
|
14
|
+
MULTIPOINT_Z = 'MULTIPOINTZ'
|
15
|
+
MULTILINE_Z = 'MULTILINEZ'
|
16
|
+
MULTIPOLYGON_Z = 'MULTIPOLYGONZ'
|
17
|
+
|
18
|
+
class PublishFileType(Enum):
|
19
|
+
VECTOR = 'vector'
|
20
|
+
RASTER = 'raster'
|
21
|
+
MODEL3D = 'model3d'
|
22
|
+
|
23
|
+
class FileType(Enum):
|
24
|
+
# Spatial Data Formats
|
25
|
+
Shapefile = '.shp'
|
26
|
+
FileGDB = '.gdb'
|
27
|
+
CSV = '.csv'
|
28
|
+
KML = '.kml'
|
29
|
+
DXF = '.dxf'
|
30
|
+
GPX = '.gpx'
|
31
|
+
GPKG = '.gpkg'
|
32
|
+
GeoJSON = '.geojson'
|
33
|
+
GeoTIFF = '.tif'
|
34
|
+
|
35
|
+
# Image Formats
|
36
|
+
JPG = '.jpg'
|
37
|
+
JPEG = '.jpeg'
|
38
|
+
SVG = '.svg'
|
39
|
+
PNG = '.png'
|
40
|
+
BMP = '.bmp'
|
41
|
+
TIF = '.tif'
|
42
|
+
GIF = '.gif'
|
43
|
+
|
44
|
+
# Video Formats
|
45
|
+
MP4 = '.mp4'
|
46
|
+
AVI = '.avi'
|
47
|
+
OGG = '.ogg'
|
48
|
+
WEBM = '.webm'
|
49
|
+
MPEG = '.mpeg'
|
50
|
+
WMV = '.wmv'
|
51
|
+
|
52
|
+
# Document Formats
|
53
|
+
TXT = '.txt'
|
54
|
+
DOC = '.doc'
|
55
|
+
DOCX = '.docx'
|
56
|
+
XLS = '.xls'
|
57
|
+
XLSX = '.xlsx'
|
58
|
+
PPT = '.ppt'
|
59
|
+
PPTX = '.pptx'
|
60
|
+
PDF = '.pdf'
|
61
|
+
|
62
|
+
# Compressed Formats
|
63
|
+
ZIP = '.zip'
|
64
|
+
SEVEN_Z = '.7z' # 7z
|
65
|
+
RAR = '.rar'
|
66
|
+
ISO = '.iso'
|
67
|
+
GZ = '.gz'
|
68
|
+
BZ2 = '.bz2'
|
69
|
+
TAR = '.tar'
|
70
|
+
CAB = '.cab'
|
71
|
+
IMG = '.img'
|
72
|
+
|
73
|
+
|
74
|
+
# Field Enums
|
75
|
+
class FieldType(Enum):
|
76
|
+
"""
|
77
|
+
A class representing the data type of a field.
|
78
|
+
"""
|
79
|
+
Integer = "Integer"
|
80
|
+
"""
|
81
|
+
An integer field.
|
82
|
+
"""
|
83
|
+
Float = "Float"
|
84
|
+
"""
|
85
|
+
A float field.
|
86
|
+
"""
|
87
|
+
String = "String"
|
88
|
+
"""
|
89
|
+
A string field.
|
90
|
+
"""
|
91
|
+
Long = "Long"
|
92
|
+
"""
|
93
|
+
A Long field.
|
94
|
+
"""
|
95
|
+
DATE = "Date"
|
96
|
+
"""
|
97
|
+
A Date field.
|
98
|
+
"""
|
99
|
+
TIME = "Time"
|
100
|
+
"""
|
101
|
+
A Time Field.
|
102
|
+
"""
|
103
|
+
DATETIME = "DateTime"
|
104
|
+
"""
|
105
|
+
A DateTime Field.
|
106
|
+
"""
|
107
|
+
|
108
|
+
|
109
|
+
# Layer Enums
|
110
|
+
class LayerType(Enum):
|
111
|
+
"""
|
112
|
+
Enumeration of supported vector layer geometry types.
|
113
|
+
|
114
|
+
This enum defines the different types of geometric shapes that can be stored in a vector layer.
|
115
|
+
Each type represents a specific geometric structure supported by the Geobox API.
|
116
|
+
"""
|
117
|
+
Point = "Point"
|
118
|
+
"""A single point in 2D space"""
|
119
|
+
|
120
|
+
LineString = "LineString"
|
121
|
+
"""A sequence of points forming a line"""
|
122
|
+
|
123
|
+
Polygon = "Polygon"
|
124
|
+
"""A closed shape defined by a sequence of points"""
|
125
|
+
|
126
|
+
MultiPoint = "MultiPoint"
|
127
|
+
"""A collection of points"""
|
128
|
+
|
129
|
+
MultiLineString = "MultiLineString"
|
130
|
+
"""A collection of lines"""
|
131
|
+
|
132
|
+
MultiPolygon = "MultiPolygon"
|
133
|
+
"""A collection of polygons"""
|
134
|
+
|
135
|
+
Polyline = "Polyline"
|
136
|
+
"""A polyline geometry"""
|
137
|
+
|
138
|
+
|
139
|
+
# Layer Enums
|
140
|
+
class FeatureType(Enum):
|
141
|
+
"""
|
142
|
+
Enumeration of supported feature geometry types.
|
143
|
+
|
144
|
+
This enum defines the different types of geometric shapes that can be stored in a feature.
|
145
|
+
Each type represents a specific geometric structure supported by the Geobox API.
|
146
|
+
"""
|
147
|
+
Point = "Point"
|
148
|
+
"""A single point in 2D space"""
|
149
|
+
|
150
|
+
LineString = "LineString"
|
151
|
+
"""A sequence of points forming a line"""
|
152
|
+
|
153
|
+
Polygon = "Polygon"
|
154
|
+
"""A closed shape defined by a sequence of points"""
|
155
|
+
|
156
|
+
MultiPoint = "MultiPoint"
|
157
|
+
"""A collection of points"""
|
158
|
+
|
159
|
+
MultiLineString = "MultiLineString"
|
160
|
+
"""A collection of lines"""
|
161
|
+
|
162
|
+
MultiPolygon = "MultiPolygon"
|
163
|
+
"""A collection of polygons"""
|
164
|
+
|
165
|
+
Polyline = "Polyline"
|
166
|
+
"""A polyline geometry"""
|
167
|
+
|
168
|
+
|
169
|
+
# Task Enums
|
170
|
+
class TaskStatus(Enum):
|
171
|
+
"""
|
172
|
+
Enumeration of possible task statuses.
|
173
|
+
"""
|
174
|
+
PENDING = "PENDING"
|
175
|
+
"""
|
176
|
+
The task is pending.
|
177
|
+
"""
|
178
|
+
PROGRESS = "PROGRESS"
|
179
|
+
"""
|
180
|
+
The task is in progress.
|
181
|
+
"""
|
182
|
+
SUCCESS = "SUCCESS"
|
183
|
+
"""
|
184
|
+
The task is successful.
|
185
|
+
"""
|
186
|
+
FAILURE = "FAILURE"
|
187
|
+
"""
|
188
|
+
The task is failed.
|
189
|
+
"""
|
190
|
+
ABORTED = "ABORTED"
|
191
|
+
"""
|
192
|
+
The task is aborted.
|
193
|
+
"""
|
194
|
+
|
195
|
+
class QueryGeometryType(Enum):
|
196
|
+
"""
|
197
|
+
Enumeration of possible query geometry types.
|
198
|
+
"""
|
199
|
+
POINT = "Point"
|
200
|
+
"""
|
201
|
+
A point geometry.
|
202
|
+
"""
|
203
|
+
MULTIPOINT = "Multipoint"
|
204
|
+
"""
|
205
|
+
A multipoint geometry.
|
206
|
+
"""
|
207
|
+
POLYLINE = "Polyline"
|
208
|
+
"""
|
209
|
+
A polyline geometry.
|
210
|
+
"""
|
211
|
+
POLYGON = "Polygon"
|
212
|
+
"""
|
213
|
+
A polygon geometry.
|
214
|
+
"""
|
215
|
+
|
216
|
+
class QueryParamType(Enum):
|
217
|
+
"""
|
218
|
+
Enumeration of possible query parameter types.
|
219
|
+
"""
|
220
|
+
LAYER = "Layer"
|
221
|
+
"""
|
222
|
+
A layer parameter.
|
223
|
+
"""
|
224
|
+
ATTRIBUTE = "Attribute"
|
225
|
+
"""
|
226
|
+
A Attribute parameter.
|
227
|
+
"""
|
228
|
+
FLOAT = "Float"
|
229
|
+
"""
|
230
|
+
A Float parameter.
|
231
|
+
"""
|
232
|
+
INTEGER = "Integer"
|
233
|
+
"""
|
234
|
+
A Integer parameter.
|
235
|
+
"""
|
236
|
+
TEXT = "Text"
|
237
|
+
"""
|
238
|
+
A Text parameter.
|
239
|
+
"""
|
240
|
+
BOOLEAN = "Boolean"
|
241
|
+
"""
|
242
|
+
A Boolean parameter.
|
243
|
+
"""
|
244
|
+
|
245
|
+
|
246
|
+
class UserRole(Enum):
|
247
|
+
SYSTEM_ADMIN = "System Admin"
|
248
|
+
|
249
|
+
ACCOUNT_ADMIN = "Account Admin"
|
250
|
+
|
251
|
+
PUBLISHER = "Publisher"
|
252
|
+
|
253
|
+
EDITOR = "Editor"
|
254
|
+
|
255
|
+
VIEWR = "Viewer"
|
256
|
+
|
257
|
+
|
258
|
+
class UserStatus(Enum):
|
259
|
+
NEW = "New"
|
260
|
+
|
261
|
+
PENDING = "Pending"
|
262
|
+
|
263
|
+
ACTIVE = "Active"
|
264
|
+
|
265
|
+
DISABLED = "Disabled"
|
266
|
+
|
267
|
+
|
268
|
+
class AttachmentResourceType(Enum):
|
269
|
+
Map = "map"
|
270
|
+
|
271
|
+
Vector = "vector"
|
272
|
+
|
273
|
+
View = "view"
|
274
|
+
|
275
|
+
|
276
|
+
class MaxLogPolicy(Enum):
|
277
|
+
OverwriteFirstLog = "OverwriteFirstLog"
|
278
|
+
|
279
|
+
IgnoreLogging = "IgnoreLogging"
|
280
|
+
|
281
|
+
|
282
|
+
class InvalidDataPolicy(Enum):
|
283
|
+
ReportToAdmin = "ReportToAdmin"
|
284
|
+
|
285
|
+
LogOnly = "LogOnly"
|
286
|
+
|
287
|
+
|
288
|
+
class LoginFailurePolicy(Enum):
|
289
|
+
BlockIPTemporarily = "BlockIPTemporarily"
|
290
|
+
|
291
|
+
DisableAccount = "DisableAccount"
|
292
|
+
|
293
|
+
|
294
|
+
class MaxConcurrentSessionPolicy(Enum):
|
295
|
+
CloseLastSession = "CloseLastSession"
|
296
|
+
|
297
|
+
CloseMostInactiveSession = "CloseMostInactiveSession"
|
298
|
+
|
299
|
+
PreventNewSession = "PreventNewSession"
|
300
|
+
|
301
|
+
|
302
|
+
class RoutingGeometryType(Enum):
|
303
|
+
geojson = "geojson"
|
304
|
+
|
305
|
+
polyline = "polyline"
|
306
|
+
|
307
|
+
polyline6= "polyline6"
|
308
|
+
|
309
|
+
|
310
|
+
class RoutingOverviewLevel(Enum):
|
311
|
+
Full = 'full'
|
312
|
+
|
313
|
+
Simplified = 'simplified'
|
314
|
+
|
315
|
+
|
316
|
+
class QueryResultType(Enum):
|
317
|
+
metadata = "metadata"
|
318
|
+
|
319
|
+
data = "data"
|
320
|
+
|
321
|
+
both = "both"
|
322
|
+
|
323
|
+
|
324
|
+
class TilesetLayerType(Enum):
|
325
|
+
Vector = "vector"
|
326
|
+
|
327
|
+
View = "view"
|
328
|
+
|
329
|
+
|
330
|
+
class FileOutputFormat(Enum):
|
331
|
+
Shapefile = "Shapefile"
|
332
|
+
|
333
|
+
GPKG = "GPKG"
|
334
|
+
|
335
|
+
GeoJSON = "GeoJSON"
|
336
|
+
|
337
|
+
CSV = "CSV"
|
338
|
+
|
339
|
+
KML = "KML"
|
340
|
+
|
341
|
+
DXF = "DXF"
|
342
|
+
|
343
|
+
|
344
|
+
class UsageScale(Enum):
|
345
|
+
Hour = 'hour'
|
346
|
+
|
347
|
+
Day = 'day'
|
348
|
+
|
349
|
+
Month = 'month'
|
350
|
+
|
351
|
+
|
352
|
+
class UsageParam(Enum):
|
353
|
+
Traffict = 'traffic'
|
354
|
+
|
355
355
|
Calls = 'calls'
|