flomickl commented on code in PR #1303:
URL: https://github.com/apache/streampipes/pull/1303#discussion_r1111296215


##########
streampipes-extensions/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/processor/buffergeometry/BufferGeomProcessor.java:
##########
@@ -0,0 +1,224 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+package org.apache.streampipes.processors.geo.jvm.jts.processor.buffergeometry;
+
+import org.apache.streampipes.commons.exceptions.SpRuntimeException;
+import org.apache.streampipes.model.DataProcessorType;
+import org.apache.streampipes.model.graph.DataProcessorDescription;
+import org.apache.streampipes.model.runtime.Event;
+import org.apache.streampipes.model.schema.PropertyScope;
+import org.apache.streampipes.processors.geo.jvm.jts.helper.SpGeometryBuilder;
+import 
org.apache.streampipes.processors.geo.jvm.jts.helper.SpReprojectionBuilder;
+import org.apache.streampipes.processors.geo.jvm.jts.helper.buffer.BufferSide;
+import org.apache.streampipes.processors.geo.jvm.jts.helper.buffer.CapStyle;
+import org.apache.streampipes.processors.geo.jvm.jts.helper.buffer.JoinStyle;
+import 
org.apache.streampipes.processors.geo.jvm.jts.helper.buffer.SpBufferBuilder;
+import org.apache.streampipes.sdk.builder.ProcessingElementBuilder;
+import org.apache.streampipes.sdk.builder.StreamRequirementsBuilder;
+import org.apache.streampipes.sdk.helpers.EpProperties;
+import org.apache.streampipes.sdk.helpers.EpRequirements;
+import org.apache.streampipes.sdk.helpers.Labels;
+import org.apache.streampipes.sdk.helpers.Locales;
+import org.apache.streampipes.sdk.helpers.Options;
+import org.apache.streampipes.sdk.helpers.OutputStrategies;
+import org.apache.streampipes.sdk.utils.Assets;
+import org.apache.streampipes.wrapper.context.EventProcessorRuntimeContext;
+import org.apache.streampipes.wrapper.routing.SpOutputCollector;
+import org.apache.streampipes.wrapper.standalone.ProcessorParams;
+import org.apache.streampipes.wrapper.standalone.StreamPipesDataProcessor;
+
+import org.locationtech.jts.geom.Geometry;
+import org.opengis.util.FactoryException;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class BufferGeomProcessor extends StreamPipesDataProcessor {
+  public static final String GEOM_KEY = "geometry-key";
+  public static final String EPSG_KEY = "epsg-key";
+  public static final String CAP_KEY = "cap-style-key";
+  public static final String SEGMENTS_KEY = "segments-key";
+  public static final String SIMPLIFY_FACTOR_KEY = "simplify-factor-key";
+  public static final String DISTANCE_KEY = "distance-key";
+  public static final String JOIN_KEY = "join-style-key";
+  public static final String MITRE_LIMIT_KEY = "mitre-limit-key";
+  public static final String SIDE_KEY = "side-key";
+  public static final String GEOM_RUNTIME = "geometry-buffer";
+  public static final String EPSG_RUNTIME = "epsg-buffer";
+  private String geometryMapper;
+  private String epsgMapper;
+  private Integer capStyle;
+  private Integer joinStyle;
+  private Integer side;
+  private Double mitreLimit;
+  private Integer segments;
+  private Double simplifyFactor;
+  private Double distance;
+  private Boolean singleSided;
+  private static final Logger LOG = 
LoggerFactory.getLogger(BufferGeomProcessor.class);
+
+  @Override
+  public DataProcessorDescription declareModel() {
+    return 
ProcessingElementBuilder.create("org.apache.streampipes.processors.geo.jvm.jts.processor.buffergeometry")
+        .category(DataProcessorType.GEO)
+        .withAssets(Assets.DOCUMENTATION, Assets.ICON)
+        .withLocales(Locales.EN)
+        .requiredStream(StreamRequirementsBuilder
+            .create()
+            .requiredPropertyWithUnaryMapping(
+                
EpRequirements.domainPropertyReq("http://www.opengis.net/ont/geosparql#Geometry";),
+                Labels.withId(GEOM_KEY),
+                PropertyScope.MEASUREMENT_PROPERTY)
+            .requiredPropertyWithUnaryMapping(
+                
EpRequirements.domainPropertyReq("http://data.ign.fr/def/ignf#CartesianCS";),
+                Labels.withId(EPSG_KEY),
+                PropertyScope.MEASUREMENT_PROPERTY)
+            .build())
+        .outputStrategy(OutputStrategies.append(
+                EpProperties.stringEp(
+                    Labels.withId(GEOM_KEY),
+                    GEOM_RUNTIME,
+                    "http://www.opengis.net/ont/geosparql#Geometry";
+                ),
+                EpProperties.numberEp(
+                    Labels.withId(EPSG_KEY),
+                    EPSG_RUNTIME,
+                    "http://data.ign.fr/def/ignf#CartesianCS";
+                )
+            )
+        )
+        .requiredSingleValueSelection(
+            Labels.withId(CAP_KEY),
+            Options.from(
+                CapStyle.Square.name(),
+                CapStyle.Flat.name(),
+                CapStyle.Round.name())
+        )
+        .requiredSingleValueSelection(
+            Labels.withId(JOIN_KEY),
+            Options.from(
+                JoinStyle.Bevel.name(),
+                JoinStyle.Mitre.name(),
+                JoinStyle.Round.name())
+        )
+        .requiredSingleValueSelection(
+            Labels.withId(SIDE_KEY),
+            Options.from(
+                BufferSide.Both.name(),
+                BufferSide.Left.name(),
+                BufferSide.Right.name())
+        )
+        .requiredIntegerParameter(
+            Labels.withId(MITRE_LIMIT_KEY),
+            5)
+        .requiredIntegerParameter(
+            Labels.withId(SEGMENTS_KEY),
+            8
+        )
+        .requiredFloatParameter(
+            Labels.withId(SIMPLIFY_FACTOR_KEY),
+            0.01f
+        )
+        .requiredFloatParameter(
+            Labels.withId(DISTANCE_KEY)
+        )
+        .build();
+  }
+
+  @Override
+  public void onInvocation(ProcessorParams parameters, SpOutputCollector 
spOutputCollector,
+                           EventProcessorRuntimeContext runtimeContext) throws 
SpRuntimeException {
+
+    try {
+      if (SpReprojectionBuilder.isSisConfigurationValid()){
+        LOG.info("SIS DB Settings successful checked ");
+      } else {
+        LOG.warn("The required EPSG database is not imported");

Review Comment:
   This is the same behavior as already in the Reprojection processor. This 
processor requires the EPSG Setup.
   That is why there is an E in the symbol. The user documentation is still 
missing on the website, so the URL cannot be referenced here. So this is a 
future to do.
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to