Skip to content

fogsy-io/dev-camp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Prerequisites

  • OS:
    • Linux
    • OSX
      • Windows10
  • Docker - Docker Compose
  • Java - Maven
  • IDE (IntelliJ)

1. Install StreamPipes

  • Download the StreamPipes installer from GitHub
  • Open terminal and navigate to the installer directory
  • Select the folder according to your operating system:
    • Windows: "windows10"
      • Linux / OSX: "osx_linux"
  • Run command ./streampipes start

2. Build your first pipeline

Create a live monitoring system for the International Space Station (ISS)

  • Link für ISS Daten:
  • Download ISS adapter template (File: iss_template.json)
  • Go to StreamPipes Connect an click on "Upload Adapter Template" (Top right corner)
  • Select the adapter in the UI and start it
  • Navigate to the Pipeline Editor
  • The ISS data source is now listed in the Data Streams tab

3. Develop a new Processor

  • Create a folder and run the following command:
mvn archetype:generate                                           \
  -DarchetypeGroupId=org.streampipes                             \
  -DarchetypeArtifactId=streampipes-archetype-pe-processors-jvm  \
  -DarchetypeVersion=0.61.0
  • Settings:

    • Group id: org.streampipes.example
    • Artifact id: DistanceCalculation
    • Version: Hit Enter
    • Package: Hit Enter
    • Last Step: Y
  • Open new Project in IDE (IntelliJ)

Code to calculate distance

Copy this code snippet into the class Example:

@Override
  public void onEvent(Event event, SpOutputCollector out) {

    float latitude = event.getFieldByRuntimeName("latitude").getAsPrimitive().getAsFloat();
    float longitude = event.getFieldByRuntimeName("longitude").getAsPrimitive().getAsFloat();

    float karlsruhe_latitude = 49.00937f;
    float karlsruhe_longitude = 8.40444f;

    double distance = CalculateDistance.dist(latitude, longitude, karlsruhe_latitude, karlsruhe_longitude);

    event.addField("distance_to_iss", distance);

    out.collect(event);
  }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages