Prediction Update

DeviceEventEmitter.addListener('veeryPredictionUpdate', function(e: Event) {})

Listener veeryPredictionUpdate triggered when the backend computed new set of POIs.

Your are warned only if you are called the requestPredictionUpdate and the activate(Int) with a service that include Veery.PREDICTION.

Parameters

Param name Type Usage
veeryPredictionUpdate String event
function(e: Event) function return Veery.Predictions object

Returns

void

Usage / Example

import React, { Component } from 'react';
import { DeviceEventEmitter} from 'react-native';
import Veery from 'react-native-veery';

DeviceEventEmitter.addListener('veeryPredictionUpdate', function(e: Event) {
    // handle event.
    let prediction = e;
    console.log('DeviceEventEmitter ===> PredictionUpdate', prediction.isOK());
});

User interaction

none

See also

getNextTrip

Get the next estimated trip for that user.

requestPredictionUpdate

Request for a callback event when a new prediction is computed by the Veery Backend.

stopPredictionUpdate

Cancel the call to requestPredictionUpdate.

Predictions.isOK

Return true if a prediction is in the Cache.

Predictions.isOutdated

Return true if the prediction is outdated (made previously, but now concerns a time in the past)

Predictions.getProbability

Get the level of certainty of the predictive algorithm.

Predictions.getDestinationLongitude getDestinationLatitude

Get the coordinates of the next predicted destination

Predictions.getTrip toGeojson

Get the next predicted trip in GeoJSON format.

Predictions.toLocations

Get the next trip in the form of a Location array.

Predictions.getStartTrip

Get the next start point of the prediction.

Predictions.getStartTime

Get the estimated start time predicted for the next trip.

Predictions.getStartName

Get the name (street name) of the predicted departure place.

Predictions.getArrivalTime

Get the estimated arrival time predicted for the next trip.

Predictions.getArrivalTimeUTC

Get the estimated arrival time predicted for the next trip (returns EPOCH). Only for Android Platform

Predictions.getArrivalName

Get the name (street name) of the predicted arrival place.

veeryPredictionUpdate

Callback triggered every time a new prediction is computed by the Veery backend.