diff --git a/common/plugins/eu.esdihumboldt.hale.common.align/help/formattedString/Formatted_string.png b/common/plugins/eu.esdihumboldt.hale.common.align/help/formattedString/Formatted_string.png new file mode 100644 index 0000000000..547f25277e Binary files /dev/null and b/common/plugins/eu.esdihumboldt.hale.common.align/help/formattedString/Formatted_string.png differ diff --git a/common/plugins/eu.esdihumboldt.hale.common.align/help/formattedString/Formatted_string_mapping.png b/common/plugins/eu.esdihumboldt.hale.common.align/help/formattedString/Formatted_string_mapping.png new file mode 100644 index 0000000000..0d334ecfba Binary files /dev/null and b/common/plugins/eu.esdihumboldt.hale.common.align/help/formattedString/Formatted_string_mapping.png differ diff --git a/common/plugins/eu.esdihumboldt.hale.common.align/help/formattedString/help.xhtml b/common/plugins/eu.esdihumboldt.hale.common.align/help/formattedString/help.xhtml new file mode 100644 index 0000000000..5714c2dbfc --- /dev/null +++ b/common/plugins/eu.esdihumboldt.hale.common.align/help/formattedString/help.xhtml @@ -0,0 +1,21 @@ + + + + +Formatted String + + +
+

Example mapping:

+

+ The formatted string function enables users to access attribute values and project variables to create concatenated string values. Enter text in the text field and double click + on any available attribute value displayed in the function dialog to add the value. Alternatively press Ctrl+Space to access available variables and project variables. The entered values are concatenated to create string values in the target attribute.
+
+
+
+
+
+

+
+ + diff --git a/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/aggregate/aggregate.png b/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/aggregate/aggregate.png new file mode 100644 index 0000000000..d1e485323c Binary files /dev/null and b/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/aggregate/aggregate.png differ diff --git a/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/aggregate/help.xhtml b/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/aggregate/help.xhtml new file mode 100644 index 0000000000..5b99b84907 --- /dev/null +++ b/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/aggregate/help.xhtml @@ -0,0 +1,24 @@ + + + + +Aggregate + + +
+

Example mapping:

+

+The aggregate function combines the input source features to create MultiLineString, MultiPoint or MultiPolygon features. The aggregate function performs a check to ensure that the input features have the same source CRS. In the cases of input multi geometries, a new multi geometry is created. +When different input geometry types are aggregated, you will receive a warning in the transformation log but the function will combine the geometries in a generic GeometryCollection. +In the case of lines the aggregate function tries to combine them to create a MultiLineString in which the individual lines are connected (i.e. end vertex of one line is the start vertex of the next one). +If this is not possible there is no guaranteed order in the MultiLineString.
+
+The aggregate function is often used in combination with the type level merge function. This is necessary to combine the geometries to create multi features and avoid selecting just one geometry from the merged geometries. +
+
+
+
+

+
+ + diff --git a/common/plugins/eu.esdihumboldt.hale.common.align/help/interiorPoint/help.xhtml b/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/interiorPoint/help.xhtml similarity index 85% rename from common/plugins/eu.esdihumboldt.hale.common.align/help/interiorPoint/help.xhtml rename to cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/interiorPoint/help.xhtml index 09b06ec6c3..e4084526f2 100644 --- a/common/plugins/eu.esdihumboldt.hale.common.align/help/interiorPoint/help.xhtml +++ b/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/interiorPoint/help.xhtml @@ -8,11 +8,11 @@

Example mapping:

-Lines
+Lines

The interior point algorithm finds an interior vertex which is closest to the centroid of the line string.

-Areas
+LinesAreas

The interior point algorithm computes sections along a horizontal scan line in the interior of the polygon. The final interior point is the midpoint of the widest computed section in the interior of the polygon. For properties with multiple geometries, the Interior Point function selects the first geometry. @@ -21,7 +21,7 @@ For properties with multiple geometries, the Interior Point function selects the Source:JTS Technical Documentation

-
+

diff --git a/common/plugins/eu.esdihumboldt.hale.common.align/help/interiorPoint/interiorPoint.png b/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/interiorPoint/interiorPoint.png similarity index 100% rename from common/plugins/eu.esdihumboldt.hale.common.align/help/interiorPoint/interiorPoint.png rename to cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/interiorPoint/interiorPoint.png diff --git a/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/spatialJoin/help.xhtml b/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/spatialJoin/help.xhtml new file mode 100644 index 0000000000..9a86259951 --- /dev/null +++ b/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/spatialJoin/help.xhtml @@ -0,0 +1,52 @@ + + + + +Spatial Join + + +
+

Example mapping:

+

+Spatial joins can join multiple datasets together based on the spatial relationship between geometries. +Spatial joins support the relation types contains, covered by, covers, crosses, equals, intersects, overlaps, touches, and within.
+
+Spatial joins are implemented based on the DE-9IM model.
+
+CONTAINS: Every point of the other geometry is a point of this geometry, and the interiors of the two geometries have at least one point in common. Geometries do not contain their boundary. +if a geometry A is a subset of the points in the boundary of a geometry B, B.contains(A) = false. +CONTAINS is the converse of WITHIN.
+
+COVERED BY: Every point of this geometry is a point of the other geometry. +This predicate is similar to WITHIN but is more inclusive (i.e. returns true for more cases). +COVEREDBY is the converse of COVERS
+
+COVERS: Every point of the other geometry is a point of this geometry. This predicate is similar to CONTAINS but is more inclusive (i.e. returns true for more cases). Unlike CONTAINS it does not distinguish between points in the boundary and in the interior of geometries. For most situations, covers should be used in preference to contains. +COVERS is the converse of COVEREDBY.
+
+CROSSES: The geometries have some but not all interior points in common.
+
+EQUALS: Tests whether this geometry is topologically equal to the argument geometry.
+
+INTERSECTS: The geometries have at least one point in common.
+
+OVERLAPS: The geometries have at least one point each not shared by the other (or equivalently neither covers the other), they have the same dimension, and the intersection of the interiors of the two geometries has the same dimension as the geometries themselves.
+
+TOUCHES: The geometries have at least one point in common, but their interiors do not intersect.
+
+WITHIN: Every point of this geometry is a point of the other geometry, and the interiors of the two geometries have at least one point in common. The boundary of the geometry is not within the geometry. +If a geometry A is a subset of the points in the boundary of a geometry B, A.within(B) = false. +WITHIN is converse of CONTAINS
+
+Source:JTS Technical Documentation
+
+ +
+
+
+
+

+
+ + diff --git a/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/spatialJoin/spatial_join.png b/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/spatialJoin/spatial_join.png new file mode 100644 index 0000000000..f99836f537 Binary files /dev/null and b/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/spatialJoin/spatial_join.png differ diff --git a/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/spatialJoin/spatial_join_mapping.png b/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/spatialJoin/spatial_join_mapping.png new file mode 100644 index 0000000000..983c070b3d Binary files /dev/null and b/cst/plugins/eu.esdihumboldt.cst.functions.geometric/help/spatialJoin/spatial_join_mapping.png differ diff --git a/cst/plugins/eu.esdihumboldt.cst.functions.geometric/plugin.xml b/cst/plugins/eu.esdihumboldt.cst.functions.geometric/plugin.xml index 3278d27058..e8c15150cc 100644 --- a/cst/plugins/eu.esdihumboldt.cst.functions.geometric/plugin.xml +++ b/cst/plugins/eu.esdihumboldt.cst.functions.geometric/plugin.xml @@ -253,6 +253,7 @@ category="eu.esdihumboldt.cst.functions.geometric" description="Aggregate similar input geometries" icon="icons/geometry.png" + help="help/aggregate/help.xhtml" identifier="eu.esdihumboldt.cst.functions.geometric.aggregate" name="Aggregate"> @@ -325,6 +326,7 @@ cellExplanation="eu.esdihumboldt.cst.functions.geometric.interiorpoint.InteriorPointExplanation" description="Computes an interior point of a geometry (up to 2D). An interior point is guaranteed to lie in the interior of the geometry, if it is possible to calculate such a point exactly. Otherwise, the point may lie on the boundary of the geometry (e.g. if the geometry is a line)." icon="icons/geometry.png" + help="help/interiorPoint/help.xhtml" identifier="eu.esdihumboldt.cst.functions.geometric.interiorPoint" name="Interior Point"> @@ -347,6 +349,7 @@