Git Product home page Git Product logo

car-data-management's Introduction

Context Mapping and Driver Behavior tutorial, Part 1: Sending car probe data and issuing analysis requests

The first part of this tutorial describes how you can set up your Bluemix environment to use the following services for simulating and analyzing driver behavior.

  • Watson IoT Platform uses the MQTT protocol to retrieve car probe data from a simulated car, and then passes that data to the Node-RED service. Car probe data is a sequence of car probes that are ordered by timestamp. A single car probe consists of the heading, latitude, longitude, speed, and timestamp retrieved from the car for each journey that is recorded.
  • Node-RED Starter creates work flows between components of the sample application. The Node-RED visual tool helps you to easily understand the work flows.
  • Watson IoT Driver Behavior gives you an insight into the behavior of a driver during the simulated journey from the associated car probe data. The Driver Behavior APIs let you use both the context data and the car probe data to analyze the journey and to identify the driving behaviors, such as:
  • Speeding
  • Frequent acceleration and braking
  • Harsh acceleration and braking
  • Sharp turns
  • Watson IoT Context Mapping provides a service API from which you can extract further information from the car probe data, such as:
  • The exact location of the car on a mapped road, because the location data from the car is not accurate
  • The road ID, which is called link_id in APIs, of the road that the car traveled

Overview

In part 1 of this tutorial, you will learn the following:

  1. How to set up Driver Behavior and Context Mapping.
  2. The types of car data that is needed to analyze the behavior of a driver.
  3. How to send the car probe data to the Context Mapping and Driver Behavior services by using the Watson IoT Platform and Node-RED services.
  4. How to analyze the behavior of a driver.
    Note: After you send a job request by using the Driver Behavior API, the job ID is generated, which you will need in part 2 of this tutorial.

In part 2 of this tutorial, you will learn how to see the results of the analysis on a map user interface by hovering the cursor over points on the map.

For "Tutorial part 2: Displaying the analysis result on a Java client map UI", refer to this GitHub repository

Process

The following steps provide a sequential outline of how your application interacts with the Driver Behavior API:

Note: Steps 1 - 4 are explained below, and steps 5 - 7 are explained in part 2 of the tutorial.

  1. The Java client that simulates a car sends car probe data from to the Watson IoT Platform instance.
  2. The application receives the car probe data and then adds more data to the car probe data by using the Context Mapping API.
    • Gets map matched car probe data by using the mapMatching API of Context Mapping.
      • [Request] Car probe data
      • [Response] Map matched car probe data
    • Gets road type data by using the getLinkInformation API of Context Mapping.
      • [Request] Road link ID
      • [Response] Road type
  3. The application sends car probe data to the store so that it can then be analyzed by using sendCarProbe API of Driver Behavior.
    • [Request] Map matched car probe data and Road type
  4. The application sends a job request to analyze car probe data by using the sendJobRequest API of Driver Behavior.
    • [Request] Date from and to
    • [Response] Job ID
  5. The application gets the analyzed trip summary list by using the getAnalyzedTripSummaryList API of Driver Behavior.
    • [Request] Job ID
    • [Response] List of analyzed trip summary
  6. The application gets the analyzed trip information by using the getAnalyzedTripInfo API of Driver Behavior.
  • [Request] Trip UUID
  • [Response] Details of the analyzed trip
  1. The application displays the analyzed results on a map UI from the Java client.

Architecture

IoT Context Mapping and IoT Driver Behavior Architecture Diagram
Architecture diagram of the Watson IoT Context Mapping and Driver Behavior services

Before you begin

Bluemix access

If you do not already have a Bluemix ID, click the following link to register: https://console.ng.bluemix.net/registration/.

System requirements

To complete the tutorial, the following prerequisite software must be installed on your system:

Deliverables

When you complete part 1 of this tutorial, the following components are downloaded:

File Description
SendCarProbe.java Sample Java to send car probe data to Watson IoT Platform
device.prop A configuration file of SendCarProbe.java, which is used to load the credentials of Watson IoT Platform
nodered-workflow-send-car-probe-data.json Node-RED flow to receive car probe data from Watson IoT Platform and to store the data into the Driver Behavior service
nodered-workflow-send-job-request.json Node-RED flow to send a driving behavior analysis request
CarProbeSample.json Sample car probe data

Bluemix applications and services

When you complete the instructions in this tutorial, the following services will be instantiated in your Bluemix organization:

Tutorial Part 1: Sending car probe data and issuing analysis requests

To complete part 1 of the tutorial, you must complete the following tasks:

  1. Setting up Context Mapping.
  2. Setting up Driver Behavior.
  3. Creating the Node-RED application.
  4. Setting up a Watson IoT Platform instance.
  5. Setting up the Node-RED workflow for sending car probe data.
  6. Setting up the Node-RED workflow for sending analysis job requests.
  7. Setting up the Java client of the Watson IoT Platform.
  8. Running the Send Car Probe Data sample.
  9. Running the Send Analysis Job Request sample.
  10. Optional: Setting up and running the Watson IoT Platform Java client by using Eclipse.

Step 1: Setting up Context Mapping

This section explains how to subscribe Context Mapping that is required for this sample application.

  1. Go to the IoT Context Mapping service in the Bluemix catalog.
  2. Select the Free plan option, enter the required information, and then click CREATE.
    WARNING: If you do not select the Free plan option, there could be a payment charge for using this service.

1. Make a note of the following information for your service instance, as you will need this information later on in the process.
  • Tenant ID
  • Username
  • Password

Step 2: Setting up Driver Behavior

Complete the following steps to set up and subscribe the Driver Behavior service:

  1. Go to the IoT Driver Behavior service in the Bluemix catalog.
  2. Select the Free plan option, enter the required information, and then click CREATE.
    WARNING: If you do not select the Free plan option, there could be a payment charge for using this service.

  1. Make a note of the following information for your service instance, as you will need this information later on in the process.

Step 3: Creating the Node-RED application

Complete the following steps to set up and subscribe the required Node-RED application:

  1. Go to the Node-RED Starter boilerplate in the Bluemix catalog.
  2. Enter a name, for example, watson-iot-sample.
  3. Default on SDK for Node.js, and select Shared on Cloudant NoSQL DB.
  4. Click SDK for Node.js service, and then select Default plan on Pick a Plan list.
  5. Click Cloudant NoSQL DB service, and then select Default plan on Pick a Plan list.
  6. Click CREATE.
    WARNING: If you exceed the threshold levels that are described in this plan, you could be required to pay further charges.

Step 4: Set up the Watson IoT Platform instance

Complete the following steps to subscribe the required Watson IoT Platform.

  1. Go to the IoT Platform service in the Bluemix catalog.
  2. Under App heading, select the watson-iot-sample that you created earlier in step 3.
  3. Select the Free plan option, enter the required information, and then click CREATE.
    WARNING: If you do not select the Free plan option, there could be a payment charge for using this service.

  1. When prompted, click RESTAGE.

  1. Go to your Internet of Things Platform service and click Launch dashboard.

  1. Click Add Device. Step 5-11 is for registering Vehicle type for sample application in Watson IoT Platform.

  1. Click Create device type.

  1. Click Create device type again.

  1. Enter vehicle as the Name, and then click Next.

  1. Click Next.

  1. Click Next again.

  1. Click Create.

  1. Click vehicle as device type, followed by Next. Steps 13-18 are for registering a single sample vehicle for the sample application in Watson IoT Platform.

  1. For Device ID, specify vehicle-sample, and then click Next.

  1. Click Next.

  1. Click Next.

  1. Click Add.

  1. Make a note of the Organization ID and Authentication Token as you will need these credentials later on in the process when you set up the sample application.

Step 5: Setting up the Node-RED workflow for sending car probe data

The Node-RED workflow receives car probe data through the Watson IoT Platform. The workflow adds more properties to the car probe data by calling the Context Mapping API and storing the car probe data into Driver Behavior to be analyzed.

  1. Return to the Bluemix dashboard, go to your Node-RED application, and then click the Routes link.

  1. Click Go to your Node-RED flow editor.

  1. Open the menu on the upper right, click Flows > Rename, and rename the flow to Send Car Probe Data.

  1. Go back to the menu, and click Import > Clipboard.

  1. Copy the content from nodered-workflow-send-car-probe-data.json and click OK.

  1. Double-click the Common Config node.

  1. Set the values for msg.mapTenantId and msg.driverTenantId.
    • msg.mapTenantId: Tenant ID from Context Mapping
    • msg.driverTenantId: Tenant ID from Driver Behavior

  1. Double-click the mapMatching node.

  1. Select Use basic authentication? and enter the following credentials:
    • Username: Username from Context Mapping
    • Password: Password from Context Mapping

  1. Double-click the getLinkInformation node.

  1. Select Use basic authentication? and enter the following credentials:

    • Username: Username from Context Mapping
    • Password: Password from Context Mapping
  2. Double-click carProbe.

  1. Select Use basic authentication? and enter the following credentials:

    • Username: Username from Driver Behavior
    • Password: Password from Driver Behavior
  2. Click Deploy and wait for the Successfully deployed notification.

Step 6: Setting up the Node-RED workflow for sending analysis job requests

This Node-RED workflow requests an analysis job for the stored car probe data.

  1. Create another new tab in the Nod-RED editor by clicking the upper right + icon, and rename the tab to Send Job Request.

  1. Click Import > Clipboard.

  1. Copy the content from nodered-workflow-send-job-request.json and click OK.

  2. Double-click Config.

  1. Enter a value for msg.driverTenantId.
    • msg.driverTenantId: Tenant ID from Driver Behavior

  1. Double-click sendJobRequest.

  1. Select Use basic authentication? enter the following credentials:
    • Username: Username from Driver Behavior
    • Password: Password from Driver Behavior

  1. Click Deploy and wait for the Successfully deployed notification.

Step 7: Setting up the Java client of the Watson IoT Platform

Complete the following instructions to set up and configure the Java client. Alternatively, you can skip step 7 and set up and run IoT Platform Java client using Eclipse instead.

The Java client that you are about to install, loads sample car probe data from a file named CarProbeSample.json, and then sends the data to the Watson IoT Platform instance by using the Watson IoT Platform Java API com.ibm.iotf.client.device.DeviceClient. The file device.prop provides the configuration for the Watson IoT Platform Java API. The car probe data is received by a Node-RED workflow through threshold Watson IoT Platform and is processed by the workflow logic.

  1. Clone the car-data-management project by using git clone, as follows:

    git clone https://github.com/IBM-Bluemix/car-data-management
    
  2. Navigate to the car-data-management project.

    cd car-data-management
    
  3. Run the maven build as follows to build the Java client.

    mvn clean compile
    

The Java Client library for the Watson IoT Platform and all required dependencies are downloaded and the build process starts.

Step 8: Running the Send Car Probe Data sample

  1. Edit the config/device.prop file, and add the Organization-ID and Authentication-Token, which you recorded in the previous step section.

  2. Run the sample by using the following maven command:

    mvn test
    
  3. To see whether the Java client Successfully transmitted the car probe data to Watson IoT Platform, check the log file:

... [INFO] --- exec-maven-plugin:1.4.0:java (default) @ samples.car-data-management --- 4 28, 2016 3:29:59 ?? com.ibm.iotf.client.AbstractClient createClient ??: com.ibm.iot.auto.bluemix.samples.nodered.SendCarProbe.main(): Org ID = XXXXX Client ID = d:XXXXX:vehicle:vehicle-sample 4 28, 2016 3:29:59 ?? com.ibm.iotf.client.AbstractClient connect ??: com.ibm.iot.auto.bluemix.samples.nodered.SendCarProbe.main(): Connecting client d:XXXXX:vehicle:vehicle-sample to ssl://XXXXX.messaging.internetofthings.ibmcloud.com:8883 (attempt #1)... 4 28, 2016 3:30:01 ?? com.ibm.iotf.client.AbstractClient connect ??: com.ibm.iot.auto.bluemix.samples.nodered.SendCarProbe.main(): Successfully connected to the IBM Watson IoT Platform {"heading":273.995431,"latitude":30.398979,"longitude":-97.746781,"speed":0.0,"timestamp":"2016-03-11T13:43:16.000Z","trip_id":"1457671273"} {"heading":273.995431,"latitude":30.398981,"longitude":-97.746804,"speed":8.256416399999999,"timestamp":"2016-03-11T13:43:17.000Z","trip_id":"1457671273"} {"heading":273.995431,"latitude":30.398984,"longitude":-97.746846,"speed":14.5477296,"timestamp":"2016-03-11T13:43:18.000Z","trip_id":"1457671273"} {"heading":273.995431,"latitude":30.398987,"longitude":-97.746895,"speed":16.8379884,"timestamp":"2016-03-11T13:43:19.000Z","trip_id":"1457671273"} ... ```

  1. To confirm whether the message arrived successfully, open the Send Car Probe Data tab in the Node-RED flow editor and view the debug messages, as outlined in the following screen capture:

Step 9: Running the Send Analysis Job Request sample

  1. Open the Send Job Request node tab in the Node-RED flow editor.

  2. Click the inject icon and wait for the workflow request to complete. After the request is completed, view the debug output message that is generated for the job request. Make a note of the job_id value.

**Important:** The analysis request is an asynchronous batch job, so you must wait for all **Driver Behavior** APIs jobs to complete before you can see the analysis results.
  1. To view the analysis results, proceed to "Tutorial Part 2: Displaying the analysis result on a Java client map UI".

Optional: Setting up and running the Watson IoT Platform Java client by using Eclipse

As an alternative to step 7, you can set up and run the Java client in the Eclipse environment instead.

Before you begin: Install the Eclipse with the Eclipse Maven plugin. This is required to import and run the sample in Eclipse. For more information about Java and Eclipse, click here.

  1. Clone the car-data-management project using git clone as follows;

    git clone https://github.com/IBM-Bluemix/car-data-management

  2. Import the car-data-management project into Eclipse using the File >Import... >General >Existing Projects into Workspace option in Eclipse.

  3. Open the config/device.propfile and enter the Organization-ID and Authentication-Token that you made a note in step 4.

  1. To build and run, right-click on the project, and select Run As > Maven test.

  2. To confirm whether the message was successfully set to Watson IoT Platform, open the console tab of the Eclipse client, and view the log information.

Decomposition Instructions

  • To configure analysis parameters, see Administering Driver Behavior.
  • To customize the car probe data further:
    • Add more devices (vehicles) to Watson IoT Platform in accordance with step 13 - 18 in the "Step 4: Set up the Watson IoT Platform instance" section.
    • Format your own car probe data, ensuring that you match the format in: CarProbeSample.json.
    • Replace CarProbeSample.json on the Eclipse project.
    • Replace the analysis arguments from and to with your custom car probe data in this section.

API Documentation

Copyright

car-data-management's People

Contributors

taakuu avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

car-data-management's Issues

compilation erro

[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building ibmiot4auto-application-samples 0.0.1
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ samples.car-data-management ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Users\miracle\Desktop\car data\car-data-management-master\src\main\resources
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:compile (default-compile) @ samples.car-data-management ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to C:\Users\miracle\Desktop\car data\car-data-management-master\target\classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[INFO] 1 error
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 21.218 s
[INFO] Finished at: 2017-05-12T17:51:05+05:30
[INFO] Final Memory: 10M/64M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.5.1:compile (default-compile) on project samples.car-data-management: Compilation failure
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

Getting more done in GitHub with ZenHub

Hola! @taakuu has created a ZenHub account for the IBM-Bluemix organization. ZenHub is the only project management tool integrated natively in GitHub – created specifically for fast-moving, software-driven teams.


How do I use ZenHub?

To get set up with ZenHub, all you have to do is download the browser extension and log in with your GitHub account. Once you do, you’ll get access to ZenHub’s complete feature-set immediately.

What can ZenHub do?

ZenHub adds a series of enhancements directly inside the GitHub UI:

  • Real-time, customizable task boards for GitHub issues;
  • Multi-Repository burndown charts, estimates, and velocity tracking based on GitHub Milestones;
  • Personal to-do lists and task prioritization;
  • Time-saving shortcuts – like a quick repo switcher, a “Move issue” button, and much more.

Add ZenHub to GitHub

Still curious? See more ZenHub features or read user reviews. This issue was written by your friendly ZenHub bot, posted by request from @taakuu.

ZenHub Board

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.