carp_context_package 0.31.1 carp_context_package: ^0.31.1 copied to clipboard
CARP context sampling package. Samples location, mobility, activity, weather, air-quality, and geofence.
import 'package:carp_core/carp_core.dart';
import 'package:carp_mobile_sensing/carp_mobile_sensing.dart';
import 'package:carp_context_package/context.dart';
/// This is a very simple example of how this sampling package is used as part
/// of defining a study protocol in CARP Mobile Sensing (CAMS).
///
/// NOTE, however, that the code below will not run on it own. A study protocol
/// needs to be deployed and executed in the CAMS framework.
///
/// See the documentation on how to use CAMS:
/// https://github.com/cph-cachet/carp.sensing-flutter/wiki
void main() async {
// register this sampling package before using its measures
SamplingPackageRegistry().register(ContextSamplingPackage());
// Create a study protocol
StudyProtocol protocol = StudyProtocol(
ownerId: 'owner@dtu.dk',
name: 'Context Sensing Example',
);
// define which devices are used for data collection
// in this case, its only this smartphone
Smartphone phone = Smartphone();
protocol.addMasterDevice(phone);
// Add an automatic task that immediately starts collecting weather and air_quality.
protocol.addTriggeredTask(
ImmediateTrigger(),
AutomaticTask()
..addMeasures(SensorSamplingPackage().common.getMeasureList(
types: [
ContextSamplingPackage.WEATHER,
ContextSamplingPackage.AIR_QUALITY,
],
)),
phone);
// Add an automatic task that starts collecting location, geolocation,
// activity, and a geofence after 5 minutes.
protocol.addTriggeredTask(
DelayedTrigger(delay: Duration(minutes: 5)),
AutomaticTask()
..addMeasures(DeviceSamplingPackage().common.getMeasureList(
types: [
ContextSamplingPackage.LOCATION,
ContextSamplingPackage.GEOLOCATION,
ContextSamplingPackage.ACTIVITY,
ContextSamplingPackage.GEOFENCE,
],
)),
phone);
}