@jupytergis/schema 0.8.0 → 0.8.1
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.
- package/lib/processing/_generated/exportProcessingSchema.d.ts +2 -2
- package/lib/processing/_generated/exportProcessingSchema.js +2 -2
- package/lib/processing/_generated/processingType.d.ts +1 -1
- package/lib/processing/_generated/processingType.js +2 -2
- package/lib/processing/_generated/processing_merge.json +16 -16
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
export * from '../../_interface/processing/centroids';
|
|
1
2
|
export * from '../../_interface/processing/buffer';
|
|
2
3
|
export * from '../../_interface/processing/concaveHull';
|
|
3
|
-
export * from '../../_interface/processing/
|
|
4
|
+
export * from '../../_interface/processing/boundingBoxes';
|
|
4
5
|
export * from '../../_interface/processing/convexHull';
|
|
5
6
|
export * from '../../_interface/processing/dissolve';
|
|
6
|
-
export * from '../../_interface/processing/boundingBoxes';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
//Generated automatically please don't modify directly
|
|
2
|
+
export * from '../../_interface/processing/centroids';
|
|
2
3
|
export * from '../../_interface/processing/buffer';
|
|
3
4
|
export * from '../../_interface/processing/concaveHull';
|
|
4
|
-
export * from '../../_interface/processing/
|
|
5
|
+
export * from '../../_interface/processing/boundingBoxes';
|
|
5
6
|
export * from '../../_interface/processing/convexHull';
|
|
6
7
|
export * from '../../_interface/processing/dissolve';
|
|
7
|
-
export * from '../../_interface/processing/boundingBoxes';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type ProcessingType = '
|
|
1
|
+
export type ProcessingType = 'Centroids' | 'Buffer' | 'ConcaveHull' | 'BoundingBoxes' | 'ConvexHull' | 'Dissolve';
|
|
2
2
|
export declare const processingList: string[];
|
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"description": "Centroids",
|
|
4
|
+
"name": "centroids",
|
|
5
|
+
"operationParams": [],
|
|
6
|
+
"label": "Centroids",
|
|
7
|
+
"operations": {
|
|
8
|
+
"gdalFunction": "ogr2ogr",
|
|
9
|
+
"sql": "SELECT ST_Centroid(geometry) AS geometry, * FROM \"{layerName}\""
|
|
10
|
+
},
|
|
11
|
+
"type": "vector"
|
|
12
|
+
},
|
|
2
13
|
{
|
|
3
14
|
"description": "Buffer",
|
|
4
15
|
"name": "buffer",
|
|
@@ -27,13 +38,13 @@
|
|
|
27
38
|
"type": "vector"
|
|
28
39
|
},
|
|
29
40
|
{
|
|
30
|
-
"description": "
|
|
31
|
-
"name": "
|
|
41
|
+
"description": "BoundingBoxes",
|
|
42
|
+
"name": "boundingBoxes",
|
|
32
43
|
"operationParams": [],
|
|
33
|
-
"label": "
|
|
44
|
+
"label": "Bounding Boxes",
|
|
34
45
|
"operations": {
|
|
35
|
-
"
|
|
36
|
-
"
|
|
46
|
+
"sql": "SELECT ST_Envelope(geometry) AS geometry, * FROM \"{layerName}\"",
|
|
47
|
+
"gdalFunction": "ogr2ogr"
|
|
37
48
|
},
|
|
38
49
|
"type": "vector"
|
|
39
50
|
},
|
|
@@ -60,16 +71,5 @@
|
|
|
60
71
|
"sql": "SELECT ST_Union(geometry) AS geometry, {dissolveField} FROM \"{layerName}\" GROUP BY {dissolveField}"
|
|
61
72
|
},
|
|
62
73
|
"type": "vector"
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
"description": "BoundingBoxes",
|
|
66
|
-
"name": "boundingBoxes",
|
|
67
|
-
"operationParams": [],
|
|
68
|
-
"label": "Bounding Boxes",
|
|
69
|
-
"operations": {
|
|
70
|
-
"sql": "SELECT ST_Envelope(geometry) AS geometry, * FROM \"{layerName}\"",
|
|
71
|
-
"gdalFunction": "ogr2ogr"
|
|
72
|
-
},
|
|
73
|
-
"type": "vector"
|
|
74
74
|
}
|
|
75
75
|
]
|