Last active
May 17, 2021 22:15
-
-
Save knu2xs/35d568d4ee30227d2cc33bf5280b9cbf to your computer and use it in GitHub Desktop.
Arcade expression to calculate average drive time.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
( | |
$feature.commute_ACSTWORKU5 * 2.5 | |
+ $feature.commute_ACSTWORK5 * 7.0 | |
+ $feature.commute_ACSTWORK10 * 12.0 | |
+ $feature.commute_ACSTWORK15 * 17.0 | |
+ $feature.commute_ACSTWORK20 * 22.0 | |
+ $feature.commute_ACSTWORK25 * 27.0 | |
+ $feature.commute_ACSTWORK30 * 32.0 | |
+ $feature.commute_ACSTWORK35 * 37.0 | |
+ $feature.commute_ACSTWORK40 * 42.0 | |
+ $feature.commute_ACSTWORK45 * 47.0 | |
+ $feature.commute_ACSTWORK60 * 74.5 | |
+ $feature.commute_ACSTWORK90 * 90.0 | |
) / ( | |
$feature.commute_ACSTWORKU5 | |
+ $feature.commute_ACSTWORK5 | |
+ $feature.commute_ACSTWORK10 | |
+ $feature.commute_ACSTWORK15 | |
+ $feature.commute_ACSTWORK20 | |
+ $feature.commute_ACSTWORK25 | |
+ $feature.commute_ACSTWORK30 | |
+ $feature.commute_ACSTWORK35 | |
+ $feature.commute_ACSTWORK40 | |
+ $feature.commute_ACSTWORK45 | |
+ $feature.commute_ACSTWORK60 | |
+ $feature.commute_ACSTWORK90 | |
) / 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment