Create a StreetLight analysis, which analyzes traffic or activity with respect to the analysis Zones.
Source:R/create_streetlight_analysis.R
create_streetlight_analysis.Rd
Create a StreetLight analysis, which analyzes traffic or activity with respect to the analysis Zones.
Usage
create_streetlight_analysis(
login_email,
key = NULL,
analysis_type,
analysis_name,
travel_mode_type = "All_Vehicles",
output_type = "index",
description = "",
origin_zone_set,
destination_zone_set = NA,
middle_zone_set = NA,
aadt_zone_set = NA,
calibration_zone_set = NA,
geography_type = "",
zone_intersection_type = "",
date_ranges = list(start_date = "01/01/2019", end_date = "12/31/2019"),
day_types = "All Days|17,Average Weekday|15,Average Weekend Day|67",
day_parts =
"All Day|0023,Early AM|0005,Peak AM|0609,Mid-Day|1014,Peak PM|1518,Late PM|1923,Recreation Hours|0819",
vehicle_weight = "",
segment_types = list(),
trip_attributes = FALSE,
traveler_attributes = FALSE,
enable_home_work_locations = FALSE,
hwl_enable_visitor = FALSE,
hwl_enable_resident = FALSE,
hwl_enable_worker = FALSE,
aadt_year = "",
aadt_calibration_year = "",
tags = "streetlightR",
is_ui_enabled = FALSE,
enable_visualization = FALSE,
enable_15min = FALSE,
enable_upsampling = TRUE,
is_massive_queue = FALSE
)
Arguments
- login_email
character, Your StreetLight login email
- key
character, StreetLight API key. Default is
NULL
.- analysis_type
character, What type of analysis to run. Options are
OD_Analysis
,OD_MF_Analysis
,Zone_Activity_Analysis
,OD_Preset_Geography
,Segment_Analysis
,AADT
,Top_Routes_OD
,Top_Routes_ZA
, orTraffic_Diagnostics
.- analysis_name
character, The analysis name
- travel_mode_type
character,
All_Vehicles
,Truck
,Bicycle
, orPedestrian
. Default isAll Vehicles
- output_type
character, One of
volume
,trip_counts
,aadt
,index
, orzone_counts
. Default isindex
. For Traffic Diagnostics,index
is allowed.- description
character, Optional analysis description
- origin_zone_set
character, The name of uploaded zone set to use as the origin in an origin-destination analysis or the main zone in a zone activity analysis
- destination_zone_set
character, The name of uploaded zone set to use as the destination in an origin-destination analysis.
- middle_zone_set
character, The name of uploaded zone set to use as the middle filter in an origin-destination with middle filter analysis.
- aadt_zone_set
character, The name of uploaded zone set to use in an analysis with AADT output.
- calibration_zone_set
character, name of uploaded zone set with calibration. Required when creating an Analysis with Zone Counts output
- geography_type
character, Required in O-D to Pre-set Geography analyses. This property is a string of one of
zip
,taz
,da
, orblkgrp
.- zone_intersection_type
character, one of
all_trips_for_zone
ortrips_by_pass_through_setting
. Applies only to Zone Activity Analysis with Home and Work Locations metrics enabled) r- date_ranges
list, a list of date ranges. Each date range is an object containing a pair of MM/DD/YYYY dates, with the
start_date
key containing the start of the date range, and theend_date
key containing the end of the date range. Bothstart_date
andend_date
are inclusive. Default is all 2019 months. Whentravel_mode_type
isBicycle
orPedestrian
, each date range must consist of only full months.- day_types
character, a comma-separated list of day types in the analysis. Each day type has a name separated by the vertical bar from the start day of week to the end day of week (1 for Monday through 7 for Sunday). Analysis must define All Days as
17
(Monday through Sunday), and they must define values for Average Weekday and Average Weekend Day. Default includes All Days, Average Weekday, and Average Weekend Day.- day_parts
character,A comma-separated list of day parts in the analysis. Each day part has a name separated by the vertical bar from the start hour and end hour from 00 (midnight) to 23 (11 PM). For example,
All Day|0023
ranges from midnight (00:00) to 11:59 PM. Analyses must define All Day as 0023 (midnight to midnight). Default includes All Day, Recreation Hours (8am-8pm), Park Hours I, II, and III.- vehicle_weight
character, one of
Medium
,Heavy
,Medium,Heavy
ornull
. Whether metric results for the analysis are broken down by vehicle weight class (medium duty, heavy duty) for commercial vehicles. If its value is null, commercial vehicle results are not broken down by vehicle weight class. Required when creating a Top Routes between Origins and Destinations Analysis or Top Routes for Zones Analysis.- segment_types
list, must contain at least one of
Motorway
,Trunk
,Primary
,Secondary
,Tertiary
,Residential
.- trip_attributes
logical, This property controls whether the analysis results will include the add-on trip attribute Metrics: trip time distribution, trip length distribution, trip speed distribution, and trip circuity distribution. If you specify this, you can also customize the following properties: -
trip_duration_bins
-trip_length_bins
-trips_speed_bins
-trip_circuity_bins
. Default is FALSE.- traveler_attributes
logical, whether the analysis results will include the add-on traveler attribute metrics. Traveler attribute metrics include traveler demographics and simple trip purpose. (visitor income, education, race, and family status) are included in the Metric results. Default is FALSE.
- enable_home_work_locations
logical, whether the Analysis results will include Home and Work Locations metrics. If this is
TRUE
, then one of thehwl_...
parameters must beTRUE
. Default isFALSE
.- hwl_enable_visitor
logical, whether the Analysis results will include visiting trips that neither reside or work in the zone. It applies only to Zone Activity Analysis with Home and Work Locations metrics enabled.
- hwl_enable_resident
logical, whether the Analysis results will include trips that reside in the zone. It applies only to Zone Activity Analysis with Home and Work Locations metrics enabled.
- hwl_enable_worker
logical, whether the Analysis results will include trips that work in the zone. It applies only to Zone Activity Analysis with Home and Work Locations metrics enabled.
- aadt_year
character, one of
2017
,2018
, or2019
. Required integer creating an AADT Analysis.- aadt_calibration_year
character, one of
2017
,2018
, or2019
. Required integer creating an AADT Analysis.- tags
list, tag names created within an Organization to associate with the created Analysis. Default is
list("streetlightR")
- is_ui_enabled
This allows analysis results to be downloaded and visualized though the UI as well as the API. Should be used sparingly.
- enable_visualization
logical, whether to enable visualization on the StreetLight platform
- enable_15min
logical, whether the Analysis will analyze in 15-minute day parts.
- enable_upsampling
logical, whether the Analysis will process with upsampling if it meets the necessary thresholds. This setting only applies to analysis with
enable_15min
enabled.- is_massive_queue
logical, whether the Analysis will process alongside other high volume Analyses in order to optimize calculation time.