You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2020/02/16 21:15:16 UTC

[incubator-streampipes-extensions] branch dev updated (cb6f676 -> 45c06d4)

This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git.


    from cb6f676  Merge pull request #4 from giviflo/feature/base_implementation
     new f27df33  Merge branch 'feature/base_implementation' of https://github.com/giviflo/incubator-streampipes-extensions into dev
     new 0e3f247  Merge branch 'dev' of github.com:apache/incubator-streampipes-extensions into dev
     new 45c06d4  Remove console logs from code

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 streampipes-processors-geo-jvm/development/env          | 17 ++++++++++++++++-
 .../geo/jvm/jts/processor/latLngToGeo/LatLngToGeo.java  |  1 -
 .../geo/jvm/jts/processor/setEPSG/SetEPSG.java          |  1 -
 3 files changed, 16 insertions(+), 3 deletions(-)


[incubator-streampipes-extensions] 02/03: Merge branch 'dev' of github.com:apache/incubator-streampipes-extensions into dev

Posted by ze...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git

commit 0e3f247bc7686e59221cae19eea8aab7e678a7b7
Merge: f27df33 cb6f676
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Sun Feb 16 22:13:28 2020 +0100

    Merge branch 'dev' of github.com:apache/incubator-streampipes-extensions into dev



[incubator-streampipes-extensions] 03/03: Remove console logs from code

Posted by ze...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git

commit 45c06d4b9f00f3ea1947f68883e49d3851f3b27c
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Sun Feb 16 22:14:49 2020 +0100

    Remove console logs from code
---
 streampipes-processors-geo-jvm/development/env          | 17 ++++++++++++++++-
 .../geo/jvm/jts/processor/latLngToGeo/LatLngToGeo.java  |  1 -
 .../geo/jvm/jts/processor/setEPSG/SetEPSG.java          |  1 -
 3 files changed, 16 insertions(+), 3 deletions(-)

diff --git a/streampipes-processors-geo-jvm/development/env b/streampipes-processors-geo-jvm/development/env
index 2d604a2..762f975 100644
--- a/streampipes-processors-geo-jvm/development/env
+++ b/streampipes-processors-geo-jvm/development/env
@@ -1,4 +1,19 @@
+# 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.
+
 # Those parameters are used by IntelliJ to set the default consul parameters for development
 SP_PORT=8005
-SP_HOST=172.17.0.1
+SP_HOST=localhost
 SP_DEBUG=true
\ No newline at end of file
diff --git a/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/processor/latLngToGeo/LatLngToGeo.java b/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/processor/latLngToGeo/LatLngToGeo.java
index 3cb6d1a..25bbf6a 100755
--- a/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/processor/latLngToGeo/LatLngToGeo.java
+++ b/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/processor/latLngToGeo/LatLngToGeo.java
@@ -51,7 +51,6 @@ public class LatLngToGeo implements EventProcessor<LatLngToGeoParameter> {
         if (!geom.isEmpty()){
             in.addField(LatLngToGeoController.WKT, geom.toString());
             out.collect(in);
-            System.out.println(in.getRaw());
         } else {
             LOG.warn("An empty point geometry in " + LatLngToGeoController.EPA_NAME + " is created due" +
                 "invalid input field. Latitude: " + lat + "Longitude: " + lng);
diff --git a/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/processor/setEPSG/SetEPSG.java b/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/processor/setEPSG/SetEPSG.java
index c955ea2..71dc243 100755
--- a/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/processor/setEPSG/SetEPSG.java
+++ b/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/processor/setEPSG/SetEPSG.java
@@ -45,7 +45,6 @@ public class SetEPSG implements EventProcessor<SetEpsgParameter> {
     public void onEvent(Event in, SpOutputCollector out)  {
         in.addField(SetEpsgController.EPSG, epsg_value);
         out.collect(in);
-        System.out.println(in.getRaw());
     }
 
     @Override


[incubator-streampipes-extensions] 01/03: Merge branch 'feature/base_implementation' of https://github.com/giviflo/incubator-streampipes-extensions into dev

Posted by ze...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git

commit f27df33fbf9fb20389c1d45c404956a228b1baca
Merge: 0d976c1 d7f4371
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Sun Feb 16 20:47:11 2020 +0100

    Merge branch 'feature/base_implementation' of https://github.com/giviflo/incubator-streampipes-extensions into dev

 streampipes-processors-geo-jvm/development/env     |  22 +----
 streampipes-processors-geo-jvm/pom.xml             |   6 ++
 .../streampipes/processors/geo/jvm/GeoJvmInit.java |  15 ++-
 .../geo/jvm/jts/helper/SpGeometryBuilder.java      |  95 +++++++++++++++++++
 .../jvm/jts/processor/latLngToGeo/LatLngToGeo.java |  67 ++++++++++++++
 .../latLngToGeo/LatLngToGeoController.java         | 103 +++++++++++++++++++++
 .../latLngToGeo/LatLngToGeoParameter.java          |  49 ++++++++++
 .../geo/jvm/jts/processor/setEPSG/SetEPSG.java     |  55 +++++++++++
 .../jts/processor/setEPSG/SetEpsgController.java   |  77 +++++++++++++++
 .../jts/processor/setEPSG/SetEpsgParameter.java    |  37 ++++++++
 .../documentation.md                               |  67 ++++++++++++++
 .../icon.png                                       | Bin 0 -> 19124 bytes
 .../strings.en                                     |   6 ++
 .../documentation.md                               |  53 +++++++++++
 .../icon.png                                       | Bin 0 -> 4831 bytes
 .../strings.en                                     |   6 ++
 16 files changed, 634 insertions(+), 24 deletions(-)