route_condition_forecast 0.1.3
route_condition_forecast: ^0.1.3 copied to clipboard
Per-segment weather and hazard forecasting along a planned route. Projects driving_weather + fleet_hazard onto route segments. Pure Dart.
example/main.dart
// Minimal example for route_condition_forecast.
//
// Demonstrates the typed surface — RouteSegment + RouteForecast +
// SegmentConditionForecast — that an integrator constructs from a
// planned route plus driving_weather + fleet_hazard inputs.
import 'package:route_condition_forecast/route_condition_forecast.dart';
void main() {
print('Surface: $RouteSegment / $RouteForecast / $SegmentConditionForecast');
print('Compose with driving_weather + fleet_hazard inputs to project');
print('per-segment hazard with time-of-arrival weighting.');
}