@jupytergis/schema 0.9.1 → 0.9.2
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 +3 -3
- package/lib/processing/_generated/exportProcessingSchema.js +3 -3
- package/lib/processing/_generated/processingType.d.ts +1 -1
- package/lib/processing/_generated/processingType.js +3 -3
- package/lib/processing/_generated/processing_merge.json +31 -31
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
export * from '../../_interface/processing/dissolve';
|
|
1
2
|
export * from '../../_interface/processing/centroids';
|
|
3
|
+
export * from '../../_interface/processing/convexHull';
|
|
2
4
|
export * from '../../_interface/processing/buffer';
|
|
3
|
-
export * from '../../_interface/processing/concaveHull';
|
|
4
5
|
export * from '../../_interface/processing/boundingBoxes';
|
|
5
|
-
export * from '../../_interface/processing/
|
|
6
|
-
export * from '../../_interface/processing/dissolve';
|
|
6
|
+
export * from '../../_interface/processing/concaveHull';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
//Generated automatically please don't modify directly
|
|
2
|
+
export * from '../../_interface/processing/dissolve';
|
|
2
3
|
export * from '../../_interface/processing/centroids';
|
|
4
|
+
export * from '../../_interface/processing/convexHull';
|
|
3
5
|
export * from '../../_interface/processing/buffer';
|
|
4
|
-
export * from '../../_interface/processing/concaveHull';
|
|
5
6
|
export * from '../../_interface/processing/boundingBoxes';
|
|
6
|
-
export * from '../../_interface/processing/
|
|
7
|
-
export * from '../../_interface/processing/dissolve';
|
|
7
|
+
export * from '../../_interface/processing/concaveHull';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type ProcessingType = '
|
|
1
|
+
export type ProcessingType = 'Dissolve' | 'Centroids' | 'ConvexHull' | 'Buffer' | 'BoundingBoxes' | 'ConcaveHull';
|
|
2
2
|
export declare const processingList: string[];
|
|
@@ -1,4 +1,17 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"description": "Dissolve",
|
|
4
|
+
"name": "dissolve",
|
|
5
|
+
"operationParams": [
|
|
6
|
+
"dissolveField"
|
|
7
|
+
],
|
|
8
|
+
"label": "Dissolve",
|
|
9
|
+
"operations": {
|
|
10
|
+
"gdalFunction": "ogr2ogr",
|
|
11
|
+
"sql": "SELECT ST_Union(geometry) AS geometry, {dissolveField} FROM \"{layerName}\" GROUP BY {dissolveField}"
|
|
12
|
+
},
|
|
13
|
+
"type": "vector"
|
|
14
|
+
},
|
|
2
15
|
{
|
|
3
16
|
"description": "Centroids",
|
|
4
17
|
"name": "centroids",
|
|
@@ -10,6 +23,17 @@
|
|
|
10
23
|
},
|
|
11
24
|
"type": "vector"
|
|
12
25
|
},
|
|
26
|
+
{
|
|
27
|
+
"description": "ConvexHull",
|
|
28
|
+
"name": "convexHull",
|
|
29
|
+
"operationParams": [],
|
|
30
|
+
"label": "Convex Hull",
|
|
31
|
+
"operations": {
|
|
32
|
+
"sql": "SELECT ST_ConvexHull(geometry) AS geometry, * FROM \"{layerName}\"",
|
|
33
|
+
"gdalFunction": "ogr2ogr"
|
|
34
|
+
},
|
|
35
|
+
"type": "vector"
|
|
36
|
+
},
|
|
13
37
|
{
|
|
14
38
|
"description": "Buffer",
|
|
15
39
|
"name": "buffer",
|
|
@@ -23,20 +47,6 @@
|
|
|
23
47
|
},
|
|
24
48
|
"type": "vector"
|
|
25
49
|
},
|
|
26
|
-
{
|
|
27
|
-
"description": "ConcaveHull",
|
|
28
|
-
"name": "concaveHull",
|
|
29
|
-
"operationParams": [
|
|
30
|
-
"pctconvex",
|
|
31
|
-
"allowHoles"
|
|
32
|
-
],
|
|
33
|
-
"label": "Concave Hull",
|
|
34
|
-
"operations": {
|
|
35
|
-
"sql": "SELECT ST_ConcaveHull(geometry,{pctconvex},{allowHoles}) AS geometry, * FROM \"{layerName}\"",
|
|
36
|
-
"gdalFunction": "ogr2ogr"
|
|
37
|
-
},
|
|
38
|
-
"type": "vector"
|
|
39
|
-
},
|
|
40
50
|
{
|
|
41
51
|
"description": "BoundingBoxes",
|
|
42
52
|
"name": "boundingBoxes",
|
|
@@ -49,26 +59,16 @@
|
|
|
49
59
|
"type": "vector"
|
|
50
60
|
},
|
|
51
61
|
{
|
|
52
|
-
"description": "
|
|
53
|
-
"name": "
|
|
54
|
-
"operationParams": [],
|
|
55
|
-
"label": "Convex Hull",
|
|
56
|
-
"operations": {
|
|
57
|
-
"sql": "SELECT ST_ConvexHull(geometry) AS geometry, * FROM \"{layerName}\"",
|
|
58
|
-
"gdalFunction": "ogr2ogr"
|
|
59
|
-
},
|
|
60
|
-
"type": "vector"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"description": "Dissolve",
|
|
64
|
-
"name": "dissolve",
|
|
62
|
+
"description": "ConcaveHull",
|
|
63
|
+
"name": "concaveHull",
|
|
65
64
|
"operationParams": [
|
|
66
|
-
"
|
|
65
|
+
"pctconvex",
|
|
66
|
+
"allowHoles"
|
|
67
67
|
],
|
|
68
|
-
"label": "
|
|
68
|
+
"label": "Concave Hull",
|
|
69
69
|
"operations": {
|
|
70
|
-
"
|
|
71
|
-
"
|
|
70
|
+
"sql": "SELECT ST_ConcaveHull(geometry,{pctconvex},{allowHoles}) AS geometry, * FROM \"{layerName}\"",
|
|
71
|
+
"gdalFunction": "ogr2ogr"
|
|
72
72
|
},
|
|
73
73
|
"type": "vector"
|
|
74
74
|
}
|