mobility_features 6.0.0 mobility_features: ^6.0.0 copied to clipboard
Calculation of real-time mobility features like places, stops, and home stay
Mobility Features #
This plugin supports the realtime calculation of mobility features based on location tracking of a phone. The following location features are collected:
- places
- stops
- moves
From this, a set of derived features are calculated:
- number of significant places
- home sStay
- location entropy
- normalized location entropy
- distance traveled
Read more on the theoretical background on these mobility features below.
Setup #
The Mobility Features package is designed to work independent of the location plugin. You may choose you own location plugin, since you may already use this in your app.
In the example app we use our own plugin carp_background_location which works on both Android and iOS as of August 2020. However, the location plugin will also work. The important thing, however, is to make sure that the app runs in the background. On Android this is tied to running the app as a foreground service.
Add the package to your pubspec.yaml
file and import the package
import 'package:mobility_features/mobility_features.dart';
The plugin works as a singleton and can be accessed using MobilityFeatures()
in the code.
Step 1 - Configuration of parameters #
The following configurations can be made, which will influence the algorithms for producing features:
- The stop radius should be kept low (5-20 meters)
- The place radius somewhat higher (25-50 meters).
- The stop duration can also be set to any desired duration, for most cases it should be kept lower than 3 minutes.
Configuration is done like shown below:
StreamSubscription<MobilityContext> mobilitySubscription;
MobilityContext _mobilityContext;
void initState() {
...
MobilityFeatures().stopDuration = Duration(seconds: 20);
MobilityFeatures().placeRadius = 50;
MobilityFeatures().stopRadius = 5.0;
}
Features computation is triggered when the user moves around and change their geo-position by a certain distance (stop distance). If the stop was long enough (stop duration) the stop will be saved. Places are computed by grouping stops based on distance between them (place radius)
Common for these parameters is that their value depend on what you are trying to capture. Low parameter values will make the features more fine-grained but will trigger computation more often and will likely also lead to noisy features. For example, given a low stop duration, stopping for a red light in traffic will count as a stop. Such granularity will be irrelevant for many use cases, but may be useful if questions such as "Do a user take the same route to work every day?"
Step 2 - Set up location streaming #
Collection of location data is not directly supported by this package, for this you have to use a location plugin such as carp_background_location. You can to convert from whichever location object is used by the location plugin to a LocationSample
object.
Next, you can start listening to location updates and subscribe to the contextStream
to be be notified each time a new set of features has been computed.
Below is shown an example using the carp_background_location plugin, where a LocationDto
stream is converted into a LocationSample
stream by using a map-function.
/// Set up streams:
/// * Location streaming to MobilityContext
/// * Subscribe to MobilityContext updates
void streamInit() async {
locationStream = LocationManager().locationStream;
// start the location service (specific to carp_background_location)
await LocationManager().start();
// map from [LocationDto] to [LocationSample]
Stream<LocationSample> locationSampleStream = locationStream.map(
(location) => LocationSample(
GeoLocation(location.latitude, location.longitude),
DateTime.now()));
// provide the [MobilityFeatures] instance with the LocationSample stream
MobilityFeatures().startListening(locationSampleStream);
// start listening to incoming MobilityContext objects
mobilitySubscription =
MobilityFeatures().contextStream.listen(onMobilityContext);
}
NOTE that access to location data needs permissions from the OS. This is NOT handled by the plugin but should be handled on an app-level. See the example app for this. Note also, that permissions for access location "ALWAYS" needs to be granted by the user in order to collect location information in the background.
Step 3 - Listen to mobility features #
The call-back method onMobilityContext
is used to process the stream of MobilityContext
objects:
/// Handle incoming contexts
void onMobilityContext(MobilityContext context) {
/// Do something with the context
print('Context received: ${context.toJson()}');
}
Mobility features are accessible in the MobilityContext
object which can be serialized to JSON using the toJson()
method:
{
"timestamp": "2024-09-26T10:56:21.397768",
"date": "2020-01-01T00:00:00.000",
"numberOfStops": 2,
"numberOfMoves": 1,
"numberOfSignificantPlaces": 2,
"locationVariance": 0.00011097661986704458,
"entropy": 0.6365141682948128,
"normalizedEntropy": 0.9182958340544894,
"homeStay": 0.64,
"distanceTraveled": 0.0
}
Feature errors #
When a feature cannot be calculated, it will result a value of -1.0
.
For example:
- The Home Stay feature requires at least some data to be collected between 00:00 and 06:00 otherwise the feature cannot be evaluated.
- The Entropy and Normalized Entropy features require at least 2 places to be evaluated. If only a single place was found, this will result in an Entropy of 0.
Example #
The example application included in the package shows the feature values, including separate pages for stops, moves and places. It also illustrates how to ask the user for permissions to access location data, also when the app is in the background.
Theoretical Background #
Location Features #
The mobility features are derived from GPS location data, like this:
-
Stop: A collection of GPS points which together represent a visit at a known
Place
(see below) for an extended period of time. AStop
is defined by a location that represents the centroid of a collection of data points, from which a is created. In addition aStop
also has anarrival
and adeparture
time-stamp, representing when the user arrived at the place and when the user left the place. From the arrival- and departure timestamps of theStop
the duration can be computed. -
Place: A
Place
is a group of stops that were clustered by the DBSCAN algorithm. From the cluster of stops, the centroid of the stops can be found, i.e. the center location. In addition, it can be computed how long a user has visited a given place by summing over the duration of all the stops at that place. -
Move: A
Move
is the travel between two stops represented as a path of GPS points. The distance of aMove
can be computed as the sum of using the haversine distance of this path. Given the distance traveled as well as departure and arrival timestamp from the stops, the average speed at which the user traveled can be derived.
Derived Features #
A set of features can be derived from the location features:
-
Home Stay: The portion (percentage) of the total time elapsed since midnight which was spent at home. Elapsed time is calculated from the departure time of the last known stop.
-
Location Variance: The statistical variance in the latitude and longitudinal coordinates.
-
Number of Places: The number of places visited today.
-
Entropy: The entropy with respect to time spent at places.
-
Normalized Entropy: The normalized entropy with respect to time spent at places.
-
Distance Traveled: The total distance traveled today (in meters), i.e. not limited to walking or running.