From 4a96a07ef6bd06b86e5501879a77afd061bed9c9 Mon Sep 17 00:00:00 2001 From: Peter York Date: Tue, 21 Jul 2026 15:02:15 +0100 Subject: [PATCH 1/6] make the form work with other infra types --- .../v3/InfrastructureTypeSubform.svelte | 61 +- src/lib/sketch/v3/data.ts | 3469 +++++++++++++++++ src/lib/sketch/v3/infrastructure.json | 3424 ---------------- src/types.ts | 19 +- 4 files changed, 3525 insertions(+), 3448 deletions(-) delete mode 100644 src/lib/sketch/v3/infrastructure.json diff --git a/src/lib/sketch/v3/InfrastructureTypeSubform.svelte b/src/lib/sketch/v3/InfrastructureTypeSubform.svelte index 1bc9c12c..529ce264 100644 --- a/src/lib/sketch/v3/InfrastructureTypeSubform.svelte +++ b/src/lib/sketch/v3/InfrastructureTypeSubform.svelte @@ -12,10 +12,24 @@ import MeasureSubform from "./MeasureSubform.svelte"; export let intervention: V3Intervention; - const intervention_type_options: InfrastructureSubtype[] = - intervention.intervention_type !== "" - ? infrastructureFormInformation[intervention.intervention_type].types + $: intervention_type_options = getInterventionTypeOptions( + intervention.intervention_type, + ); + + function getInterventionTypeOptions( + interventionType: + | "amenity" + | "bus_stop_treatment" + | "crossing" + | "junction_treatment" + | "link_segment" + | "place-making" + | "", + ): InfrastructureSubtype[] { + return interventionType !== "" + ? infrastructureFormInformation[interventionType].types : []; + } function getSubtypeObject( subtype: string, @@ -44,11 +58,18 @@ return [original, capitalisedSubsstrings.join(" ")]; } - const subtypes: [string, string][] = intervention_type_options.map( - (type_options) => { - return formatForRadio(type_options.name); - }, - ); + $: subtypes = getSubtypes(intervention_type_options); + + function getSubtypes( + interventionTypeOptions: InfrastructureSubtype[], + ): [string, string][] { + if (!interventionTypeOptions) { + return []; + } + return interventionTypeOptions.map((type_option) => { + return formatForRadio(type_option.name); + }); + } $: subtypeObject = getSubtypeObject( intervention.properties.intervention_subtype, @@ -148,16 +169,20 @@ } - - +{#if subtypes.length > 0} + +{/if} +{#if contexts.length > 0} + +{/if} {#if subtypeObject && subtypeObject.possible_measurements}

Measures

{#each subtypeObject.possible_measurements as _measureObject, index} diff --git a/src/lib/sketch/v3/data.ts b/src/lib/sketch/v3/data.ts index 8942947c..d0a1cee9 100644 --- a/src/lib/sketch/v3/data.ts +++ b/src/lib/sketch/v3/data.ts @@ -1,6 +1,225 @@ import type { InfrastructureTaxonomyObject } from "types"; export const infrastructureFormInformation: InfrastructureTaxonomyObject = { + amenity: { + group: "amenity", + types: [ + { + name: "bike hangar", + possible_measurements: [ + { + name: "capacity", + unit: "bikes", + type: "output", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + ], + }, + ], + }, + { + name: "bike parking", + possible_measurements: [ + { + name: "capacity", + unit: "bikes", + type: "output", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + ], + }, + ], + }, + ], + }, + bus_stop_treatment: { + group: "bus stop treatment", + types: [], + }, crossing: { group: "crossing", types: [ @@ -3724,4 +3943,3254 @@ export const infrastructureFormInformation: InfrastructureTaxonomyObject = { }, ], }, + junction_treatment: { + group: "junction treatment", + types: [ + { + name: "cycle facilities at traffic signals", + possible_measurements: [ + { + name: "ATE Junction Assessment Tool score", + unit: "%", + type: "contextual", + }, + { + name: "number of junction arms", + unit: "arms", + type: "contextual", + }, + { + name: "number of junctions", + unit: "junctions", + type: "output", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "includes advanced stop line", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes cycle and pedestrian only stage", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes cycle bypass", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes cycle gate", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes early release", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes hold the left", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes separate cycle phases", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes two-stage right turn", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "is signalised", + valid_options: [ + { + option: "yes", + }, + ], + }, + ], + }, + ], + }, + { + name: "cycle optimised protected signals (CYCLOPS)", + possible_measurements: [ + { + name: "ATE Junction Assessment Tool score", + unit: "%", + type: "contextual", + }, + { + name: "number of junction arms", + unit: "arms", + type: "contextual", + }, + { + name: "number of junctions", + unit: "junctions", + type: "output", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "is signalised", + valid_options: [ + { + option: "no", + }, + ], + }, + ], + }, + ], + }, + { + name: "Dutch-style roundabout", + possible_measurements: [ + { + name: "ATE Junction Assessment Tool score", + unit: "%", + type: "contextual", + }, + { + name: "number of junction arms", + unit: "arms", + type: "contextual", + }, + { + name: "number of junctions", + unit: "junctions", + type: "output", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "is signalised", + valid_options: [ + { + option: "no", + }, + ], + }, + ], + }, + ], + }, + { + name: "roundabout", + possible_measurements: [ + { + name: "ATE Junction Assessment Tool score", + unit: "%", + type: "contextual", + }, + { + name: "number of junction arms", + unit: "arms", + type: "contextual", + }, + { + name: "number of junctions", + unit: "junctions", + type: "output", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + ], + }, + ], + }, + { + name: "tight entry/exit radii", + possible_measurements: [ + { + name: "ATE Junction Assessment Tool score", + unit: "%", + type: "contextual", + }, + { + name: "number of junction arms", + unit: "arms", + type: "contextual", + }, + { + name: "number of junctions", + unit: "junctions", + type: "output", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "is signalised", + valid_options: [ + { + option: "no", + }, + ], + }, + ], + }, + ], + }, + ], + }, + link_segment: { + group: "link segment", + types: [ + { + name: "cycle lane marked on road", + possible_measurements: [ + { + name: "highway lane width", + unit: "m", + type: "contextual", + }, + { + name: "link segment length", + unit: "m", + type: "output", + }, + { + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", + }, + { + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", + }, + { + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "cyclists expected on link", + valid_options: [ + { + option: "yes", + }, + ], + }, + { + feature: "horses expected on link", + valid_options: [ + { + option: "no", + }, + ], + }, + { + feature: "lane marking type", + valid_options: [ + { + option: "advisory cycle lane", + }, + { + option: "bus lane", + }, + { + option: "mandatory cycle lane", + }, + ], + }, + { + feature: "lighting", + valid_options: [ + { + option: "bat-friendly lighting", + }, + { + option: "long stretches of darkness", + }, + { + option: "no lighting", + }, + { + option: "short stretches of darkness otherwise well-lit", + }, + { + option: "well-lit", + }, + ], + }, + { + feature: "pedestrians expected on link", + valid_options: [ + { + option: "no", + }, + ], + }, + { + feature: "side of road", + valid_options: [ + { + option: "left", + }, + { + option: "right", + }, + ], + }, + ], + }, + ], + }, + { + name: "no cycling provision", + possible_measurements: [ + { + name: "highway lane width", + unit: "m", + type: "contextual", + }, + { + name: "link segment length", + unit: "m", + type: "output", + }, + { + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", + }, + { + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", + }, + { + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "side of road", + valid_options: [ + { + option: "left", + }, + { + option: "right", + }, + ], + }, + ], + }, + ], + }, + { + name: "no equestrian provision", + possible_measurements: [ + { + name: "highway lane width", + unit: "m", + type: "contextual", + }, + { + name: "link segment length", + unit: "m", + type: "output", + }, + { + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", + }, + { + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", + }, + { + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "side of road", + valid_options: [ + { + option: "left", + }, + { + option: "right", + }, + ], + }, + ], + }, + ], + }, + { + name: "no pedestrian provision", + possible_measurements: [ + { + name: "highway lane width", + unit: "m", + type: "contextual", + }, + { + name: "link segment length", + unit: "m", + type: "output", + }, + { + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", + }, + { + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", + }, + { + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "side of road", + valid_options: [ + { + option: "left", + }, + { + option: "right", + }, + ], + }, + ], + }, + ], + }, + { + name: "pavement or footway", + possible_measurements: [ + { + name: "link segment length", + unit: "m", + type: "output", + }, + { + name: "pavement width", + unit: "m", + type: "contextual", + }, + { + name: "surface grip", + unit: "ptv", + type: "contextual", + }, + ], + possible_contexts: [ + { + context: "alongside carriageway", + possible_features: [ + { + feature: "cyclists expected on link", + valid_options: [ + { + option: "no", + }, + ], + }, + { + feature: "horses expected on link", + valid_options: [ + { + option: "no", + }, + ], + }, + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "is separated from carriageway by a buffer", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "is separated from carriageway by a kerb", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "lighting", + valid_options: [ + { + option: "bat-friendly lighting", + }, + { + option: "long stretches of darkness", + }, + { + option: "no lighting", + }, + { + option: "short stretches of darkness otherwise well-lit", + }, + { + option: "well-lit", + }, + ], + }, + { + feature: "pedestrians expected on link", + valid_options: [ + { + option: "yes", + }, + ], + }, + { + feature: "side of road", + valid_options: [ + { + option: "left", + }, + { + option: "right", + }, + ], + }, + { + feature: "surface type", + valid_options: [ + { + option: "bound and porous", + }, + { + option: "bound and sealed", + }, + { + option: "paved with greater than 5mm joints", + }, + { + option: "paved with less than 5mm joints", + }, + { + option: "paved with mortared joints", + }, + { + option: "unbound or unsealed", + }, + ], + }, + ], + }, + { + context: "unspecified", + possible_features: [ + { + feature: "cyclists expected on link", + valid_options: [ + { + option: "no", + }, + ], + }, + { + feature: "horses expected on link", + valid_options: [ + { + option: "no", + }, + ], + }, + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "lighting", + valid_options: [ + { + option: "bat-friendly lighting", + }, + { + option: "long stretches of darkness", + }, + { + option: "no lighting", + }, + { + option: "short stretches of darkness otherwise well-lit", + }, + { + option: "well-lit", + }, + ], + }, + { + feature: "pedestrians expected on link", + valid_options: [ + { + option: "yes", + }, + ], + }, + { + feature: "surface type", + valid_options: [ + { + option: "bound and porous", + }, + { + option: "bound and sealed", + }, + { + option: "paved with greater than 5mm joints", + }, + { + option: "paved with less than 5mm joints", + }, + { + option: "paved with mortared joints", + }, + { + option: "unbound or unsealed", + }, + ], + }, + ], + }, + ], + }, + { + name: "quiet link", + possible_measurements: [ + { + name: "highway lane width", + unit: "m", + type: "contextual", + }, + { + name: "link segment length", + unit: "m", + type: "output", + }, + { + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", + }, + { + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", + }, + { + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "cyclists expected on link", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "horses expected on link", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "lighting", + valid_options: [ + { + option: "bat-friendly lighting", + }, + { + option: "long stretches of darkness", + }, + { + option: "no lighting", + }, + { + option: "short stretches of darkness otherwise well-lit", + }, + { + option: "well-lit", + }, + ], + }, + { + feature: "pedestrians expected on link", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + ], + }, + ], + }, + { + name: "segregated cycle track", + possible_measurements: [ + { + name: "link segment length", + unit: "m", + type: "output", + }, + { + name: "track width", + unit: "m", + type: "contextual", + }, + ], + possible_contexts: [ + { + context: "alongside carriageway", + possible_features: [ + { + feature: "cyclist direction", + valid_options: [ + { + option: "bi-directional", + }, + { + option: "single direction", + }, + ], + }, + { + feature: "cyclists expected on link", + valid_options: [ + { + option: "yes", + }, + ], + }, + { + feature: "has cyclist barriers causing dismount", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "horses expected on link", + valid_options: [ + { + option: "no", + }, + ], + }, + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "is at pavement level", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "is separated from carriageway by a kerb", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: + "is separated from carriageway by intermittent object placement", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "is stepped up from carriageway", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "lighting", + valid_options: [ + { + option: "bat-friendly lighting", + }, + { + option: "long stretches of darkness", + }, + { + option: "no lighting", + }, + { + option: "short stretches of darkness otherwise well-lit", + }, + { + option: "well-lit", + }, + ], + }, + { + feature: "pedestrians expected on link", + valid_options: [ + { + option: "no", + }, + ], + }, + { + feature: "side of road", + valid_options: [ + { + option: "left", + }, + { + option: "right", + }, + ], + }, + { + feature: "surface type", + valid_options: [ + { + option: "blocks", + }, + { + option: "hand-laid asphalt", + }, + { + option: "machine-laid asphalt", + }, + { + option: "unbound or unsealed", + }, + ], + }, + ], + }, + { + context: "unspecified", + possible_features: [ + { + feature: "cyclist direction", + valid_options: [ + { + option: "bi-directional", + }, + { + option: "single direction", + }, + ], + }, + { + feature: "cyclists expected on link", + valid_options: [ + { + option: "yes", + }, + ], + }, + { + feature: "has cyclist barriers causing dismount", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "horses expected on link", + valid_options: [ + { + option: "no", + }, + ], + }, + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "lighting", + valid_options: [ + { + option: "bat-friendly lighting", + }, + { + option: "long stretches of darkness", + }, + { + option: "no lighting", + }, + { + option: "short stretches of darkness otherwise well-lit", + }, + { + option: "well-lit", + }, + ], + }, + { + feature: "pedestrians expected on link", + valid_options: [ + { + option: "no", + }, + ], + }, + { + feature: "surface type", + valid_options: [ + { + option: "blocks", + }, + { + option: "hand-laid asphalt", + }, + { + option: "machine-laid asphalt", + }, + { + option: "unbound or unsealed", + }, + ], + }, + ], + }, + ], + }, + { + name: "shared use track", + possible_measurements: [ + { + name: "link segment length", + unit: "m", + type: "output", + }, + { + name: "surface grip", + unit: "ptv", + type: "contextual", + }, + { + name: "track width", + unit: "m", + type: "contextual", + }, + ], + possible_contexts: [ + { + context: "alongside carriageway", + possible_features: [ + { + feature: "cyclist direction", + valid_options: [ + { + option: "bi-directional", + }, + { + option: "single direction", + }, + ], + }, + { + feature: "cyclists expected on link", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "has cyclist barriers causing dismount", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "horses expected on link", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "is separated from carriageway by a buffer", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "is separated from carriageway by a kerb", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "is stepped up from carriageway", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "lighting", + valid_options: [ + { + option: "bat-friendly lighting", + }, + { + option: "long stretches of darkness", + }, + { + option: "no lighting", + }, + { + option: "short stretches of darkness otherwise well-lit", + }, + { + option: "well-lit", + }, + ], + }, + { + feature: "pedestrians expected on link", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "side of road", + valid_options: [ + { + option: "left", + }, + { + option: "right", + }, + ], + }, + { + feature: "surface type", + valid_options: [ + { + option: "bound and porous", + }, + { + option: "bound and sealed", + }, + { + option: "unbound or unsealed", + }, + ], + }, + ], + }, + { + context: "unspecified", + possible_features: [ + { + feature: "cyclist direction", + valid_options: [ + { + option: "bi-directional", + }, + { + option: "single direction", + }, + ], + }, + { + feature: "cyclists expected on link", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "has cyclist barriers causing dismount", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "horses expected on link", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "lighting", + valid_options: [ + { + option: "bat-friendly lighting", + }, + { + option: "long stretches of darkness", + }, + { + option: "no lighting", + }, + { + option: "short stretches of darkness otherwise well-lit", + }, + { + option: "well-lit", + }, + ], + }, + { + feature: "pedestrians expected on link", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "surface type", + valid_options: [ + { + option: "bound and porous", + }, + { + option: "bound and sealed", + }, + { + option: "unbound or unsealed", + }, + ], + }, + ], + }, + ], + }, + { + name: "trotting strip", + possible_measurements: [ + { + name: "link segment length", + unit: "m", + type: "output", + }, + { + name: "trotting strip width", + unit: "m", + type: "contextual", + }, + ], + possible_contexts: [ + { + context: "alongside carriageway", + possible_features: [ + { + feature: "cyclists expected on link", + valid_options: [ + { + option: "no", + }, + ], + }, + { + feature: "horses expected on link", + valid_options: [ + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "is at pavement level", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "is separated from carriageway by a kerb", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: + "is separated from carriageway by intermittent object placement", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "is stepped up from carriageway", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "lighting", + valid_options: [ + { + option: "bat-friendly lighting", + }, + { + option: "long stretches of darkness", + }, + { + option: "no lighting", + }, + { + option: "short stretches of darkness otherwise well-lit", + }, + { + option: "well-lit", + }, + ], + }, + { + feature: "pedestrians expected on link", + valid_options: [ + { + option: "no", + }, + ], + }, + { + feature: "side of road", + valid_options: [ + { + option: "left", + }, + { + option: "right", + }, + ], + }, + { + feature: "surface type", + valid_options: [ + { + option: "bound and porous", + }, + { + option: "bound and sealed", + }, + { + option: "grass", + }, + ], + }, + ], + }, + { + context: "unspecified", + possible_features: [ + { + feature: "cyclists expected on link", + valid_options: [ + { + option: "no", + }, + ], + }, + { + feature: "horses expected on link", + valid_options: [ + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "lighting", + valid_options: [ + { + option: "bat-friendly lighting", + }, + { + option: "long stretches of darkness", + }, + { + option: "no lighting", + }, + { + option: "short stretches of darkness otherwise well-lit", + }, + { + option: "well-lit", + }, + ], + }, + { + feature: "pedestrians expected on link", + valid_options: [ + { + option: "no", + }, + ], + }, + { + feature: "surface type", + valid_options: [ + { + option: "bound and porous", + }, + { + option: "bound and sealed", + }, + { + option: "grass", + }, + ], + }, + ], + }, + ], + }, + ], + }, + modal_filter: { + group: "modal filter", + types: [ + { + name: "bollard / planter", + possible_measurements: [ + { + name: "number of modal filters", + unit: "modal filters", + type: "output", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "accessibility", + valid_options: [ + { + option: "accessible to wheelchair users", + }, + { + option: "inaccessible to wheelchair users", + }, + ], + }, + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "timing", + valid_options: [ + { + option: "at all times", + }, + { + option: "part time", + }, + ], + }, + ], + }, + ], + }, + { + name: "bus / tram gate", + possible_measurements: [ + { + name: "number of modal filters", + unit: "modal filters", + type: "output", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "timing", + valid_options: [ + { + option: "at all times", + }, + { + option: "part time", + }, + ], + }, + ], + }, + ], + }, + { + name: "camera restriction", + possible_measurements: [ + { + name: "number of modal filters", + unit: "modal filters", + type: "output", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "timing", + valid_options: [ + { + option: "at all times", + }, + { + option: "part time", + }, + ], + }, + ], + }, + ], + }, + { + name: "school street", + possible_measurements: [ + { + name: "number of modal filters", + unit: "modal filters", + type: "output", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "timing", + valid_options: [ + { + option: "at all times", + }, + { + option: "part time", + }, + ], + }, + ], + }, + ], + }, + { + name: "signed restriction", + possible_measurements: [ + { + name: "number of modal filters", + unit: "modal filters", + type: "output", + }, + ], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "includes place-making: art", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: community garden", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: greening", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: landscaping", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: other", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: pocket park", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: social space", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "includes place-making: wayfinding", + valid_options: [ + { + option: "no", + }, + { + option: "yes", + }, + ], + }, + { + feature: "timing", + valid_options: [ + { + option: "at all times", + }, + { + option: "part time", + }, + ], + }, + ], + }, + ], + }, + ], + }, + "place-making": { + group: "place-making", + types: [], + }, }; diff --git a/src/lib/sketch/v3/infrastructure.json b/src/lib/sketch/v3/infrastructure.json deleted file mode 100644 index 1bdb7995..00000000 --- a/src/lib/sketch/v3/infrastructure.json +++ /dev/null @@ -1,3424 +0,0 @@ -{ - "crossing": { - "types": [ - { - "name": "marked priority", - "measurement": { - "name": "number of crossings", - "unit": "crossings" - }, - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "parallel zebra", - "measurement": { - "name": "number of crossings", - "unit": "crossings" - }, - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "ped-x", - "measurement": { - "name": "number of crossings", - "unit": "crossings" - }, - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pegasus", - "measurement": { - "name": "number of crossings", - "unit": "crossings" - }, - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pelican", - "measurement": { - "name": "number of crossings", - "unit": "crossings" - }, - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "puffin", - "measurement": { - "name": "number of crossings", - "unit": "crossings" - }, - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "sparrow", - "measurement": { - "name": "number of crossings", - "unit": "crossings" - }, - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "toucan", - "measurement": { - "name": "number of crossings", - "unit": "crossings" - }, - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "uncontrolled", - "measurement": { - "name": "number of crossings", - "unit": "crossings" - }, - "possible_contexts": [ - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "zebra", - "measurement": { - "name": "number of crossings", - "unit": "crossings" - }, - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - } - ] - } -} diff --git a/src/types.ts b/src/types.ts index 06336963..37958636 100644 --- a/src/types.ts +++ b/src/types.ts @@ -148,12 +148,13 @@ export interface V2Intervention { } export interface V3Intervention { - intervention_type: // | "area" - // | "route" - | "crossing" - // | "modal filter" - // | "junction treatment" - // | "other" + intervention_type: + | "amenity" + | "bus_stop_treatment" + | "crossing" + | "junction_treatment" + | "link_segment" + | "place-making" | ""; properties: V3InterventionProps; } @@ -177,7 +178,13 @@ export interface InfrastructureFeature { } export interface InfrastructureTaxonomyObject { + amenity: InfrastructureGroup; + bus_stop_treatment: InfrastructureGroup; crossing: InfrastructureGroup; + junction_treatment: InfrastructureGroup; + link_segment: InfrastructureGroup; + modal_filter: InfrastructureGroup; + "place-making": InfrastructureGroup; } export interface InfrastructureGroup { From ac73dd4cfd4a68bbb6fade8f7023fef571893ca7 Mon Sep 17 00:00:00 2001 From: Peter York Date: Wed, 29 Jul 2026 16:11:06 +0100 Subject: [PATCH 2/6] Add Bec's updated infrastructure info --- src/lib/sketch/v3/data.ts | 32936 +++++++++++++++++++--- src/lib/sketch/v3/infrastructure 3.json | 31717 +++++++++++++++++++++ src/pages/ChooseArea.svelte | 1 + 3 files changed, 60447 insertions(+), 4207 deletions(-) create mode 100644 src/lib/sketch/v3/infrastructure 3.json diff --git a/src/lib/sketch/v3/data.ts b/src/lib/sketch/v3/data.ts index d0a1cee9..dc330bfb 100644 --- a/src/lib/sketch/v3/data.ts +++ b/src/lib/sketch/v3/data.ts @@ -1,7196 +1,31718 @@ import type { InfrastructureTaxonomyObject } from "types"; export const infrastructureFormInformation: InfrastructureTaxonomyObject = { - amenity: { - group: "amenity", - types: [ + "amenity": + { + "group": "amenity", + "types": [ { - name: "bike hangar", - possible_measurements: [ + "name": "bike hangar", + "possible_measurements": [ { - name: "capacity", - unit: "bikes", - type: "output", - }, + "name": "capacity", + "unit": "bikes", + "type": "output" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "unspecified", - possible_features: [ + "context": "unspecified", + "possible_features": [ { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "bike parking", + "possible_measurements": [ + { + "name": "capacity", + "unit": "bikes", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, - ], - }, - ], - }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + } + ] + }, + "bus_stop_treatment": { + "group": "bus stop treatment", + "types": [ { - name: "bike parking", - possible_measurements: [ - { - name: "capacity", - unit: "bikes", - type: "output", - }, - ], - possible_contexts: [ + "name": "bus stop bypass", + "possible_measurements": [], + "possible_contexts": [ { - context: "unspecified", - possible_features: [ + "context": "unspecified", + "possible_features": [ { - feature: "includes place-making: art", - valid_options: [ + "feature": "bus stop placement on highway", + "valid_options": [ { - option: "no", + "option": "built-out" }, { - option: "yes", + "option": "in-line" }, - ], + { + "option": "lay-by" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "has bus stop shelter", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "has level boarding", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "level of interaction between cyclists and bus stop users", + "valid_options": [ + { + "option": "low interaction" + }, + { + "option": "medium interaction" + } + ] + } + ] + } + ] + }, + { + "name": "shared use bus stop", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "bus stop placement on highway", + "valid_options": [ { - option: "no", + "option": "built-out" }, { - option: "yes", + "option": "in-line" }, - ], + { + "option": "lay-by" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "has bus stop shelter", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "has level boarding", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "level of interaction between cyclists and bus stop users", + "valid_options": [ + { + "option": "high interaction" + } + ] + } + ] + } + ] + }, + { + "name": "bus stop boarder", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "bus stop placement on highway", + "valid_options": [ { - option: "no", + "option": "built-out" }, { - option: "yes", + "option": "in-line" }, - ], + { + "option": "lay-by" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "has bus stop shelter", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "has level boarding", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "level of interaction between cyclists and bus stop users", + "valid_options": [ + { + "option": "high interaction" + }, + { + "option": "low interaction" + }, + { + "option": "medium interaction" + } + ] + } + ] + } + ] + }, + { + "name": "untreated bus stop", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "bus stop placement on highway", + "valid_options": [ { - option: "no", + "option": "built-out" }, { - option: "yes", + "option": "in-line" }, - ], + { + "option": "lay-by" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "has bus stop shelter", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "has level boarding", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, - ], - }, - ], - }, - ], - }, - bus_stop_treatment: { - group: "bus stop treatment", - types: [], + { + "feature": "level of interaction between cyclists and bus stop users", + "valid_options": [ + { + "option": "low interaction" + } + ] + } + ] + } + ] + } + ] }, - crossing: { - group: "crossing", - types: [ + "crossing": { + "group": "crossing", + "types": [ { - name: "marked priority", - possible_measurements: [ + "name": "marked priority", + "possible_measurements": [ { - name: "number of crossings", - unit: "crossings", - type: "output", + "name": "number of crossings", + "unit": "crossings", + "type": "output" }, { - name: "number of lanes crossed", - unit: "lanes", - type: "contextual", + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" }, { - name: "refuge width", - unit: "m", - type: "contextual", + "name": "refuge width", + "unit": "m", + "type": "contextual" }, { - name: "vehicle 85th percentile speed", - unit: "mph", - type: "contextual", + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" }, { - name: "vehicle flow (daily)", - unit: "vpd", - type: "contextual", + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" }, { - name: "vehicle flow (peak hour)", - unit: "vph", - type: "contextual", - }, + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "at side-road", - possible_features: [ + "context": "at side-road", + "possible_features": [ { - feature: "has buildout", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has dropped kerbs", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is continuous footway", - valid_options: [ + "feature": "is continuous footway", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "is signalised", + "valid_options": [ { - option: "no", - }, - ], + "option": "no" + } + ] }, { - feature: "junction has tight radii", - valid_options: [ + "feature": "junction has tight radii", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "pedestrians have priority over traffic", - valid_options: [ + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "permitted movements at side-road junctions", - valid_options: [ + "feature": "permitted movements at side-road junctions", + "valid_options": [ { - option: "entry and exit", + "option": "entry and exit" }, { - option: "entry only", + "option": "entry only" }, { - option: "exit only", - }, - ], + "option": "exit only" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "fully setback", + "option": "fully setback" }, { - option: "not setback", + "option": "not setback" }, { - option: "partially setback", - }, - ], - }, - ], + "option": "partially setback" + } + ] + } + ] }, { - context: "stand-alone", - possible_features: [ + "context": "stand-alone", + "possible_features": [ { - feature: "fulfils routing desire line", - valid_options: [ + "feature": "fulfils routing desire line", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "fulfils single movement desire line", - valid_options: [ + "feature": "fulfils single movement desire line", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has buildout", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has dropped kerbs", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "is signalised", + "valid_options": [ { - option: "no", - }, - ], + "option": "no" + } + ] }, { - feature: "pedestrians have priority over traffic", - valid_options: [ + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "provides connection to bus stop", - valid_options: [ + "feature": "provides connection to bus stop", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "fully setback", + "option": "fully setback" }, { - option: "not setback", + "option": "not setback" }, { - option: "partially setback", - }, - ], - }, - ], + "option": "partially setback" + } + ] + } + ] }, { - context: "unspecified", - possible_features: [ + "context": "unspecified", + "possible_features": [ { - feature: "has buildout", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has dropped kerbs", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "is signalised", + "valid_options": [ { - option: "no", - }, - ], + "option": "no" + } + ] }, { - feature: "pedestrians have priority over traffic", - valid_options: [ + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "fully setback", + "option": "fully setback" }, { - option: "not setback", + "option": "not setback" }, { - option: "partially setback", - }, - ], - }, - ], - }, - ], + "option": "partially setback" + } + ] + } + ] + } + ] }, { - name: "parallel zebra", - possible_measurements: [ + "name": "marked priority", + "possible_measurements": [ { - name: "number of crossings", - unit: "crossings", - type: "output", + "name": "number of crossings", + "unit": "crossings", + "type": "output" }, { - name: "refuge width", - unit: "m", - type: "contextual", + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" }, { - name: "vehicle 85th percentile speed", - unit: "mph", - type: "contextual", + "name": "refuge width", + "unit": "m", + "type": "contextual" }, { - name: "vehicle flow (daily)", - unit: "vpd", - type: "contextual", + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" }, { - name: "vehicle flow (peak hour)", - unit: "vph", - type: "contextual", + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "at side-road", - possible_features: [ + "context": "at side-road", + "possible_features": [ { - feature: "has buildout", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has dropped kerbs", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has pedestrian refuge", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "is continuous footway", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is continuous footway", - valid_options: [ - { - option: "no", - }, + "feature": "is signalised", + "valid_options": [ { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "junction has tight radii", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "junction has tight radii", - valid_options: [ + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "permitted movements at side-road junctions", - valid_options: [ + "feature": "permitted movements at side-road junctions", + "valid_options": [ { - option: "entry and exit", + "option": "entry and exit" }, { - option: "entry only", + "option": "entry only" }, { - option: "exit only", - }, - ], + "option": "exit only" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "fully setback", + "option": "fully setback" }, { - option: "not setback", + "option": "not setback" }, { - option: "partially setback", - }, - ], - }, - ], + "option": "partially setback" + } + ] + } + ] }, { - context: "stand-alone", - possible_features: [ + "context": "stand-alone", + "possible_features": [ { - feature: "fulfils routing desire line", - valid_options: [ + "feature": "fulfils routing desire line", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "fulfils single movement desire line", - valid_options: [ + "feature": "fulfils single movement desire line", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has buildout", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has dropped kerbs", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has pedestrian refuge", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ - { - option: "no", - }, + "feature": "is signalised", + "valid_options": [ { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "provides connection to bus stop", - valid_options: [ + "feature": "provides connection to bus stop", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "fully setback", + "option": "fully setback" }, { - option: "not setback", + "option": "not setback" }, { - option: "partially setback", - }, - ], - }, - ], + "option": "partially setback" + } + ] + } + ] }, { - context: "unspecified", - possible_features: [ + "context": "unspecified", + "possible_features": [ { - feature: "has buildout", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has dropped kerbs", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has pedestrian refuge", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "is signalised", + "valid_options": [ { - option: "no", - }, - { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "fully setback", + "option": "fully setback" }, { - option: "not setback", + "option": "not setback" }, { - option: "partially setback", - }, - ], - }, - ], - }, - ], + "option": "partially setback" + } + ] + } + ] + } + ] }, { - name: "ped-x", - possible_measurements: [ + "name": "marked priority", + "possible_measurements": [ { - name: "crossing speed", - unit: "mps", - type: "contextual", + "name": "number of crossings", + "unit": "crossings", + "type": "output" }, { - name: "number of crossings", - unit: "crossings", - type: "output", + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" }, { - name: "refuge width", - unit: "m", - type: "contextual", + "name": "refuge width", + "unit": "m", + "type": "contextual" }, { - name: "user wait time", - unit: "s", - type: "contextual", + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" }, { - name: "vehicle 85th percentile speed", - unit: "mph", - type: "contextual", + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" }, { - name: "vehicle flow (daily)", - unit: "vpd", - type: "contextual", - }, - { - name: "vehicle flow (peak hour)", - unit: "vph", - type: "contextual", - }, + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "unspecified", - possible_features: [ + "context": "at side-road", + "possible_features": [ { - feature: "has buildout", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has dropped kerbs", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has pedestrian refuge", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "is continuous footway", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "is signalised", + "valid_options": [ { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "safe to cross indicated by audio", - valid_options: [ + "feature": "junction has tight radii", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "safe to cross indicated by rotating cone", - valid_options: [ + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "safe to cross indicated by visual aids", - valid_options: [ + "feature": "permitted movements at side-road junctions", + "valid_options": [ { - option: "no", + "option": "entry and exit" }, { - option: "yes", + "option": "entry only" }, - ], + { + "option": "exit only" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "fully setback", + "option": "fully setback" }, { - option: "not setback", + "option": "not setback" }, { - option: "partially setback", - }, - ], - }, - ], - }, - ], - }, - { - name: "pegasus", - possible_measurements: [ - { - name: "crossing speed", - unit: "mps", - type: "contextual", - }, - { - name: "number of crossings", - unit: "crossings", - type: "output", - }, - { - name: "refuge width", - unit: "m", - type: "contextual", - }, - { - name: "user wait time", - unit: "s", - type: "contextual", - }, - { - name: "vehicle 85th percentile speed", - unit: "mph", - type: "contextual", - }, - { - name: "vehicle flow (daily)", - unit: "vpd", - type: "contextual", - }, - { - name: "vehicle flow (peak hour)", - unit: "vph", - type: "contextual", + "option": "partially setback" + } + ] + } + ] }, - ], - possible_contexts: [ { - context: "unspecified", - possible_features: [ + "context": "stand-alone", + "possible_features": [ { - feature: "has buildout", - valid_options: [ + "feature": "fulfils routing desire line", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has dropped kerbs", - valid_options: [ + "feature": "fulfils single movement desire line", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has pedestrian refuge", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "yes", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "safe to cross indicated by audio", - valid_options: [ - { - option: "no", - }, + "feature": "is signalised", + "valid_options": [ { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "safe to cross indicated by rotating cone", - valid_options: [ + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "safe to cross indicated by visual aids", - valid_options: [ + "feature": "provides connection to bus stop", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "fully setback", + "option": "fully setback" }, { - option: "not setback", + "option": "not setback" }, { - option: "partially setback", - }, - ], - }, - ], - }, - ], - }, - { - name: "pelican", - possible_measurements: [ - { - name: "crossing speed", - unit: "mps", - type: "contextual", - }, - { - name: "number of crossings", - unit: "crossings", - type: "output", - }, - { - name: "refuge width", - unit: "m", - type: "contextual", - }, - { - name: "user wait time", - unit: "s", - type: "contextual", - }, - { - name: "vehicle 85th percentile speed", - unit: "mph", - type: "contextual", - }, - { - name: "vehicle flow (daily)", - unit: "vpd", - type: "contextual", + "option": "partially setback" + } + ] + } + ] }, { - name: "vehicle flow (peak hour)", - unit: "vph", - type: "contextual", - }, - ], - possible_contexts: [ - { - context: "unspecified", - possible_features: [ - { - feature: "has buildout", - valid_options: [ - { - option: "no", - }, - { - option: "yes", - }, - ], - }, - { - feature: "has dropped kerbs", - valid_options: [ - { - option: "no", - }, - { - option: "yes", - }, - ], - }, + "context": "unspecified", + "possible_features": [ { - feature: "has pedestrian refuge", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ - { - option: "no", - }, + "feature": "includes place-making: social space", + "valid_options": [ { - option: "yes", + "option": "no" }, - ], - }, - { - feature: "is signalised", - valid_options: [ { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "safe to cross indicated by audio", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "safe to cross indicated by rotating cone", - valid_options: [ - { - option: "no", - }, + "feature": "is signalised", + "valid_options": [ { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "safe to cross indicated by visual aids", - valid_options: [ + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "fully setback", + "option": "fully setback" }, { - option: "not setback", + "option": "not setback" }, { - option: "partially setback", - }, - ], - }, - ], - }, - ], + "option": "partially setback" + } + ] + } + ] + } + ] }, { - name: "puffin", - possible_measurements: [ - { - name: "crossing speed", - unit: "mps", - type: "contextual", - }, + "name": "marked priority", + "possible_measurements": [ { - name: "number of crossings", - unit: "crossings", - type: "output", + "name": "number of crossings", + "unit": "crossings", + "type": "output" }, { - name: "refuge width", - unit: "m", - type: "contextual", + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" }, { - name: "user wait time", - unit: "s", - type: "contextual", + "name": "refuge width", + "unit": "m", + "type": "contextual" }, { - name: "vehicle 85th percentile speed", - unit: "mph", - type: "contextual", + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" }, { - name: "vehicle flow (daily)", - unit: "vpd", - type: "contextual", + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" }, { - name: "vehicle flow (peak hour)", - unit: "vph", - type: "contextual", - }, + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "unspecified", - possible_features: [ + "context": "at side-road", + "possible_features": [ { - feature: "has buildout", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has dropped kerbs", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has pedestrian refuge", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "is continuous footway", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "is signalised", + "valid_options": [ { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "safe to cross indicated by audio", - valid_options: [ + "feature": "junction has tight radii", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "safe to cross indicated by rotating cone", - valid_options: [ + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "safe to cross indicated by visual aids", - valid_options: [ + "feature": "permitted movements at side-road junctions", + "valid_options": [ { - option: "no", + "option": "entry and exit" }, { - option: "yes", + "option": "entry only" }, - ], + { + "option": "exit only" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "fully setback", + "option": "fully setback" }, { - option: "not setback", + "option": "not setback" }, { - option: "partially setback", - }, - ], - }, - ], - }, - ], - }, - { - name: "sparrow", - possible_measurements: [ - { - name: "crossing speed", - unit: "mps", - type: "contextual", - }, - { - name: "number of crossings", - unit: "crossings", - type: "output", - }, - { - name: "refuge width", - unit: "m", - type: "contextual", - }, - { - name: "user wait time", - unit: "s", - type: "contextual", + "option": "partially setback" + } + ] + } + ] }, { - name: "vehicle 85th percentile speed", - unit: "mph", - type: "contextual", - }, - { - name: "vehicle flow (daily)", - unit: "vpd", - type: "contextual", - }, - { - name: "vehicle flow (peak hour)", - unit: "vph", - type: "contextual", - }, - ], - possible_contexts: [ - { - context: "unspecified", - possible_features: [ + "context": "stand-alone", + "possible_features": [ { - feature: "has buildout", - valid_options: [ + "feature": "fulfils routing desire line", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has dropped kerbs", - valid_options: [ + "feature": "fulfils single movement desire line", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has pedestrian refuge", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "yes", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "safe to cross indicated by audio", - valid_options: [ - { - option: "no", - }, + "feature": "is signalised", + "valid_options": [ { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "safe to cross indicated by rotating cone", - valid_options: [ + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "safe to cross indicated by visual aids", - valid_options: [ + "feature": "provides connection to bus stop", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "fully setback", + "option": "fully setback" }, { - option: "not setback", + "option": "not setback" }, { - option: "partially setback", - }, - ], - }, - ], - }, - ], - }, - { - name: "toucan", - possible_measurements: [ - { - name: "crossing speed", - unit: "mps", - type: "contextual", - }, - { - name: "number of crossings", - unit: "crossings", - type: "output", - }, - { - name: "refuge width", - unit: "m", - type: "contextual", - }, - { - name: "user wait time", - unit: "s", - type: "contextual", - }, - { - name: "vehicle 85th percentile speed", - unit: "mph", - type: "contextual", - }, - { - name: "vehicle flow (daily)", - unit: "vpd", - type: "contextual", - }, - { - name: "vehicle flow (peak hour)", - unit: "vph", - type: "contextual", + "option": "partially setback" + } + ] + } + ] }, - ], - possible_contexts: [ { - context: "unspecified", - possible_features: [ - { - feature: "has buildout", - valid_options: [ - { - option: "no", - }, - { - option: "yes", - }, - ], - }, - { - feature: "has dropped kerbs", - valid_options: [ - { - option: "no", - }, - { - option: "yes", - }, - ], - }, + "context": "unspecified", + "possible_features": [ { - feature: "has pedestrian refuge", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], - }, - { - feature: "is signalised", - valid_options: [ - { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "safe to cross indicated by audio", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "safe to cross indicated by rotating cone", - valid_options: [ - { - option: "no", - }, + "feature": "is signalised", + "valid_options": [ { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "safe to cross indicated by visual aids", - valid_options: [ + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "fully setback", + "option": "fully setback" }, { - option: "not setback", + "option": "not setback" }, { - option: "partially setback", - }, - ], - }, - ], - }, - ], + "option": "partially setback" + } + ] + } + ] + } + ] }, { - name: "uncontrolled", - possible_measurements: [ + "name": "marked priority", + "possible_measurements": [ { - name: "number of crossings", - unit: "crossings", - type: "output", + "name": "number of crossings", + "unit": "crossings", + "type": "output" }, { - name: "number of lanes crossed", - unit: "lanes", - type: "contextual", + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" }, { - name: "refuge width", - unit: "m", - type: "contextual", + "name": "refuge width", + "unit": "m", + "type": "contextual" }, { - name: "vehicle 85th percentile speed", - unit: "mph", - type: "contextual", + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" }, { - name: "vehicle flow (daily)", - unit: "vpd", - type: "contextual", + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" }, { - name: "vehicle flow (peak hour)", - unit: "vph", - type: "contextual", - }, + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "stand-alone", - possible_features: [ + "context": "at side-road", + "possible_features": [ { - feature: "fulfils routing desire line", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "fulfils single movement desire line", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has buildout", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has dropped kerbs", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has pedestrian refuge", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "is continuous footway", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "is signalised", + "valid_options": [ { - option: "no", - }, - { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "junction has tight radii", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "provides connection to bus stop", - valid_options: [ + "feature": "permitted movements at side-road junctions", + "valid_options": [ { - option: "no", + "option": "entry and exit" }, { - option: "yes", + "option": "entry only" }, - ], + { + "option": "exit only" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "fully setback", + "option": "fully setback" }, { - option: "not setback", + "option": "not setback" }, { - option: "partially setback", - }, - ], - }, - ], + "option": "partially setback" + } + ] + } + ] }, { - context: "unspecified", - possible_features: [ + "context": "stand-alone", + "possible_features": [ { - feature: "has buildout", - valid_options: [ + "feature": "fulfils routing desire line", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has dropped kerbs", - valid_options: [ + "feature": "fulfils single movement desire line", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has pedestrian refuge", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "is signalised", + "valid_options": [ { - option: "fully setback", - }, + "option": "no" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "not setback", + "option": "no" }, { - option: "partially setback", - }, - ], + "option": "yes" + } + ] }, - ], - }, - ], - }, - { - name: "zebra", - possible_measurements: [ - { - name: "number of crossings", - unit: "crossings", - type: "output", - }, - { - name: "refuge width", - unit: "m", - type: "contextual", - }, - { - name: "vehicle 85th percentile speed", - unit: "mph", - type: "contextual", - }, - { - name: "vehicle flow (daily)", - unit: "vpd", - type: "contextual", - }, - { - name: "vehicle flow (peak hour)", - unit: "vph", - type: "contextual", - }, - ], - possible_contexts: [ - { - context: "at side-road", - possible_features: [ { - feature: "has buildout", - valid_options: [ + "feature": "provides connection to bus stop", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has dropped kerbs", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "no", + "option": "fully setback" }, { - option: "yes", + "option": "not setback" }, - ], - }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ { - feature: "has pedestrian refuge", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is continuous footway", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "is signalised", + "valid_options": [ { - option: "no", - }, - ], + "option": "no" + } + ] }, { - feature: "junction has tight radii", - valid_options: [ + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "permitted movements at side-road junctions", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "entry and exit", + "option": "fully setback" }, { - option: "entry only", + "option": "not setback" }, { - option: "exit only", + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "marked priority", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "fully setback", + "option": "no" }, { - option: "not setback", - }, + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ { - option: "partially setback", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, - ], - }, - { - context: "stand-alone", - possible_features: [ { - feature: "fulfils routing desire line", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "fulfils single movement desire line", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has buildout", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "has dropped kerbs", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "has pedestrian refuge", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "junction has tight radii", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "permitted movements at side-road junctions", + "valid_options": [ { - option: "no", + "option": "entry and exit" }, { - option: "yes", + "option": "entry only" }, - ], + { + "option": "exit only" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "no", + "option": "fully setback" }, { - option: "yes", + "option": "not setback" }, - ], - }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ { - feature: "includes place-making: greening", - valid_options: [ + "feature": "fulfils routing desire line", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "provides connection to bus stop", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "provides connection to bus stop", + "valid_options": [ { - option: "fully setback", + "option": "no" }, { - option: "not setback", + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" }, { - option: "partially setback", + "option": "not setback" }, - ], - }, - ], + { + "option": "partially setback" + } + ] + } + ] }, { - context: "unspecified", - possible_features: [ + "context": "unspecified", + "possible_features": [ { - feature: "has buildout", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has dropped kerbs", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has pedestrian refuge", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has raised table", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "has tactile paving", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "is signalised", + "valid_options": [ { - option: "no", - }, - { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "pedestrians have priority over traffic", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "setback from junction", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "fully setback", + "option": "fully setback" }, { - option: "not setback", + "option": "not setback" }, { - option: "partially setback", - }, - ], - }, - ], - }, - ], + "option": "partially setback" + } + ] + } + ] + } + ] }, - ], - }, - junction_treatment: { - group: "junction treatment", - types: [ { - name: "cycle facilities at traffic signals", - possible_measurements: [ + "name": "parallel zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, { - name: "ATE Junction Assessment Tool score", - unit: "%", - type: "contextual", + "name": "refuge width", + "unit": "m", + "type": "contextual" }, { - name: "number of junction arms", - unit: "arms", - type: "contextual", + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" }, { - name: "number of junctions", - unit: "junctions", - type: "output", + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "unspecified", - possible_features: [ + "context": "at side-road", + "possible_features": [ { - feature: "includes advanced stop line", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes cycle and pedestrian only stage", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes cycle bypass", - valid_options: [ + "feature": "has pedestrian refuge", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes cycle gate", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes early release", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes hold the left", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes separate cycle phases", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes two-stage right turn", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "yes", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, - ], - }, - ], - }, - { - name: "cycle optimised protected signals (CYCLOPS)", - possible_measurements: [ - { - name: "ATE Junction Assessment Tool score", - unit: "%", - type: "contextual", - }, - { - name: "number of junction arms", - unit: "arms", - type: "contextual", - }, - { - name: "number of junctions", - unit: "junctions", - type: "output", - }, - ], - possible_contexts: [ - { - context: "unspecified", - possible_features: [ { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "is continuous footway", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ - { - option: "no", - }, + "feature": "is signalised", + "valid_options": [ { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "junction has tight radii", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "permitted movements at side-road junctions", + "valid_options": [ { - option: "no", + "option": "entry and exit" }, { - option: "yes", + "option": "entry only" }, - ], + { + "option": "exit only" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "no", + "option": "fully setback" }, - ], - }, - ], - }, - ], - }, - { - name: "Dutch-style roundabout", - possible_measurements: [ - { - name: "ATE Junction Assessment Tool score", - unit: "%", - type: "contextual", - }, - { - name: "number of junction arms", - unit: "arms", - type: "contextual", - }, - { - name: "number of junctions", - unit: "junctions", - type: "output", + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] }, - ], - possible_contexts: [ { - context: "unspecified", - possible_features: [ + "context": "stand-alone", + "possible_features": [ { - feature: "includes place-making: art", - valid_options: [ + "feature": "fulfils routing desire line", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "fulfils single movement desire line", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "has pedestrian refuge", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, - ], - }, - ], - }, - { - name: "roundabout", - possible_measurements: [ - { - name: "ATE Junction Assessment Tool score", - unit: "%", - type: "contextual", - }, - { - name: "number of junction arms", - unit: "arms", - type: "contextual", - }, - { - name: "number of junctions", - unit: "junctions", - type: "output", - }, - ], - possible_contexts: [ - { - context: "unspecified", - possible_features: [ { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "is signalised", + "valid_options": [ { - option: "no", - }, + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ { - option: "yes", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "setback from junction", + "valid_options": [ { - option: "no", + "option": "fully setback" }, { - option: "yes", + "option": "not setback" }, - ], - }, - ], - }, - ], - }, - { - name: "tight entry/exit radii", - possible_measurements: [ - { - name: "ATE Junction Assessment Tool score", - unit: "%", - type: "contextual", - }, - { - name: "number of junction arms", - unit: "arms", - type: "contextual", - }, - { - name: "number of junctions", - unit: "junctions", - type: "output", + { + "option": "partially setback" + } + ] + } + ] }, - ], - possible_contexts: [ { - context: "unspecified", - possible_features: [ + "context": "unspecified", + "possible_features": [ { - feature: "includes place-making: art", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "has pedestrian refuge", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "has raised table", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "is signalised", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, - ], - }, - ], + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] }, - ], - }, - link_segment: { - group: "link segment", - types: [ { - name: "cycle lane marked on road", - possible_measurements: [ + "name": "parallel zebra", + "possible_measurements": [ { - name: "highway lane width", - unit: "m", - type: "contextual", + "name": "number of crossings", + "unit": "crossings", + "type": "output" }, { - name: "link segment length", - unit: "m", - type: "output", + "name": "refuge width", + "unit": "m", + "type": "contextual" }, { - name: "vehicle 85th percentile speed", - unit: "mph", - type: "contextual", + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" }, { - name: "vehicle flow (daily)", - unit: "vpd", - type: "contextual", + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" }, { - name: "vehicle flow (peak hour)", - unit: "vph", - type: "contextual", - }, + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "unspecified", - possible_features: [ + "context": "at side-road", + "possible_features": [ { - feature: "cyclists expected on link", - valid_options: [ + "feature": "has buildout", + "valid_options": [ { - option: "yes", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "horses expected on link", - valid_options: [ + "feature": "has dropped kerbs", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "lane marking type", - valid_options: [ + "feature": "has pedestrian refuge", + "valid_options": [ { - option: "advisory cycle lane", + "option": "no" }, { - option: "bus lane", - }, + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ { - option: "mandatory cycle lane", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "lighting", - valid_options: [ + "feature": "has tactile paving", + "valid_options": [ { - option: "bat-friendly lighting", + "option": "no" }, { - option: "long stretches of darkness", - }, + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ { - option: "no lighting", + "option": "no" }, { - option: "short stretches of darkness otherwise well-lit", - }, + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "well-lit", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "pedestrians expected on link", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "side of road", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "left", + "option": "no" }, { - option: "right", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" }, - ], + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] }, - ], + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] }, - ], + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] }, { - name: "no cycling provision", - possible_measurements: [ + "name": "parallel zebra", + "possible_measurements": [ { - name: "highway lane width", - unit: "m", - type: "contextual", + "name": "number of crossings", + "unit": "crossings", + "type": "output" }, { - name: "link segment length", - unit: "m", - type: "output", + "name": "refuge width", + "unit": "m", + "type": "contextual" }, { - name: "vehicle 85th percentile speed", - unit: "mph", - type: "contextual", + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" }, { - name: "vehicle flow (daily)", - unit: "vpd", - type: "contextual", + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" }, { - name: "vehicle flow (peak hour)", - unit: "vph", - type: "contextual", + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "parallel zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "parallel zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "ped-x", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "ped-x", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "ped-x", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "ped-x", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "ped-x", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "ped-x", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "ped-x", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pegasus", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pegasus", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pegasus", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pegasus", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pegasus", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pegasus", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pegasus", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pelican", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pelican", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pelican", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pelican", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pelican", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pelican", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pelican", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "puffin", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "puffin", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "puffin", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "puffin", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "puffin", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "puffin", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "puffin", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "sparrow", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "sparrow", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "sparrow", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "sparrow", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "sparrow", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "sparrow", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "sparrow", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "toucan", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "toucan", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "toucan", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "toucan", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "toucan", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "toucan", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "toucan", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "uncontrolled", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "uncontrolled", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "uncontrolled", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "uncontrolled", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "uncontrolled", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "uncontrolled", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + } + ] + }, + "junction_treatment": { + "group": "junction treatment", + "types": [ + { + "name": "cycle facilities at traffic signals", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes advanced stop line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle and pedestrian only stage", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle bypass", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle gate", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes early release", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes hold the left", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes separate cycle phases", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes two-stage right turn", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "cycle facilities at traffic signals", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes advanced stop line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle and pedestrian only stage", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle bypass", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle gate", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes early release", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes hold the left", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes separate cycle phases", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes two-stage right turn", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "cycle facilities at traffic signals", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes advanced stop line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle and pedestrian only stage", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle bypass", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle gate", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes early release", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes hold the left", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes separate cycle phases", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes two-stage right turn", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "cycle optimised protected signals (CYCLOPS)", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "cycle optimised protected signals (CYCLOPS)", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "cycle optimised protected signals (CYCLOPS)", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "Dutch-style roundabout", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "Dutch-style roundabout", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "Dutch-style roundabout", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "roundabout", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "roundabout", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "roundabout", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "tight entry/exit radii", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "tight entry/exit radii", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "tight entry/exit radii", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + } + ] + }, + "link_segment": { + "group": "link segment", + "types": [ + { + "name": "cycle lane marked on road", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "lane marking type", + "valid_options": [ + { + "option": "advisory cycle lane" + }, + { + "option": "bus lane" + }, + { + "option": "mandatory cycle lane" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "cycle lane marked on road", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "lane marking type", + "valid_options": [ + { + "option": "advisory cycle lane" + }, + { + "option": "bus lane" + }, + { + "option": "mandatory cycle lane" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "cycle lane marked on road", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "lane marking type", + "valid_options": [ + { + "option": "advisory cycle lane" + }, + { + "option": "bus lane" + }, + { + "option": "mandatory cycle lane" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "cycle lane marked on road", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "lane marking type", + "valid_options": [ + { + "option": "advisory cycle lane" + }, + { + "option": "bus lane" + }, + { + "option": "mandatory cycle lane" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "cycle lane marked on road", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "lane marking type", + "valid_options": [ + { + "option": "advisory cycle lane" + }, + { + "option": "bus lane" + }, + { + "option": "mandatory cycle lane" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no cycling provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no cycling provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no cycling provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no cycling provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no cycling provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no equestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no equestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no equestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no equestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no equestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no pedestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no pedestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no pedestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no pedestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no pedestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "pavement or footway", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "pavement width", + "unit": "m", + "type": "contextual" + }, + { + "name": "surface grip", + "unit": "ptv", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a buffer", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "paved with greater than 5mm joints" + }, + { + "option": "paved with less than 5mm joints" + }, + { + "option": "paved with mortared joints" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "paved with greater than 5mm joints" + }, + { + "option": "paved with less than 5mm joints" + }, + { + "option": "paved with mortared joints" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + } + ] + }, + { + "name": "pavement or footway", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "pavement width", + "unit": "m", + "type": "contextual" + }, + { + "name": "surface grip", + "unit": "ptv", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a buffer", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "paved with greater than 5mm joints" + }, + { + "option": "paved with less than 5mm joints" + }, + { + "option": "paved with mortared joints" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "paved with greater than 5mm joints" + }, + { + "option": "paved with less than 5mm joints" + }, + { + "option": "paved with mortared joints" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + } + ] + }, + { + "name": "pavement or footway", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "pavement width", + "unit": "m", + "type": "contextual" + }, + { + "name": "surface grip", + "unit": "ptv", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a buffer", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "paved with greater than 5mm joints" + }, + { + "option": "paved with less than 5mm joints" + }, + { + "option": "paved with mortared joints" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "paved with greater than 5mm joints" + }, + { + "option": "paved with less than 5mm joints" + }, + { + "option": "paved with mortared joints" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + } + ] + }, + { + "name": "quiet link", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "quiet link", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "quiet link", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "quiet link", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "quiet link", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "segregated cycle track", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "track width", + "unit": "m", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclist direction", + "valid_options": [ + { + "option": "bi-directional" + }, + { + "option": "single direction" + } + ] + }, + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "has cyclist barriers causing dismount", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is at pavement level", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by intermittent object placement", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is stepped up from carriageway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "blocks" + }, + { + "option": "hand-laid asphalt" + }, + { + "option": "machine-laid asphalt" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclist direction", + "valid_options": [ + { + "option": "bi-directional" + }, + { + "option": "single direction" + } + ] + }, + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "has cyclist barriers causing dismount", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "blocks" + }, + { + "option": "hand-laid asphalt" + }, + { + "option": "machine-laid asphalt" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + } + ] + }, + { + "name": "segregated cycle track", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "track width", + "unit": "m", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclist direction", + "valid_options": [ + { + "option": "bi-directional" + }, + { + "option": "single direction" + } + ] + }, + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "has cyclist barriers causing dismount", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is at pavement level", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by intermittent object placement", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is stepped up from carriageway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "blocks" + }, + { + "option": "hand-laid asphalt" + }, + { + "option": "machine-laid asphalt" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] }, - ], - possible_contexts: [ { - context: "unspecified", - possible_features: [ + "context": "unspecified", + "possible_features": [ { - feature: "side of road", - valid_options: [ + "feature": "cyclist direction", + "valid_options": [ { - option: "left", + "option": "bi-directional" }, { - option: "right", + "option": "single direction" + } + ] + }, + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "has cyclist barriers causing dismount", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, - ], - }, - ], - }, - { - name: "no equestrian provision", - possible_measurements: [ - { - name: "highway lane width", - unit: "m", - type: "contextual", - }, - { - name: "link segment length", - unit: "m", - type: "output", - }, - { - name: "vehicle 85th percentile speed", - unit: "mph", - type: "contextual", - }, - { - name: "vehicle flow (daily)", - unit: "vpd", - type: "contextual", - }, - { - name: "vehicle flow (peak hour)", - unit: "vph", - type: "contextual", - }, - ], - possible_contexts: [ - { - context: "unspecified", - possible_features: [ { - feature: "side of road", - valid_options: [ + "feature": "horses expected on link", + "valid_options": [ { - option: "left", + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" }, { - option: "right", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, - ], - }, - ], - }, - { - name: "no pedestrian provision", - possible_measurements: [ - { - name: "highway lane width", - unit: "m", - type: "contextual", - }, - { - name: "link segment length", - unit: "m", - type: "output", - }, - { - name: "vehicle 85th percentile speed", - unit: "mph", - type: "contextual", - }, - { - name: "vehicle flow (daily)", - unit: "vpd", - type: "contextual", - }, - { - name: "vehicle flow (peak hour)", - unit: "vph", - type: "contextual", - }, - ], - possible_contexts: [ - { - context: "unspecified", - possible_features: [ { - feature: "side of road", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "left", + "option": "no" }, { - option: "right", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, - ], - }, - ], + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "blocks" + }, + { + "option": "hand-laid asphalt" + }, + { + "option": "machine-laid asphalt" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + } + ] }, { - name: "pavement or footway", - possible_measurements: [ + "name": "shared use track", + "possible_measurements": [ { - name: "link segment length", - unit: "m", - type: "output", + "name": "link segment length", + "unit": "m", + "type": "output" }, { - name: "pavement width", - unit: "m", - type: "contextual", + "name": "surface grip", + "unit": "ptv", + "type": "contextual" }, { - name: "surface grip", - unit: "ptv", - type: "contextual", - }, + "name": "track width", + "unit": "m", + "type": "contextual" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "alongside carriageway", - possible_features: [ + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclist direction", + "valid_options": [ + { + "option": "bi-directional" + }, + { + "option": "single direction" + } + ] + }, { - feature: "cyclists expected on link", - valid_options: [ + "feature": "cyclists expected on link", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "horses expected on link", - valid_options: [ + "feature": "has cyclist barriers causing dismount", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "horses expected on link", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a buffer", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "is separated from carriageway by a kerb", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "is stepped up from carriageway", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, { - option: "no", + "option": "no lighting" }, { - option: "yes", + "option": "short stretches of darkness otherwise well-lit" }, - ], + { + "option": "well-lit" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "pedestrians expected on link", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" }, - ], + { + "option": "right" + } + ] }, { - feature: "is separated from carriageway by a buffer", - valid_options: [ + "feature": "surface type", + "valid_options": [ { - option: "no", + "option": "bound and porous" }, { - option: "yes", + "option": "bound and sealed" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclist direction", + "valid_options": [ + { + "option": "bi-directional" }, - ], + { + "option": "single direction" + } + ] }, { - feature: "is separated from carriageway by a kerb", - valid_options: [ + "feature": "cyclists expected on link", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "has cyclist barriers causing dismount", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "lighting", - valid_options: [ + "feature": "horses expected on link", + "valid_options": [ { - option: "bat-friendly lighting", + "option": "no" }, { - option: "long stretches of darkness", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" }, { - option: "no lighting", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" }, { - option: "short stretches of darkness otherwise well-lit", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" }, { - option: "well-lit", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "pedestrians expected on link", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "yes", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "side of road", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "left", + "option": "no" }, { - option: "right", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "surface type", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "bound and porous", + "option": "no" }, { - option: "bound and sealed", + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" }, { - option: "paved with greater than 5mm joints", + "option": "long stretches of darkness" }, { - option: "paved with less than 5mm joints", + "option": "no lighting" }, { - option: "paved with mortared joints", + "option": "short stretches of darkness otherwise well-lit" }, { - option: "unbound or unsealed", + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, - ], + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + } + ] + }, + { + "name": "shared use track", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "surface grip", + "unit": "ptv", + "type": "contextual" }, { - context: "unspecified", - possible_features: [ + "name": "track width", + "unit": "m", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ { - feature: "cyclists expected on link", - valid_options: [ + "feature": "cyclist direction", + "valid_options": [ { - option: "no", + "option": "bi-directional" }, - ], + { + "option": "single direction" + } + ] }, { - feature: "horses expected on link", - valid_options: [ + "feature": "cyclists expected on link", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "has cyclist barriers causing dismount", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "horses expected on link", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "lighting", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "bat-friendly lighting", + "option": "no" }, { - option: "long stretches of darkness", - }, + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no lighting", + "option": "no" }, { - option: "short stretches of darkness otherwise well-lit", + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a buffer", + "valid_options": [ + { + "option": "no" }, { - option: "well-lit", + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "pedestrians expected on link", - valid_options: [ + "feature": "is stepped up from carriageway", + "valid_options": [ { - option: "yes", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "surface type", - valid_options: [ + "feature": "lighting", + "valid_options": [ { - option: "bound and porous", + "option": "bat-friendly lighting" }, { - option: "bound and sealed", + "option": "long stretches of darkness" }, { - option: "paved with greater than 5mm joints", + "option": "no lighting" }, { - option: "paved with less than 5mm joints", + "option": "short stretches of darkness otherwise well-lit" }, { - option: "paved with mortared joints", + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" }, { - option: "unbound or unsealed", + "option": "yes" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" }, - ], + { + "option": "right" + } + ] }, - ], - }, - ], - }, - { - name: "quiet link", - possible_measurements: [ - { - name: "highway lane width", - unit: "m", - type: "contextual", - }, - { - name: "link segment length", - unit: "m", - type: "output", - }, - { - name: "vehicle 85th percentile speed", - unit: "mph", - type: "contextual", - }, - { - name: "vehicle flow (daily)", - unit: "vpd", - type: "contextual", - }, - { - name: "vehicle flow (peak hour)", - unit: "vph", - type: "contextual", + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] }, - ], - possible_contexts: [ { - context: "unspecified", - possible_features: [ + "context": "unspecified", + "possible_features": [ { - feature: "cyclists expected on link", - valid_options: [ + "feature": "cyclist direction", + "valid_options": [ { - option: "no", + "option": "bi-directional" }, { - option: "yes", - }, - ], + "option": "single direction" + } + ] }, { - feature: "horses expected on link", - valid_options: [ + "feature": "cyclists expected on link", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "has cyclist barriers causing dismount", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "horses expected on link", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "lighting", - valid_options: [ + "feature": "lighting", + "valid_options": [ { - option: "bat-friendly lighting", + "option": "bat-friendly lighting" }, { - option: "long stretches of darkness", + "option": "long stretches of darkness" }, { - option: "no lighting", + "option": "no lighting" }, { - option: "short stretches of darkness otherwise well-lit", + "option": "short stretches of darkness otherwise well-lit" }, { - option: "well-lit", + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "pedestrians expected on link", - valid_options: [ + "feature": "surface type", + "valid_options": [ { - option: "no", + "option": "bound and porous" }, { - option: "yes", + "option": "bound and sealed" }, - ], - }, - ], - }, - ], + { + "option": "unbound or unsealed" + } + ] + } + ] + } + ] }, { - name: "segregated cycle track", - possible_measurements: [ + "name": "shared use track", + "possible_measurements": [ { - name: "link segment length", - unit: "m", - type: "output", + "name": "link segment length", + "unit": "m", + "type": "output" }, { - name: "track width", - unit: "m", - type: "contextual", + "name": "surface grip", + "unit": "ptv", + "type": "contextual" }, + { + "name": "track width", + "unit": "m", + "type": "contextual" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "alongside carriageway", - possible_features: [ + "context": "alongside carriageway", + "possible_features": [ { - feature: "cyclist direction", - valid_options: [ - { - option: "bi-directional", - }, + "feature": "cyclist direction", + "valid_options": [ { - option: "single direction", + "option": "bi-directional" }, - ], - }, - { - feature: "cyclists expected on link", - valid_options: [ { - option: "yes", - }, - ], + "option": "single direction" + } + ] }, { - feature: "has cyclist barriers causing dismount", - valid_options: [ + "feature": "cyclists expected on link", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "horses expected on link", - valid_options: [ + "feature": "has cyclist barriers causing dismount", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "horses expected on link", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is at pavement level", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is separated from carriageway by a kerb", - valid_options: [ + "feature": "is separated from carriageway by a buffer", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: - "is separated from carriageway by intermittent object placement", - valid_options: [ + "feature": "is separated from carriageway by a kerb", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is stepped up from carriageway", - valid_options: [ + "feature": "is stepped up from carriageway", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "lighting", - valid_options: [ + "feature": "lighting", + "valid_options": [ { - option: "bat-friendly lighting", + "option": "bat-friendly lighting" }, { - option: "long stretches of darkness", + "option": "long stretches of darkness" }, { - option: "no lighting", + "option": "no lighting" }, { - option: "short stretches of darkness otherwise well-lit", + "option": "short stretches of darkness otherwise well-lit" }, { - option: "well-lit", - }, - ], + "option": "well-lit" + } + ] }, { - feature: "pedestrians expected on link", - valid_options: [ + "feature": "pedestrians expected on link", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "side of road", - valid_options: [ + "feature": "side of road", + "valid_options": [ { - option: "left", + "option": "left" }, { - option: "right", - }, - ], + "option": "right" + } + ] }, { - feature: "surface type", - valid_options: [ + "feature": "surface type", + "valid_options": [ { - option: "blocks", + "option": "bound and porous" }, { - option: "hand-laid asphalt", + "option": "bound and sealed" }, { - option: "machine-laid asphalt", - }, - { - option: "unbound or unsealed", - }, - ], - }, - ], + "option": "unbound or unsealed" + } + ] + } + ] }, { - context: "unspecified", - possible_features: [ + "context": "unspecified", + "possible_features": [ { - feature: "cyclist direction", - valid_options: [ + "feature": "cyclist direction", + "valid_options": [ { - option: "bi-directional", + "option": "bi-directional" }, { - option: "single direction", - }, - ], + "option": "single direction" + } + ] }, { - feature: "cyclists expected on link", - valid_options: [ + "feature": "cyclists expected on link", + "valid_options": [ { - option: "yes", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "has cyclist barriers causing dismount", - valid_options: [ + "feature": "has cyclist barriers causing dismount", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "horses expected on link", - valid_options: [ + "feature": "horses expected on link", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "lighting", - valid_options: [ + "feature": "lighting", + "valid_options": [ { - option: "bat-friendly lighting", + "option": "bat-friendly lighting" }, { - option: "long stretches of darkness", + "option": "long stretches of darkness" }, { - option: "no lighting", + "option": "no lighting" }, { - option: "short stretches of darkness otherwise well-lit", + "option": "short stretches of darkness otherwise well-lit" }, { - option: "well-lit", - }, - ], + "option": "well-lit" + } + ] }, { - feature: "pedestrians expected on link", - valid_options: [ + "feature": "pedestrians expected on link", + "valid_options": [ { - option: "no", + "option": "no" }, - ], + { + "option": "yes" + } + ] }, { - feature: "surface type", - valid_options: [ - { - option: "blocks", - }, + "feature": "surface type", + "valid_options": [ { - option: "hand-laid asphalt", + "option": "bound and porous" }, { - option: "machine-laid asphalt", + "option": "bound and sealed" }, { - option: "unbound or unsealed", - }, - ], - }, - ], - }, - ], + "option": "unbound or unsealed" + } + ] + } + ] + } + ] }, { - name: "shared use track", - possible_measurements: [ + "name": "trotting strip", + "possible_measurements": [ { - name: "link segment length", - unit: "m", - type: "output", + "name": "link segment length", + "unit": "m", + "type": "output" }, { - name: "surface grip", - unit: "ptv", - type: "contextual", - }, - { - name: "track width", - unit: "m", - type: "contextual", - }, + "name": "trotting strip width", + "unit": "m", + "type": "contextual" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "alongside carriageway", - possible_features: [ - { - feature: "cyclist direction", - valid_options: [ - { - option: "bi-directional", - }, - { - option: "single direction", - }, - ], - }, + "context": "alongside carriageway", + "possible_features": [ { - feature: "cyclists expected on link", - valid_options: [ - { - option: "no", - }, + "feature": "cyclists expected on link", + "valid_options": [ { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "has cyclist barriers causing dismount", - valid_options: [ + "feature": "horses expected on link", + "valid_options": [ { - option: "no", - }, - { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "horses expected on link", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "is at pavement level", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is separated from carriageway by a buffer", - valid_options: [ + "feature": "is separated from carriageway by a kerb", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is separated from carriageway by a kerb", - valid_options: [ + "feature": "is separated from carriageway by intermittent object placement", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is stepped up from carriageway", - valid_options: [ + "feature": "is stepped up from carriageway", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "lighting", - valid_options: [ + "feature": "lighting", + "valid_options": [ { - option: "bat-friendly lighting", + "option": "bat-friendly lighting" }, { - option: "long stretches of darkness", + "option": "long stretches of darkness" }, { - option: "no lighting", + "option": "no lighting" }, { - option: "short stretches of darkness otherwise well-lit", + "option": "short stretches of darkness otherwise well-lit" }, { - option: "well-lit", - }, - ], + "option": "well-lit" + } + ] }, { - feature: "pedestrians expected on link", - valid_options: [ + "feature": "pedestrians expected on link", + "valid_options": [ { - option: "no", - }, - { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "side of road", - valid_options: [ + "feature": "side of road", + "valid_options": [ { - option: "left", + "option": "left" }, { - option: "right", - }, - ], + "option": "right" + } + ] }, { - feature: "surface type", - valid_options: [ + "feature": "surface type", + "valid_options": [ { - option: "bound and porous", + "option": "bound and porous" }, { - option: "bound and sealed", + "option": "bound and sealed" }, { - option: "unbound or unsealed", - }, - ], - }, - ], + "option": "grass" + } + ] + } + ] }, { - context: "unspecified", - possible_features: [ - { - feature: "cyclist direction", - valid_options: [ - { - option: "bi-directional", - }, - { - option: "single direction", - }, - ], - }, - { - feature: "cyclists expected on link", - valid_options: [ - { - option: "no", - }, - { - option: "yes", - }, - ], - }, + "context": "unspecified", + "possible_features": [ { - feature: "has cyclist barriers causing dismount", - valid_options: [ - { - option: "no", - }, + "feature": "cyclists expected on link", + "valid_options": [ { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "horses expected on link", - valid_options: [ - { - option: "no", - }, + "feature": "horses expected on link", + "valid_options": [ { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "lighting", - valid_options: [ + "feature": "lighting", + "valid_options": [ { - option: "bat-friendly lighting", + "option": "bat-friendly lighting" }, { - option: "long stretches of darkness", + "option": "long stretches of darkness" }, { - option: "no lighting", + "option": "no lighting" }, { - option: "short stretches of darkness otherwise well-lit", + "option": "short stretches of darkness otherwise well-lit" }, { - option: "well-lit", - }, - ], + "option": "well-lit" + } + ] }, { - feature: "pedestrians expected on link", - valid_options: [ - { - option: "no", - }, + "feature": "pedestrians expected on link", + "valid_options": [ { - option: "yes", - }, - ], + "option": "no" + } + ] }, { - feature: "surface type", - valid_options: [ + "feature": "surface type", + "valid_options": [ { - option: "bound and porous", + "option": "bound and porous" }, { - option: "bound and sealed", + "option": "bound and sealed" }, { - option: "unbound or unsealed", - }, - ], - }, - ], - }, - ], + "option": "grass" + } + ] + } + ] + } + ] }, { - name: "trotting strip", - possible_measurements: [ + "name": "trotting strip", + "possible_measurements": [ { - name: "link segment length", - unit: "m", - type: "output", + "name": "link segment length", + "unit": "m", + "type": "output" }, { - name: "trotting strip width", - unit: "m", - type: "contextual", - }, + "name": "trotting strip width", + "unit": "m", + "type": "contextual" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "alongside carriageway", - possible_features: [ + "context": "alongside carriageway", + "possible_features": [ { - feature: "cyclists expected on link", - valid_options: [ + "feature": "cyclists expected on link", + "valid_options": [ { - option: "no", - }, - ], + "option": "no" + } + ] }, { - feature: "horses expected on link", - valid_options: [ + "feature": "horses expected on link", + "valid_options": [ { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is at pavement level", - valid_options: [ + "feature": "is at pavement level", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is separated from carriageway by a kerb", - valid_options: [ + "feature": "is separated from carriageway by a kerb", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: - "is separated from carriageway by intermittent object placement", - valid_options: [ + "feature": "is separated from carriageway by intermittent object placement", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "is stepped up from carriageway", - valid_options: [ + "feature": "is stepped up from carriageway", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "lighting", - valid_options: [ + "feature": "lighting", + "valid_options": [ { - option: "bat-friendly lighting", + "option": "bat-friendly lighting" }, { - option: "long stretches of darkness", + "option": "long stretches of darkness" }, { - option: "no lighting", + "option": "no lighting" }, { - option: "short stretches of darkness otherwise well-lit", + "option": "short stretches of darkness otherwise well-lit" }, { - option: "well-lit", - }, - ], + "option": "well-lit" + } + ] }, { - feature: "pedestrians expected on link", - valid_options: [ + "feature": "pedestrians expected on link", + "valid_options": [ { - option: "no", - }, - ], + "option": "no" + } + ] }, { - feature: "side of road", - valid_options: [ + "feature": "side of road", + "valid_options": [ { - option: "left", + "option": "left" }, { - option: "right", - }, - ], + "option": "right" + } + ] }, { - feature: "surface type", - valid_options: [ + "feature": "surface type", + "valid_options": [ { - option: "bound and porous", + "option": "bound and porous" }, { - option: "bound and sealed", + "option": "bound and sealed" }, { - option: "grass", - }, - ], - }, - ], + "option": "grass" + } + ] + } + ] }, { - context: "unspecified", - possible_features: [ + "context": "unspecified", + "possible_features": [ { - feature: "cyclists expected on link", - valid_options: [ + "feature": "cyclists expected on link", + "valid_options": [ { - option: "no", - }, - ], + "option": "no" + } + ] }, { - feature: "horses expected on link", - valid_options: [ + "feature": "horses expected on link", + "valid_options": [ { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "lighting", - valid_options: [ + "feature": "lighting", + "valid_options": [ { - option: "bat-friendly lighting", + "option": "bat-friendly lighting" }, { - option: "long stretches of darkness", + "option": "long stretches of darkness" }, { - option: "no lighting", + "option": "no lighting" }, { - option: "short stretches of darkness otherwise well-lit", + "option": "short stretches of darkness otherwise well-lit" }, { - option: "well-lit", - }, - ], + "option": "well-lit" + } + ] }, { - feature: "pedestrians expected on link", - valid_options: [ + "feature": "pedestrians expected on link", + "valid_options": [ { - option: "no", - }, - ], + "option": "no" + } + ] }, { - feature: "surface type", - valid_options: [ + "feature": "surface type", + "valid_options": [ { - option: "bound and porous", + "option": "bound and porous" }, { - option: "bound and sealed", + "option": "bound and sealed" }, { - option: "grass", - }, - ], - }, - ], - }, - ], - }, - ], + "option": "grass" + } + ] + } + ] + } + ] + } + ] }, - modal_filter: { - group: "modal filter", - types: [ + "modal_filter": { + "group": "modal filter", + "types": [ { - name: "bollard / planter", - possible_measurements: [ + "name": "bollard / planter", + "possible_measurements": [ { - name: "number of modal filters", - unit: "modal filters", - type: "output", - }, + "name": "number of modal filters", + "unit": "modal filters", + "type": "output" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "unspecified", - possible_features: [ + "context": "unspecified", + "possible_features": [ { - feature: "accessibility", - valid_options: [ + "feature": "accessibility", + "valid_options": [ { - option: "accessible to wheelchair users", + "option": "accessible to wheelchair users" }, { - option: "inaccessible to wheelchair users", - }, - ], + "option": "inaccessible to wheelchair users" + } + ] }, { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "timing", - valid_options: [ + "feature": "timing", + "valid_options": [ { - option: "at all times", + "option": "at all times" }, { - option: "part time", - }, - ], - }, - ], - }, - ], + "option": "part time" + } + ] + } + ] + } + ] }, { - name: "bus / tram gate", - possible_measurements: [ + "name": "bus / tram gate", + "possible_measurements": [ { - name: "number of modal filters", - unit: "modal filters", - type: "output", - }, + "name": "number of modal filters", + "unit": "modal filters", + "type": "output" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "unspecified", - possible_features: [ + "context": "unspecified", + "possible_features": [ { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "timing", - valid_options: [ + "feature": "timing", + "valid_options": [ { - option: "at all times", + "option": "at all times" }, { - option: "part time", - }, - ], - }, - ], - }, - ], + "option": "part time" + } + ] + } + ] + } + ] }, { - name: "camera restriction", - possible_measurements: [ + "name": "camera restriction", + "possible_measurements": [ { - name: "number of modal filters", - unit: "modal filters", - type: "output", - }, + "name": "number of modal filters", + "unit": "modal filters", + "type": "output" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "unspecified", - possible_features: [ + "context": "unspecified", + "possible_features": [ { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "timing", - valid_options: [ + "feature": "timing", + "valid_options": [ { - option: "at all times", + "option": "at all times" }, { - option: "part time", - }, - ], - }, - ], - }, - ], + "option": "part time" + } + ] + } + ] + } + ] }, { - name: "school street", - possible_measurements: [ + "name": "school street", + "possible_measurements": [ { - name: "number of modal filters", - unit: "modal filters", - type: "output", - }, + "name": "number of modal filters", + "unit": "modal filters", + "type": "output" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "unspecified", - possible_features: [ + "context": "unspecified", + "possible_features": [ { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "timing", - valid_options: [ + "feature": "timing", + "valid_options": [ { - option: "at all times", + "option": "at all times" }, { - option: "part time", - }, - ], - }, - ], - }, - ], + "option": "part time" + } + ] + } + ] + } + ] }, { - name: "signed restriction", - possible_measurements: [ + "name": "signed restriction", + "possible_measurements": [ { - name: "number of modal filters", - unit: "modal filters", - type: "output", - }, + "name": "number of modal filters", + "unit": "modal filters", + "type": "output" + } ], - possible_contexts: [ + "possible_contexts": [ { - context: "unspecified", - possible_features: [ + "context": "unspecified", + "possible_features": [ { - feature: "includes place-making: art", - valid_options: [ + "feature": "includes place-making: art", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: community garden", - valid_options: [ + "feature": "includes place-making: community garden", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: greening", - valid_options: [ + "feature": "includes place-making: greening", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: landscaping", - valid_options: [ + "feature": "includes place-making: landscaping", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: other", - valid_options: [ + "feature": "includes place-making: other", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: pocket park", - valid_options: [ + "feature": "includes place-making: pocket park", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: social space", - valid_options: [ + "feature": "includes place-making: social space", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "includes place-making: wayfinding", - valid_options: [ + "feature": "includes place-making: wayfinding", + "valid_options": [ { - option: "no", + "option": "no" }, { - option: "yes", - }, - ], + "option": "yes" + } + ] }, { - feature: "timing", - valid_options: [ + "feature": "timing", + "valid_options": [ { - option: "at all times", + "option": "at all times" }, { - option: "part time", - }, - ], - }, - ], - }, - ], - }, - ], + "option": "part time" + } + ] + } + ] + } + ] + } + ] }, "place-making": { - group: "place-making", - types: [], - }, -}; + "group": "place-making", + "types": [ + { + "name": "other place-making", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + }, + { + "name": "social space", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + }, + { + "name": "greening", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + }, + { + "name": "art", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + }, + { + "name": "pocket park", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + }, + { + "name": "landscaping", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + }, + { + "name": "wayfinding", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + }, + { + "name": "community garden", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + } + ] + } +} \ No newline at end of file diff --git a/src/lib/sketch/v3/infrastructure 3.json b/src/lib/sketch/v3/infrastructure 3.json new file mode 100644 index 00000000..3ba04d80 --- /dev/null +++ b/src/lib/sketch/v3/infrastructure 3.json @@ -0,0 +1,31717 @@ +{ + "infrastructure": [ + { + "group": "amenity", + "types": [ + { + "name": "bike hangar", + "possible_measurements": [ + { + "name": "capacity", + "unit": "bikes", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "bike parking", + "possible_measurements": [ + { + "name": "capacity", + "unit": "bikes", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + } + ] + }, + { + "group": "bus stop treatment", + "types": [ + { + "name": "bus stop bypass", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "bus stop placement on highway", + "valid_options": [ + { + "option": "built-out" + }, + { + "option": "in-line" + }, + { + "option": "lay-by" + } + ] + }, + { + "feature": "has bus stop shelter", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has level boarding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "level of interaction between cyclists and bus stop users", + "valid_options": [ + { + "option": "low interaction" + }, + { + "option": "medium interaction" + } + ] + } + ] + } + ] + }, + { + "name": "shared use bus stop", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "bus stop placement on highway", + "valid_options": [ + { + "option": "built-out" + }, + { + "option": "in-line" + }, + { + "option": "lay-by" + } + ] + }, + { + "feature": "has bus stop shelter", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has level boarding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "level of interaction between cyclists and bus stop users", + "valid_options": [ + { + "option": "high interaction" + } + ] + } + ] + } + ] + }, + { + "name": "bus stop boarder", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "bus stop placement on highway", + "valid_options": [ + { + "option": "built-out" + }, + { + "option": "in-line" + }, + { + "option": "lay-by" + } + ] + }, + { + "feature": "has bus stop shelter", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has level boarding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "level of interaction between cyclists and bus stop users", + "valid_options": [ + { + "option": "high interaction" + }, + { + "option": "low interaction" + }, + { + "option": "medium interaction" + } + ] + } + ] + } + ] + }, + { + "name": "untreated bus stop", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "bus stop placement on highway", + "valid_options": [ + { + "option": "built-out" + }, + { + "option": "in-line" + }, + { + "option": "lay-by" + } + ] + }, + { + "feature": "has bus stop shelter", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has level boarding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "level of interaction between cyclists and bus stop users", + "valid_options": [ + { + "option": "low interaction" + } + ] + } + ] + } + ] + } + ] + }, + { + "group": "crossing", + "types": [ + { + "name": "marked priority", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "marked priority", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "marked priority", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "marked priority", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "marked priority", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "marked priority", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "pedestrians have priority over traffic", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "parallel zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "parallel zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "parallel zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "parallel zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "parallel zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "ped-x", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "ped-x", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "ped-x", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "ped-x", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "ped-x", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "ped-x", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "ped-x", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pegasus", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pegasus", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pegasus", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pegasus", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pegasus", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pegasus", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pegasus", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pelican", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pelican", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pelican", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pelican", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pelican", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pelican", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "pelican", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "puffin", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "puffin", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "puffin", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "puffin", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "puffin", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "puffin", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "puffin", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "sparrow", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "sparrow", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "sparrow", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "sparrow", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "sparrow", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "sparrow", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "sparrow", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "toucan", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "toucan", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "toucan", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "toucan", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "toucan", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "toucan", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "toucan", + "possible_measurements": [ + { + "name": "crossing speed", + "unit": "mps", + "type": "contextual" + }, + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "user wait time", + "unit": "s", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by audio", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by rotating cone", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "safe to cross indicated by visual aids", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "uncontrolled", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "uncontrolled", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "uncontrolled", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "uncontrolled", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "uncontrolled", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "uncontrolled", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "number of lanes crossed", + "unit": "lanes", + "type": "contextual" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + }, + { + "name": "zebra", + "possible_measurements": [ + { + "name": "number of crossings", + "unit": "crossings", + "type": "output" + }, + { + "name": "refuge width", + "unit": "m", + "type": "contextual" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "at side-road", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is continuous footway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "junction has tight radii", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "permitted movements at side-road junctions", + "valid_options": [ + { + "option": "entry and exit" + }, + { + "option": "entry only" + }, + { + "option": "exit only" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "stand-alone", + "possible_features": [ + { + "feature": "fulfils routing desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "fulfils single movement desire line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "provides connection to bus stop", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "has buildout", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has dropped kerbs", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has pedestrian refuge", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has raised table", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has tactile paving", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "setback from junction", + "valid_options": [ + { + "option": "fully setback" + }, + { + "option": "not setback" + }, + { + "option": "partially setback" + } + ] + } + ] + } + ] + } + ] + }, + { + "group": "junction treatment", + "types": [ + { + "name": "cycle facilities at traffic signals", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes advanced stop line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle and pedestrian only stage", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle bypass", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle gate", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes early release", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes hold the left", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes separate cycle phases", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes two-stage right turn", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "cycle facilities at traffic signals", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes advanced stop line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle and pedestrian only stage", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle bypass", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle gate", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes early release", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes hold the left", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes separate cycle phases", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes two-stage right turn", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "cycle facilities at traffic signals", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes advanced stop line", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle and pedestrian only stage", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle bypass", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes cycle gate", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes early release", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes hold the left", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes separate cycle phases", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes two-stage right turn", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "cycle optimised protected signals (CYCLOPS)", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "cycle optimised protected signals (CYCLOPS)", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "cycle optimised protected signals (CYCLOPS)", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "Dutch-style roundabout", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "Dutch-style roundabout", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "Dutch-style roundabout", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "roundabout", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "roundabout", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "roundabout", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "tight entry/exit radii", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "tight entry/exit radii", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + }, + { + "name": "tight entry/exit radii", + "possible_measurements": [ + { + "name": "ATE Junction Assessment Tool score", + "unit": "%", + "type": "contextual" + }, + { + "name": "number of junction arms", + "unit": "arms", + "type": "contextual" + }, + { + "name": "number of junctions", + "unit": "junctions", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is signalised", + "valid_options": [ + { + "option": "no" + } + ] + } + ] + } + ] + } + ] + }, + { + "group": "link segment", + "types": [ + { + "name": "cycle lane marked on road", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "lane marking type", + "valid_options": [ + { + "option": "advisory cycle lane" + }, + { + "option": "bus lane" + }, + { + "option": "mandatory cycle lane" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "cycle lane marked on road", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "lane marking type", + "valid_options": [ + { + "option": "advisory cycle lane" + }, + { + "option": "bus lane" + }, + { + "option": "mandatory cycle lane" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "cycle lane marked on road", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "lane marking type", + "valid_options": [ + { + "option": "advisory cycle lane" + }, + { + "option": "bus lane" + }, + { + "option": "mandatory cycle lane" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "cycle lane marked on road", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "lane marking type", + "valid_options": [ + { + "option": "advisory cycle lane" + }, + { + "option": "bus lane" + }, + { + "option": "mandatory cycle lane" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "cycle lane marked on road", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "lane marking type", + "valid_options": [ + { + "option": "advisory cycle lane" + }, + { + "option": "bus lane" + }, + { + "option": "mandatory cycle lane" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no cycling provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no cycling provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no cycling provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no cycling provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no cycling provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no equestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no equestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no equestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no equestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no equestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no pedestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no pedestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no pedestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no pedestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "no pedestrian provision", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + } + ] + } + ] + }, + { + "name": "pavement or footway", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "pavement width", + "unit": "m", + "type": "contextual" + }, + { + "name": "surface grip", + "unit": "ptv", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a buffer", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "paved with greater than 5mm joints" + }, + { + "option": "paved with less than 5mm joints" + }, + { + "option": "paved with mortared joints" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "paved with greater than 5mm joints" + }, + { + "option": "paved with less than 5mm joints" + }, + { + "option": "paved with mortared joints" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + } + ] + }, + { + "name": "pavement or footway", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "pavement width", + "unit": "m", + "type": "contextual" + }, + { + "name": "surface grip", + "unit": "ptv", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a buffer", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "paved with greater than 5mm joints" + }, + { + "option": "paved with less than 5mm joints" + }, + { + "option": "paved with mortared joints" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "paved with greater than 5mm joints" + }, + { + "option": "paved with less than 5mm joints" + }, + { + "option": "paved with mortared joints" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + } + ] + }, + { + "name": "pavement or footway", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "pavement width", + "unit": "m", + "type": "contextual" + }, + { + "name": "surface grip", + "unit": "ptv", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a buffer", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "paved with greater than 5mm joints" + }, + { + "option": "paved with less than 5mm joints" + }, + { + "option": "paved with mortared joints" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "paved with greater than 5mm joints" + }, + { + "option": "paved with less than 5mm joints" + }, + { + "option": "paved with mortared joints" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + } + ] + }, + { + "name": "quiet link", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "quiet link", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "quiet link", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "quiet link", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "quiet link", + "possible_measurements": [ + { + "name": "highway lane width", + "unit": "m", + "type": "contextual" + }, + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "vehicle 85th percentile speed", + "unit": "mph", + "type": "contextual" + }, + { + "name": "vehicle flow (daily)", + "unit": "vpd", + "type": "contextual" + }, + { + "name": "vehicle flow (peak hour)", + "unit": "vph", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + } + ] + } + ] + }, + { + "name": "segregated cycle track", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "track width", + "unit": "m", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclist direction", + "valid_options": [ + { + "option": "bi-directional" + }, + { + "option": "single direction" + } + ] + }, + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "has cyclist barriers causing dismount", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is at pavement level", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by intermittent object placement", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is stepped up from carriageway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "blocks" + }, + { + "option": "hand-laid asphalt" + }, + { + "option": "machine-laid asphalt" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclist direction", + "valid_options": [ + { + "option": "bi-directional" + }, + { + "option": "single direction" + } + ] + }, + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "has cyclist barriers causing dismount", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "blocks" + }, + { + "option": "hand-laid asphalt" + }, + { + "option": "machine-laid asphalt" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + } + ] + }, + { + "name": "segregated cycle track", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "track width", + "unit": "m", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclist direction", + "valid_options": [ + { + "option": "bi-directional" + }, + { + "option": "single direction" + } + ] + }, + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "has cyclist barriers causing dismount", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is at pavement level", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by intermittent object placement", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is stepped up from carriageway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "blocks" + }, + { + "option": "hand-laid asphalt" + }, + { + "option": "machine-laid asphalt" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclist direction", + "valid_options": [ + { + "option": "bi-directional" + }, + { + "option": "single direction" + } + ] + }, + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "has cyclist barriers causing dismount", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "blocks" + }, + { + "option": "hand-laid asphalt" + }, + { + "option": "machine-laid asphalt" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + } + ] + }, + { + "name": "shared use track", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "surface grip", + "unit": "ptv", + "type": "contextual" + }, + { + "name": "track width", + "unit": "m", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclist direction", + "valid_options": [ + { + "option": "bi-directional" + }, + { + "option": "single direction" + } + ] + }, + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has cyclist barriers causing dismount", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a buffer", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is stepped up from carriageway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclist direction", + "valid_options": [ + { + "option": "bi-directional" + }, + { + "option": "single direction" + } + ] + }, + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has cyclist barriers causing dismount", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + } + ] + }, + { + "name": "shared use track", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "surface grip", + "unit": "ptv", + "type": "contextual" + }, + { + "name": "track width", + "unit": "m", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclist direction", + "valid_options": [ + { + "option": "bi-directional" + }, + { + "option": "single direction" + } + ] + }, + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has cyclist barriers causing dismount", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a buffer", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is stepped up from carriageway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclist direction", + "valid_options": [ + { + "option": "bi-directional" + }, + { + "option": "single direction" + } + ] + }, + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has cyclist barriers causing dismount", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + } + ] + }, + { + "name": "shared use track", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "surface grip", + "unit": "ptv", + "type": "contextual" + }, + { + "name": "track width", + "unit": "m", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclist direction", + "valid_options": [ + { + "option": "bi-directional" + }, + { + "option": "single direction" + } + ] + }, + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has cyclist barriers causing dismount", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a buffer", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is stepped up from carriageway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclist direction", + "valid_options": [ + { + "option": "bi-directional" + }, + { + "option": "single direction" + } + ] + }, + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "has cyclist barriers causing dismount", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "unbound or unsealed" + } + ] + } + ] + } + ] + }, + { + "name": "trotting strip", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "trotting strip width", + "unit": "m", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is at pavement level", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by intermittent object placement", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is stepped up from carriageway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "grass" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "grass" + } + ] + } + ] + } + ] + }, + { + "name": "trotting strip", + "possible_measurements": [ + { + "name": "link segment length", + "unit": "m", + "type": "output" + }, + { + "name": "trotting strip width", + "unit": "m", + "type": "contextual" + } + ], + "possible_contexts": [ + { + "context": "alongside carriageway", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is at pavement level", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by a kerb", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is separated from carriageway by intermittent object placement", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "is stepped up from carriageway", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "side of road", + "valid_options": [ + { + "option": "left" + }, + { + "option": "right" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "grass" + } + ] + } + ] + }, + { + "context": "unspecified", + "possible_features": [ + { + "feature": "cyclists expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "horses expected on link", + "valid_options": [ + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "lighting", + "valid_options": [ + { + "option": "bat-friendly lighting" + }, + { + "option": "long stretches of darkness" + }, + { + "option": "no lighting" + }, + { + "option": "short stretches of darkness otherwise well-lit" + }, + { + "option": "well-lit" + } + ] + }, + { + "feature": "pedestrians expected on link", + "valid_options": [ + { + "option": "no" + } + ] + }, + { + "feature": "surface type", + "valid_options": [ + { + "option": "bound and porous" + }, + { + "option": "bound and sealed" + }, + { + "option": "grass" + } + ] + } + ] + } + ] + } + ] + }, + { + "group": "modal filter", + "types": [ + { + "name": "bollard / planter", + "possible_measurements": [ + { + "name": "number of modal filters", + "unit": "modal filters", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "accessibility", + "valid_options": [ + { + "option": "accessible to wheelchair users" + }, + { + "option": "inaccessible to wheelchair users" + } + ] + }, + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "timing", + "valid_options": [ + { + "option": "at all times" + }, + { + "option": "part time" + } + ] + } + ] + } + ] + }, + { + "name": "bus / tram gate", + "possible_measurements": [ + { + "name": "number of modal filters", + "unit": "modal filters", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "timing", + "valid_options": [ + { + "option": "at all times" + }, + { + "option": "part time" + } + ] + } + ] + } + ] + }, + { + "name": "camera restriction", + "possible_measurements": [ + { + "name": "number of modal filters", + "unit": "modal filters", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "timing", + "valid_options": [ + { + "option": "at all times" + }, + { + "option": "part time" + } + ] + } + ] + } + ] + }, + { + "name": "school street", + "possible_measurements": [ + { + "name": "number of modal filters", + "unit": "modal filters", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "timing", + "valid_options": [ + { + "option": "at all times" + }, + { + "option": "part time" + } + ] + } + ] + } + ] + }, + { + "name": "signed restriction", + "possible_measurements": [ + { + "name": "number of modal filters", + "unit": "modal filters", + "type": "output" + } + ], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "includes place-making: art", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: community garden", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: greening", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: landscaping", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: other", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: pocket park", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: social space", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "includes place-making: wayfinding", + "valid_options": [ + { + "option": "no" + }, + { + "option": "yes" + } + ] + }, + { + "feature": "timing", + "valid_options": [ + { + "option": "at all times" + }, + { + "option": "part time" + } + ] + } + ] + } + ] + } + ] + }, + { + "group": "place-making", + "types": [ + { + "name": "other place-making", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + }, + { + "name": "social space", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + }, + { + "name": "greening", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + }, + { + "name": "art", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + }, + { + "name": "pocket park", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + }, + { + "name": "landscaping", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + }, + { + "name": "wayfinding", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + }, + { + "name": "community garden", + "possible_measurements": [], + "possible_contexts": [ + { + "context": "unspecified", + "possible_features": [ + { + "feature": "None", + "valid_options": [] + } + ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/pages/ChooseArea.svelte b/src/pages/ChooseArea.svelte index c444daa8..0eb23d18 100644 --- a/src/pages/ChooseArea.svelte +++ b/src/pages/ChooseArea.svelte @@ -63,6 +63,7 @@ } filesPerAuthority = countFilesPerAuthority(); + // I need to do somethign here soateaetdgasd }); function onClick(e: CustomEvent) { From fb1a4115f4551bccb0c50560662315776b176c38 Mon Sep 17 00:00:00 2001 From: Peter York <133757676+Pete-Y-CS@users.noreply.github.com> Date: Thu, 30 Jul 2026 14:42:12 +0100 Subject: [PATCH 3/6] Delete src/lib/sketch/v3/infrastructure 3.json --- src/lib/sketch/v3/infrastructure 3.json | 31717 ---------------------- 1 file changed, 31717 deletions(-) delete mode 100644 src/lib/sketch/v3/infrastructure 3.json diff --git a/src/lib/sketch/v3/infrastructure 3.json b/src/lib/sketch/v3/infrastructure 3.json deleted file mode 100644 index 3ba04d80..00000000 --- a/src/lib/sketch/v3/infrastructure 3.json +++ /dev/null @@ -1,31717 +0,0 @@ -{ - "infrastructure": [ - { - "group": "amenity", - "types": [ - { - "name": "bike hangar", - "possible_measurements": [ - { - "name": "capacity", - "unit": "bikes", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - } - ] - } - ] - }, - { - "name": "bike parking", - "possible_measurements": [ - { - "name": "capacity", - "unit": "bikes", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - } - ] - } - ] - } - ] - }, - { - "group": "bus stop treatment", - "types": [ - { - "name": "bus stop bypass", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "bus stop placement on highway", - "valid_options": [ - { - "option": "built-out" - }, - { - "option": "in-line" - }, - { - "option": "lay-by" - } - ] - }, - { - "feature": "has bus stop shelter", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has level boarding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "level of interaction between cyclists and bus stop users", - "valid_options": [ - { - "option": "low interaction" - }, - { - "option": "medium interaction" - } - ] - } - ] - } - ] - }, - { - "name": "shared use bus stop", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "bus stop placement on highway", - "valid_options": [ - { - "option": "built-out" - }, - { - "option": "in-line" - }, - { - "option": "lay-by" - } - ] - }, - { - "feature": "has bus stop shelter", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has level boarding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "level of interaction between cyclists and bus stop users", - "valid_options": [ - { - "option": "high interaction" - } - ] - } - ] - } - ] - }, - { - "name": "bus stop boarder", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "bus stop placement on highway", - "valid_options": [ - { - "option": "built-out" - }, - { - "option": "in-line" - }, - { - "option": "lay-by" - } - ] - }, - { - "feature": "has bus stop shelter", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has level boarding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "level of interaction between cyclists and bus stop users", - "valid_options": [ - { - "option": "high interaction" - }, - { - "option": "low interaction" - }, - { - "option": "medium interaction" - } - ] - } - ] - } - ] - }, - { - "name": "untreated bus stop", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "bus stop placement on highway", - "valid_options": [ - { - "option": "built-out" - }, - { - "option": "in-line" - }, - { - "option": "lay-by" - } - ] - }, - { - "feature": "has bus stop shelter", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has level boarding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "level of interaction between cyclists and bus stop users", - "valid_options": [ - { - "option": "low interaction" - } - ] - } - ] - } - ] - } - ] - }, - { - "group": "crossing", - "types": [ - { - "name": "marked priority", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "number of lanes crossed", - "unit": "lanes", - "type": "contextual" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "marked priority", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "number of lanes crossed", - "unit": "lanes", - "type": "contextual" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "marked priority", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "number of lanes crossed", - "unit": "lanes", - "type": "contextual" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "marked priority", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "number of lanes crossed", - "unit": "lanes", - "type": "contextual" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "marked priority", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "number of lanes crossed", - "unit": "lanes", - "type": "contextual" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "marked priority", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "number of lanes crossed", - "unit": "lanes", - "type": "contextual" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "pedestrians have priority over traffic", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "parallel zebra", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "parallel zebra", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "parallel zebra", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "parallel zebra", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "parallel zebra", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "ped-x", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "ped-x", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "ped-x", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "ped-x", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "ped-x", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "ped-x", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "ped-x", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pegasus", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pegasus", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pegasus", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pegasus", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pegasus", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pegasus", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pegasus", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pelican", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pelican", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pelican", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pelican", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pelican", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pelican", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "pelican", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "puffin", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "puffin", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "puffin", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "puffin", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "puffin", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "puffin", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "puffin", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "sparrow", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "sparrow", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "sparrow", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "sparrow", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "sparrow", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "sparrow", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "sparrow", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "toucan", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "toucan", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "toucan", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "toucan", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "toucan", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "toucan", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "toucan", - "possible_measurements": [ - { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" - }, - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "user wait time", - "unit": "s", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by audio", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "uncontrolled", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "number of lanes crossed", - "unit": "lanes", - "type": "contextual" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "uncontrolled", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "number of lanes crossed", - "unit": "lanes", - "type": "contextual" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "uncontrolled", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "number of lanes crossed", - "unit": "lanes", - "type": "contextual" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "uncontrolled", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "number of lanes crossed", - "unit": "lanes", - "type": "contextual" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "uncontrolled", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "number of lanes crossed", - "unit": "lanes", - "type": "contextual" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "uncontrolled", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "number of lanes crossed", - "unit": "lanes", - "type": "contextual" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "zebra", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "zebra", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "zebra", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "zebra", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - }, - { - "name": "zebra", - "possible_measurements": [ - { - "name": "number of crossings", - "unit": "crossings", - "type": "output" - }, - { - "name": "refuge width", - "unit": "m", - "type": "contextual" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "at side-road", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is continuous footway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "junction has tight radii", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "permitted movements at side-road junctions", - "valid_options": [ - { - "option": "entry and exit" - }, - { - "option": "entry only" - }, - { - "option": "exit only" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "stand-alone", - "possible_features": [ - { - "feature": "fulfils routing desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "fulfils single movement desire line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "provides connection to bus stop", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "has buildout", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has dropped kerbs", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has pedestrian refuge", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has raised table", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has tactile paving", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "setback from junction", - "valid_options": [ - { - "option": "fully setback" - }, - { - "option": "not setback" - }, - { - "option": "partially setback" - } - ] - } - ] - } - ] - } - ] - }, - { - "group": "junction treatment", - "types": [ - { - "name": "cycle facilities at traffic signals", - "possible_measurements": [ - { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" - }, - { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" - }, - { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes advanced stop line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes cycle and pedestrian only stage", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes cycle bypass", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes cycle gate", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes early release", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes hold the left", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes separate cycle phases", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes two-stage right turn", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - } - ] - } - ] - }, - { - "name": "cycle facilities at traffic signals", - "possible_measurements": [ - { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" - }, - { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" - }, - { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes advanced stop line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes cycle and pedestrian only stage", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes cycle bypass", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes cycle gate", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes early release", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes hold the left", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes separate cycle phases", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes two-stage right turn", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - } - ] - } - ] - }, - { - "name": "cycle facilities at traffic signals", - "possible_measurements": [ - { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" - }, - { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" - }, - { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes advanced stop line", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes cycle and pedestrian only stage", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes cycle bypass", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes cycle gate", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes early release", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes hold the left", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes separate cycle phases", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes two-stage right turn", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "yes" - } - ] - } - ] - } - ] - }, - { - "name": "cycle optimised protected signals (CYCLOPS)", - "possible_measurements": [ - { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" - }, - { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" - }, - { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - } - ] - } - ] - }, - { - "name": "cycle optimised protected signals (CYCLOPS)", - "possible_measurements": [ - { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" - }, - { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" - }, - { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - } - ] - } - ] - }, - { - "name": "cycle optimised protected signals (CYCLOPS)", - "possible_measurements": [ - { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" - }, - { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" - }, - { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - } - ] - } - ] - }, - { - "name": "Dutch-style roundabout", - "possible_measurements": [ - { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" - }, - { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" - }, - { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - } - ] - } - ] - }, - { - "name": "Dutch-style roundabout", - "possible_measurements": [ - { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" - }, - { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" - }, - { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - } - ] - } - ] - }, - { - "name": "Dutch-style roundabout", - "possible_measurements": [ - { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" - }, - { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" - }, - { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - } - ] - } - ] - }, - { - "name": "roundabout", - "possible_measurements": [ - { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" - }, - { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" - }, - { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - } - ] - } - ] - }, - { - "name": "roundabout", - "possible_measurements": [ - { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" - }, - { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" - }, - { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - } - ] - } - ] - }, - { - "name": "roundabout", - "possible_measurements": [ - { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" - }, - { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" - }, - { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - } - ] - } - ] - }, - { - "name": "tight entry/exit radii", - "possible_measurements": [ - { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" - }, - { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" - }, - { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - } - ] - } - ] - }, - { - "name": "tight entry/exit radii", - "possible_measurements": [ - { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" - }, - { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" - }, - { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - } - ] - } - ] - }, - { - "name": "tight entry/exit radii", - "possible_measurements": [ - { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" - }, - { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" - }, - { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is signalised", - "valid_options": [ - { - "option": "no" - } - ] - } - ] - } - ] - } - ] - }, - { - "group": "link segment", - "types": [ - { - "name": "cycle lane marked on road", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "lane marking type", - "valid_options": [ - { - "option": "advisory cycle lane" - }, - { - "option": "bus lane" - }, - { - "option": "mandatory cycle lane" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "cycle lane marked on road", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "lane marking type", - "valid_options": [ - { - "option": "advisory cycle lane" - }, - { - "option": "bus lane" - }, - { - "option": "mandatory cycle lane" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "cycle lane marked on road", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "lane marking type", - "valid_options": [ - { - "option": "advisory cycle lane" - }, - { - "option": "bus lane" - }, - { - "option": "mandatory cycle lane" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "cycle lane marked on road", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "lane marking type", - "valid_options": [ - { - "option": "advisory cycle lane" - }, - { - "option": "bus lane" - }, - { - "option": "mandatory cycle lane" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "cycle lane marked on road", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "lane marking type", - "valid_options": [ - { - "option": "advisory cycle lane" - }, - { - "option": "bus lane" - }, - { - "option": "mandatory cycle lane" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "no cycling provision", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "no cycling provision", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "no cycling provision", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "no cycling provision", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "no cycling provision", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "no equestrian provision", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "no equestrian provision", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "no equestrian provision", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "no equestrian provision", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "no equestrian provision", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "no pedestrian provision", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "no pedestrian provision", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "no pedestrian provision", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "no pedestrian provision", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "no pedestrian provision", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - } - ] - } - ] - }, - { - "name": "pavement or footway", - "possible_measurements": [ - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "pavement width", - "unit": "m", - "type": "contextual" - }, - { - "name": "surface grip", - "unit": "ptv", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "alongside carriageway", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a buffer", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a kerb", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "paved with greater than 5mm joints" - }, - { - "option": "paved with less than 5mm joints" - }, - { - "option": "paved with mortared joints" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "paved with greater than 5mm joints" - }, - { - "option": "paved with less than 5mm joints" - }, - { - "option": "paved with mortared joints" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - } - ] - }, - { - "name": "pavement or footway", - "possible_measurements": [ - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "pavement width", - "unit": "m", - "type": "contextual" - }, - { - "name": "surface grip", - "unit": "ptv", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "alongside carriageway", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a buffer", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a kerb", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "paved with greater than 5mm joints" - }, - { - "option": "paved with less than 5mm joints" - }, - { - "option": "paved with mortared joints" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "paved with greater than 5mm joints" - }, - { - "option": "paved with less than 5mm joints" - }, - { - "option": "paved with mortared joints" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - } - ] - }, - { - "name": "pavement or footway", - "possible_measurements": [ - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "pavement width", - "unit": "m", - "type": "contextual" - }, - { - "name": "surface grip", - "unit": "ptv", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "alongside carriageway", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a buffer", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a kerb", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "paved with greater than 5mm joints" - }, - { - "option": "paved with less than 5mm joints" - }, - { - "option": "paved with mortared joints" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "paved with greater than 5mm joints" - }, - { - "option": "paved with less than 5mm joints" - }, - { - "option": "paved with mortared joints" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - } - ] - }, - { - "name": "quiet link", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - } - ] - } - ] - }, - { - "name": "quiet link", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - } - ] - } - ] - }, - { - "name": "quiet link", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - } - ] - } - ] - }, - { - "name": "quiet link", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - } - ] - } - ] - }, - { - "name": "quiet link", - "possible_measurements": [ - { - "name": "highway lane width", - "unit": "m", - "type": "contextual" - }, - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" - }, - { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" - }, - { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - } - ] - } - ] - }, - { - "name": "segregated cycle track", - "possible_measurements": [ - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "track width", - "unit": "m", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "alongside carriageway", - "possible_features": [ - { - "feature": "cyclist direction", - "valid_options": [ - { - "option": "bi-directional" - }, - { - "option": "single direction" - } - ] - }, - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "has cyclist barriers causing dismount", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is at pavement level", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a kerb", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by intermittent object placement", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is stepped up from carriageway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "blocks" - }, - { - "option": "hand-laid asphalt" - }, - { - "option": "machine-laid asphalt" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclist direction", - "valid_options": [ - { - "option": "bi-directional" - }, - { - "option": "single direction" - } - ] - }, - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "has cyclist barriers causing dismount", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "blocks" - }, - { - "option": "hand-laid asphalt" - }, - { - "option": "machine-laid asphalt" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - } - ] - }, - { - "name": "segregated cycle track", - "possible_measurements": [ - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "track width", - "unit": "m", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "alongside carriageway", - "possible_features": [ - { - "feature": "cyclist direction", - "valid_options": [ - { - "option": "bi-directional" - }, - { - "option": "single direction" - } - ] - }, - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "has cyclist barriers causing dismount", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is at pavement level", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a kerb", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by intermittent object placement", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is stepped up from carriageway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "blocks" - }, - { - "option": "hand-laid asphalt" - }, - { - "option": "machine-laid asphalt" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclist direction", - "valid_options": [ - { - "option": "bi-directional" - }, - { - "option": "single direction" - } - ] - }, - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "has cyclist barriers causing dismount", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "blocks" - }, - { - "option": "hand-laid asphalt" - }, - { - "option": "machine-laid asphalt" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - } - ] - }, - { - "name": "shared use track", - "possible_measurements": [ - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "surface grip", - "unit": "ptv", - "type": "contextual" - }, - { - "name": "track width", - "unit": "m", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "alongside carriageway", - "possible_features": [ - { - "feature": "cyclist direction", - "valid_options": [ - { - "option": "bi-directional" - }, - { - "option": "single direction" - } - ] - }, - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has cyclist barriers causing dismount", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a buffer", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a kerb", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is stepped up from carriageway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclist direction", - "valid_options": [ - { - "option": "bi-directional" - }, - { - "option": "single direction" - } - ] - }, - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has cyclist barriers causing dismount", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - } - ] - }, - { - "name": "shared use track", - "possible_measurements": [ - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "surface grip", - "unit": "ptv", - "type": "contextual" - }, - { - "name": "track width", - "unit": "m", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "alongside carriageway", - "possible_features": [ - { - "feature": "cyclist direction", - "valid_options": [ - { - "option": "bi-directional" - }, - { - "option": "single direction" - } - ] - }, - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has cyclist barriers causing dismount", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a buffer", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a kerb", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is stepped up from carriageway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclist direction", - "valid_options": [ - { - "option": "bi-directional" - }, - { - "option": "single direction" - } - ] - }, - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has cyclist barriers causing dismount", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - } - ] - }, - { - "name": "shared use track", - "possible_measurements": [ - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "surface grip", - "unit": "ptv", - "type": "contextual" - }, - { - "name": "track width", - "unit": "m", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "alongside carriageway", - "possible_features": [ - { - "feature": "cyclist direction", - "valid_options": [ - { - "option": "bi-directional" - }, - { - "option": "single direction" - } - ] - }, - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has cyclist barriers causing dismount", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a buffer", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a kerb", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is stepped up from carriageway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclist direction", - "valid_options": [ - { - "option": "bi-directional" - }, - { - "option": "single direction" - } - ] - }, - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "has cyclist barriers causing dismount", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "unbound or unsealed" - } - ] - } - ] - } - ] - }, - { - "name": "trotting strip", - "possible_measurements": [ - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "trotting strip width", - "unit": "m", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "alongside carriageway", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is at pavement level", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a kerb", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by intermittent object placement", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is stepped up from carriageway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "grass" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "grass" - } - ] - } - ] - } - ] - }, - { - "name": "trotting strip", - "possible_measurements": [ - { - "name": "link segment length", - "unit": "m", - "type": "output" - }, - { - "name": "trotting strip width", - "unit": "m", - "type": "contextual" - } - ], - "possible_contexts": [ - { - "context": "alongside carriageway", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is at pavement level", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by a kerb", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is separated from carriageway by intermittent object placement", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "is stepped up from carriageway", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "side of road", - "valid_options": [ - { - "option": "left" - }, - { - "option": "right" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "grass" - } - ] - } - ] - }, - { - "context": "unspecified", - "possible_features": [ - { - "feature": "cyclists expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "horses expected on link", - "valid_options": [ - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "lighting", - "valid_options": [ - { - "option": "bat-friendly lighting" - }, - { - "option": "long stretches of darkness" - }, - { - "option": "no lighting" - }, - { - "option": "short stretches of darkness otherwise well-lit" - }, - { - "option": "well-lit" - } - ] - }, - { - "feature": "pedestrians expected on link", - "valid_options": [ - { - "option": "no" - } - ] - }, - { - "feature": "surface type", - "valid_options": [ - { - "option": "bound and porous" - }, - { - "option": "bound and sealed" - }, - { - "option": "grass" - } - ] - } - ] - } - ] - } - ] - }, - { - "group": "modal filter", - "types": [ - { - "name": "bollard / planter", - "possible_measurements": [ - { - "name": "number of modal filters", - "unit": "modal filters", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "accessibility", - "valid_options": [ - { - "option": "accessible to wheelchair users" - }, - { - "option": "inaccessible to wheelchair users" - } - ] - }, - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "timing", - "valid_options": [ - { - "option": "at all times" - }, - { - "option": "part time" - } - ] - } - ] - } - ] - }, - { - "name": "bus / tram gate", - "possible_measurements": [ - { - "name": "number of modal filters", - "unit": "modal filters", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "timing", - "valid_options": [ - { - "option": "at all times" - }, - { - "option": "part time" - } - ] - } - ] - } - ] - }, - { - "name": "camera restriction", - "possible_measurements": [ - { - "name": "number of modal filters", - "unit": "modal filters", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "timing", - "valid_options": [ - { - "option": "at all times" - }, - { - "option": "part time" - } - ] - } - ] - } - ] - }, - { - "name": "school street", - "possible_measurements": [ - { - "name": "number of modal filters", - "unit": "modal filters", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "timing", - "valid_options": [ - { - "option": "at all times" - }, - { - "option": "part time" - } - ] - } - ] - } - ] - }, - { - "name": "signed restriction", - "possible_measurements": [ - { - "name": "number of modal filters", - "unit": "modal filters", - "type": "output" - } - ], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "includes place-making: art", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: community garden", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: greening", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: landscaping", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: other", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: pocket park", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: social space", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "includes place-making: wayfinding", - "valid_options": [ - { - "option": "no" - }, - { - "option": "yes" - } - ] - }, - { - "feature": "timing", - "valid_options": [ - { - "option": "at all times" - }, - { - "option": "part time" - } - ] - } - ] - } - ] - } - ] - }, - { - "group": "place-making", - "types": [ - { - "name": "other place-making", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] - }, - { - "name": "social space", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] - }, - { - "name": "greening", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] - }, - { - "name": "art", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] - }, - { - "name": "pocket park", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] - }, - { - "name": "landscaping", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] - }, - { - "name": "wayfinding", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] - }, - { - "name": "community garden", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] - } - ] - } - ] -} \ No newline at end of file From 0f5f4605c9d9a2aab3c18ebd2a5cfae427ee9f43 Mon Sep 17 00:00:00 2001 From: Peter York Date: Thu, 30 Jul 2026 14:45:01 +0100 Subject: [PATCH 4/6] Remove wrong comment --- src/pages/ChooseArea.svelte | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pages/ChooseArea.svelte b/src/pages/ChooseArea.svelte index 0eb23d18..c444daa8 100644 --- a/src/pages/ChooseArea.svelte +++ b/src/pages/ChooseArea.svelte @@ -63,7 +63,6 @@ } filesPerAuthority = countFilesPerAuthority(); - // I need to do somethign here soateaetdgasd }); function onClick(e: CustomEvent) { From 1c8a95b58ea922cb46d9dc5eaaea4bd369cf25a5 Mon Sep 17 00:00:00 2001 From: Peter York Date: Thu, 30 Jul 2026 15:06:06 +0100 Subject: [PATCH 5/6] Do not show 'measures' or 'features' if none exist for subtype-context combo. fix some duplication in the latest .json --- .../v3/InfrastructureTypeSubform.svelte | 4 +- src/lib/sketch/v3/data.ts | 26218 +--------------- 2 files changed, 1025 insertions(+), 25197 deletions(-) diff --git a/src/lib/sketch/v3/InfrastructureTypeSubform.svelte b/src/lib/sketch/v3/InfrastructureTypeSubform.svelte index 529ce264..5c916826 100644 --- a/src/lib/sketch/v3/InfrastructureTypeSubform.svelte +++ b/src/lib/sketch/v3/InfrastructureTypeSubform.svelte @@ -183,7 +183,7 @@ bind:value={intervention.properties.context} /> {/if} -{#if subtypeObject && subtypeObject.possible_measurements} +{#if subtypeObject && subtypeObject.possible_measurements && subtypeObject.possible_measurements.length > 0}

Measures

{#each subtypeObject.possible_measurements as _measureObject, index} {/each} {/if} -{#if contextObject && contextObject.possible_features} +{#if contextObject && contextObject.possible_features && contextObject.possible_features.length > 0}

Features

{#each contextObject.possible_features as featureObject, index} Date: Thu, 30 Jul 2026 15:44:39 +0100 Subject: [PATCH 6/6] formatting --- src/lib/sketch/v3/data.ts | 8635 +++++++++++++++++++------------------ 1 file changed, 4320 insertions(+), 4315 deletions(-) diff --git a/src/lib/sketch/v3/data.ts b/src/lib/sketch/v3/data.ts index 5eab2ac2..8938db70 100644 --- a/src/lib/sketch/v3/data.ts +++ b/src/lib/sketch/v3/data.ts @@ -1,7546 +1,7551 @@ import type { InfrastructureTaxonomyObject } from "types"; export const infrastructureFormInformation: InfrastructureTaxonomyObject = { - "amenity": - { - "group": "amenity", - "types": [ + amenity: { + group: "amenity", + types: [ { - "name": "bike hangar", - "possible_measurements": [ + name: "bike hangar", + possible_measurements: [ { - "name": "capacity", - "unit": "bikes", - "type": "output" - } + name: "capacity", + unit: "bikes", + type: "output", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] - } - ] - } - ] + option: "yes", + }, + ], + }, + ], + }, + ], }, { - "name": "bike parking", - "possible_measurements": [ + name: "bike parking", + possible_measurements: [ { - "name": "capacity", - "unit": "bikes", - "type": "output" - } + name: "capacity", + unit: "bikes", + type: "output", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] - } - ] - } - ] - } - ] + option: "yes", + }, + ], + }, + ], + }, + ], + }, + ], }, - "bus_stop_treatment": { - "group": "bus stop treatment", - "types": [ + bus_stop_treatment: { + group: "bus stop treatment", + types: [ { - "name": "bus stop bypass", - "possible_measurements": [], - "possible_contexts": [ + name: "bus stop bypass", + possible_measurements: [], + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "bus stop placement on highway", - "valid_options": [ + feature: "bus stop placement on highway", + valid_options: [ { - "option": "built-out" + option: "built-out", }, { - "option": "in-line" + option: "in-line", }, { - "option": "lay-by" - } - ] + option: "lay-by", + }, + ], }, { - "feature": "has bus stop shelter", - "valid_options": [ + feature: "has bus stop shelter", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has level boarding", - "valid_options": [ + feature: "has level boarding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "level of interaction between cyclists and bus stop users", - "valid_options": [ + feature: + "level of interaction between cyclists and bus stop users", + valid_options: [ { - "option": "low interaction" + option: "low interaction", }, { - "option": "medium interaction" - } - ] - } - ] - } - ] + option: "medium interaction", + }, + ], + }, + ], + }, + ], }, { - "name": "shared use bus stop", - "possible_measurements": [], - "possible_contexts": [ + name: "shared use bus stop", + possible_measurements: [], + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "bus stop placement on highway", - "valid_options": [ + feature: "bus stop placement on highway", + valid_options: [ { - "option": "built-out" + option: "built-out", }, { - "option": "in-line" + option: "in-line", }, { - "option": "lay-by" - } - ] + option: "lay-by", + }, + ], }, { - "feature": "has bus stop shelter", - "valid_options": [ + feature: "has bus stop shelter", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has level boarding", - "valid_options": [ + feature: "has level boarding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "level of interaction between cyclists and bus stop users", - "valid_options": [ + feature: + "level of interaction between cyclists and bus stop users", + valid_options: [ { - "option": "high interaction" - } - ] - } - ] - } - ] + option: "high interaction", + }, + ], + }, + ], + }, + ], }, { - "name": "bus stop boarder", - "possible_measurements": [], - "possible_contexts": [ + name: "bus stop boarder", + possible_measurements: [], + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "bus stop placement on highway", - "valid_options": [ + feature: "bus stop placement on highway", + valid_options: [ { - "option": "built-out" + option: "built-out", }, { - "option": "in-line" + option: "in-line", }, { - "option": "lay-by" - } - ] + option: "lay-by", + }, + ], }, { - "feature": "has bus stop shelter", - "valid_options": [ + feature: "has bus stop shelter", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has level boarding", - "valid_options": [ + feature: "has level boarding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "level of interaction between cyclists and bus stop users", - "valid_options": [ + feature: + "level of interaction between cyclists and bus stop users", + valid_options: [ { - "option": "high interaction" + option: "high interaction", }, { - "option": "low interaction" + option: "low interaction", }, { - "option": "medium interaction" - } - ] - } - ] - } - ] + option: "medium interaction", + }, + ], + }, + ], + }, + ], }, { - "name": "untreated bus stop", - "possible_measurements": [], - "possible_contexts": [ + name: "untreated bus stop", + possible_measurements: [], + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "bus stop placement on highway", - "valid_options": [ + feature: "bus stop placement on highway", + valid_options: [ { - "option": "built-out" + option: "built-out", }, { - "option": "in-line" + option: "in-line", }, { - "option": "lay-by" - } - ] + option: "lay-by", + }, + ], }, { - "feature": "has bus stop shelter", - "valid_options": [ + feature: "has bus stop shelter", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has level boarding", - "valid_options": [ + feature: "has level boarding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "level of interaction between cyclists and bus stop users", - "valid_options": [ + feature: + "level of interaction between cyclists and bus stop users", + valid_options: [ { - "option": "low interaction" - } - ] - } - ] - } - ] - } - ] + option: "low interaction", + }, + ], + }, + ], + }, + ], + }, + ], }, - "crossing": { - "group": "crossing", - "types": [ + crossing: { + group: "crossing", + types: [ { - "name": "marked priority", - "possible_measurements": [ + name: "marked priority", + possible_measurements: [ { - "name": "number of crossings", - "unit": "crossings", - "type": "output" + name: "number of crossings", + unit: "crossings", + type: "output", }, { - "name": "number of lanes crossed", - "unit": "lanes", - "type": "contextual" + name: "number of lanes crossed", + unit: "lanes", + type: "contextual", }, { - "name": "refuge width", - "unit": "m", - "type": "contextual" + name: "refuge width", + unit: "m", + type: "contextual", }, { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", }, { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", }, { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "at side-road", - "possible_features": [ + context: "at side-road", + possible_features: [ { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is continuous footway", - "valid_options": [ + feature: "is continuous footway", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "junction has tight radii", - "valid_options": [ + feature: "junction has tight radii", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "pedestrians have priority over traffic", - "valid_options": [ + feature: "pedestrians have priority over traffic", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "permitted movements at side-road junctions", - "valid_options": [ + feature: "permitted movements at side-road junctions", + valid_options: [ { - "option": "entry and exit" + option: "entry and exit", }, { - "option": "entry only" + option: "entry only", }, { - "option": "exit only" - } - ] + option: "exit only", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], }, { - "context": "stand-alone", - "possible_features": [ + context: "stand-alone", + possible_features: [ { - "feature": "fulfils routing desire line", - "valid_options": [ + feature: "fulfils routing desire line", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "fulfils single movement desire line", - "valid_options": [ + feature: "fulfils single movement desire line", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "pedestrians have priority over traffic", - "valid_options": [ + feature: "pedestrians have priority over traffic", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "provides connection to bus stop", - "valid_options": [ + feature: "provides connection to bus stop", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], }, { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "pedestrians have priority over traffic", - "valid_options": [ + feature: "pedestrians have priority over traffic", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], + }, + ], }, { - "name": "parallel zebra", - "possible_measurements": [ + name: "parallel zebra", + possible_measurements: [ { - "name": "number of crossings", - "unit": "crossings", - "type": "output" + name: "number of crossings", + unit: "crossings", + type: "output", }, { - "name": "refuge width", - "unit": "m", - "type": "contextual" + name: "refuge width", + unit: "m", + type: "contextual", }, { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", }, { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", }, { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "at side-road", - "possible_features": [ + context: "at side-road", + possible_features: [ { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has pedestrian refuge", - "valid_options": [ + feature: "has pedestrian refuge", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is continuous footway", - "valid_options": [ + feature: "is continuous footway", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "junction has tight radii", - "valid_options": [ + feature: "junction has tight radii", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "permitted movements at side-road junctions", - "valid_options": [ + feature: "permitted movements at side-road junctions", + valid_options: [ { - "option": "entry and exit" + option: "entry and exit", }, { - "option": "entry only" + option: "entry only", }, { - "option": "exit only" - } - ] + option: "exit only", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], }, { - "context": "stand-alone", - "possible_features": [ + context: "stand-alone", + possible_features: [ { - "feature": "fulfils routing desire line", - "valid_options": [ + feature: "fulfils routing desire line", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "fulfils single movement desire line", - "valid_options": [ + feature: "fulfils single movement desire line", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has pedestrian refuge", - "valid_options": [ + feature: "has pedestrian refuge", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "provides connection to bus stop", - "valid_options": [ + feature: "provides connection to bus stop", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], }, { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has pedestrian refuge", - "valid_options": [ + feature: "has pedestrian refuge", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], + }, + ], }, { - "name": "ped-x", - "possible_measurements": [ + name: "ped-x", + possible_measurements: [ { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" + name: "crossing speed", + unit: "mps", + type: "contextual", }, { - "name": "number of crossings", - "unit": "crossings", - "type": "output" + name: "number of crossings", + unit: "crossings", + type: "output", }, { - "name": "refuge width", - "unit": "m", - "type": "contextual" + name: "refuge width", + unit: "m", + type: "contextual", }, { - "name": "user wait time", - "unit": "s", - "type": "contextual" + name: "user wait time", + unit: "s", + type: "contextual", }, { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", }, { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", }, { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has pedestrian refuge", - "valid_options": [ + feature: "has pedestrian refuge", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by audio", - "valid_options": [ + feature: "safe to cross indicated by audio", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ + feature: "safe to cross indicated by rotating cone", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ + feature: "safe to cross indicated by visual aids", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], + }, + ], }, { - "name": "pegasus", - "possible_measurements": [ + name: "pegasus", + possible_measurements: [ { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" + name: "crossing speed", + unit: "mps", + type: "contextual", }, { - "name": "number of crossings", - "unit": "crossings", - "type": "output" + name: "number of crossings", + unit: "crossings", + type: "output", }, { - "name": "refuge width", - "unit": "m", - "type": "contextual" + name: "refuge width", + unit: "m", + type: "contextual", }, { - "name": "user wait time", - "unit": "s", - "type": "contextual" + name: "user wait time", + unit: "s", + type: "contextual", }, { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", }, { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", }, { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has pedestrian refuge", - "valid_options": [ + feature: "has pedestrian refuge", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by audio", - "valid_options": [ + feature: "safe to cross indicated by audio", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ + feature: "safe to cross indicated by rotating cone", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ + feature: "safe to cross indicated by visual aids", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], + }, + ], }, { - "name": "pelican", - "possible_measurements": [ + name: "pelican", + possible_measurements: [ { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" + name: "crossing speed", + unit: "mps", + type: "contextual", }, { - "name": "number of crossings", - "unit": "crossings", - "type": "output" + name: "number of crossings", + unit: "crossings", + type: "output", }, { - "name": "refuge width", - "unit": "m", - "type": "contextual" + name: "refuge width", + unit: "m", + type: "contextual", }, { - "name": "user wait time", - "unit": "s", - "type": "contextual" + name: "user wait time", + unit: "s", + type: "contextual", }, { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", }, { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", }, { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has pedestrian refuge", - "valid_options": [ + feature: "has pedestrian refuge", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by audio", - "valid_options": [ + feature: "safe to cross indicated by audio", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ + feature: "safe to cross indicated by rotating cone", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ + feature: "safe to cross indicated by visual aids", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], + }, + ], }, { - "name": "puffin", - "possible_measurements": [ + name: "puffin", + possible_measurements: [ { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" + name: "crossing speed", + unit: "mps", + type: "contextual", }, { - "name": "number of crossings", - "unit": "crossings", - "type": "output" + name: "number of crossings", + unit: "crossings", + type: "output", }, { - "name": "refuge width", - "unit": "m", - "type": "contextual" + name: "refuge width", + unit: "m", + type: "contextual", }, { - "name": "user wait time", - "unit": "s", - "type": "contextual" + name: "user wait time", + unit: "s", + type: "contextual", }, { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", }, { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", }, { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has pedestrian refuge", - "valid_options": [ + feature: "has pedestrian refuge", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by audio", - "valid_options": [ + feature: "safe to cross indicated by audio", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ + feature: "safe to cross indicated by rotating cone", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ + feature: "safe to cross indicated by visual aids", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], + }, + ], }, { - "name": "sparrow", - "possible_measurements": [ + name: "sparrow", + possible_measurements: [ { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" + name: "crossing speed", + unit: "mps", + type: "contextual", }, { - "name": "number of crossings", - "unit": "crossings", - "type": "output" + name: "number of crossings", + unit: "crossings", + type: "output", }, { - "name": "refuge width", - "unit": "m", - "type": "contextual" + name: "refuge width", + unit: "m", + type: "contextual", }, { - "name": "user wait time", - "unit": "s", - "type": "contextual" + name: "user wait time", + unit: "s", + type: "contextual", }, { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", }, { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", }, { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has pedestrian refuge", - "valid_options": [ + feature: "has pedestrian refuge", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by audio", - "valid_options": [ + feature: "safe to cross indicated by audio", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ + feature: "safe to cross indicated by rotating cone", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ + feature: "safe to cross indicated by visual aids", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], + }, + ], }, { - "name": "toucan", - "possible_measurements": [ + name: "toucan", + possible_measurements: [ { - "name": "crossing speed", - "unit": "mps", - "type": "contextual" + name: "crossing speed", + unit: "mps", + type: "contextual", }, { - "name": "number of crossings", - "unit": "crossings", - "type": "output" + name: "number of crossings", + unit: "crossings", + type: "output", }, { - "name": "refuge width", - "unit": "m", - "type": "contextual" + name: "refuge width", + unit: "m", + type: "contextual", }, { - "name": "user wait time", - "unit": "s", - "type": "contextual" + name: "user wait time", + unit: "s", + type: "contextual", }, { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", }, { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", }, { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has pedestrian refuge", - "valid_options": [ + feature: "has pedestrian refuge", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by audio", - "valid_options": [ + feature: "safe to cross indicated by audio", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by rotating cone", - "valid_options": [ + feature: "safe to cross indicated by rotating cone", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "safe to cross indicated by visual aids", - "valid_options": [ + feature: "safe to cross indicated by visual aids", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], + }, + ], }, { - "name": "uncontrolled", - "possible_measurements": [ + name: "uncontrolled", + possible_measurements: [ { - "name": "number of crossings", - "unit": "crossings", - "type": "output" + name: "number of crossings", + unit: "crossings", + type: "output", }, { - "name": "number of lanes crossed", - "unit": "lanes", - "type": "contextual" + name: "number of lanes crossed", + unit: "lanes", + type: "contextual", }, { - "name": "refuge width", - "unit": "m", - "type": "contextual" + name: "refuge width", + unit: "m", + type: "contextual", }, { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", }, { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", }, { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "stand-alone", - "possible_features": [ + context: "stand-alone", + possible_features: [ { - "feature": "fulfils routing desire line", - "valid_options": [ + feature: "fulfils routing desire line", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "fulfils single movement desire line", - "valid_options": [ + feature: "fulfils single movement desire line", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has pedestrian refuge", - "valid_options": [ + feature: "has pedestrian refuge", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "provides connection to bus stop", - "valid_options": [ + feature: "provides connection to bus stop", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], }, { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has pedestrian refuge", - "valid_options": [ + feature: "has pedestrian refuge", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], + }, + ], }, { - "name": "zebra", - "possible_measurements": [ + name: "zebra", + possible_measurements: [ { - "name": "number of crossings", - "unit": "crossings", - "type": "output" + name: "number of crossings", + unit: "crossings", + type: "output", }, { - "name": "refuge width", - "unit": "m", - "type": "contextual" + name: "refuge width", + unit: "m", + type: "contextual", }, { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", }, { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", }, { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "at side-road", - "possible_features": [ + context: "at side-road", + possible_features: [ { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has pedestrian refuge", - "valid_options": [ + feature: "has pedestrian refuge", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is continuous footway", - "valid_options": [ + feature: "is continuous footway", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "junction has tight radii", - "valid_options": [ + feature: "junction has tight radii", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "permitted movements at side-road junctions", - "valid_options": [ + feature: "permitted movements at side-road junctions", + valid_options: [ { - "option": "entry and exit" + option: "entry and exit", }, { - "option": "entry only" + option: "entry only", }, { - "option": "exit only" - } - ] + option: "exit only", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], }, { - "context": "stand-alone", - "possible_features": [ + context: "stand-alone", + possible_features: [ { - "feature": "fulfils routing desire line", - "valid_options": [ + feature: "fulfils routing desire line", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "fulfils single movement desire line", - "valid_options": [ + feature: "fulfils single movement desire line", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has pedestrian refuge", - "valid_options": [ + feature: "has pedestrian refuge", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "provides connection to bus stop", - "valid_options": [ + feature: "provides connection to bus stop", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], }, { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "has buildout", - "valid_options": [ + feature: "has buildout", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has dropped kerbs", - "valid_options": [ + feature: "has dropped kerbs", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has pedestrian refuge", - "valid_options": [ + feature: "has pedestrian refuge", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has raised table", - "valid_options": [ + feature: "has raised table", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has tactile paving", - "valid_options": [ + feature: "has tactile paving", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "setback from junction", - "valid_options": [ + feature: "setback from junction", + valid_options: [ { - "option": "fully setback" + option: "fully setback", }, { - "option": "not setback" + option: "not setback", }, { - "option": "partially setback" - } - ] - } - ] - } - ] + option: "partially setback", + }, + ], + }, + ], + }, + ], }, - ] + ], }, - "junction_treatment": { - "group": "junction treatment", - "types": [ + junction_treatment: { + group: "junction treatment", + types: [ { - "name": "cycle facilities at traffic signals", - "possible_measurements": [ + name: "cycle facilities at traffic signals", + possible_measurements: [ { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" + name: "ATE Junction Assessment Tool score", + unit: "%", + type: "contextual", }, { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" + name: "number of junction arms", + unit: "arms", + type: "contextual", }, { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } + name: "number of junctions", + unit: "junctions", + type: "output", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "includes advanced stop line", - "valid_options": [ + feature: "includes advanced stop line", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes cycle and pedestrian only stage", - "valid_options": [ + feature: "includes cycle and pedestrian only stage", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes cycle bypass", - "valid_options": [ + feature: "includes cycle bypass", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes cycle gate", - "valid_options": [ + feature: "includes cycle gate", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes early release", - "valid_options": [ + feature: "includes early release", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes hold the left", - "valid_options": [ + feature: "includes hold the left", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes separate cycle phases", - "valid_options": [ + feature: "includes separate cycle phases", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes two-stage right turn", - "valid_options": [ + feature: "includes two-stage right turn", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "yes" - } - ] - } - ] - } - ] + option: "yes", + }, + ], + }, + ], + }, + ], }, { - "name": "cycle optimised protected signals (CYCLOPS)", - "possible_measurements": [ + name: "cycle optimised protected signals (CYCLOPS)", + possible_measurements: [ { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" + name: "ATE Junction Assessment Tool score", + unit: "%", + type: "contextual", }, { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" + name: "number of junction arms", + unit: "arms", + type: "contextual", }, { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } + name: "number of junctions", + unit: "junctions", + type: "output", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "no" - } - ] - } - ] - } - ] + option: "no", + }, + ], + }, + ], + }, + ], }, { - "name": "Dutch-style roundabout", - "possible_measurements": [ + name: "Dutch-style roundabout", + possible_measurements: [ { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" + name: "ATE Junction Assessment Tool score", + unit: "%", + type: "contextual", }, { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" + name: "number of junction arms", + unit: "arms", + type: "contextual", }, { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } + name: "number of junctions", + unit: "junctions", + type: "output", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "no" - } - ] - } - ] - } - ] + option: "no", + }, + ], + }, + ], + }, + ], }, { - "name": "roundabout", - "possible_measurements": [ + name: "roundabout", + possible_measurements: [ { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" + name: "ATE Junction Assessment Tool score", + unit: "%", + type: "contextual", }, { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" + name: "number of junction arms", + unit: "arms", + type: "contextual", }, { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } + name: "number of junctions", + unit: "junctions", + type: "output", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] - } - ] - } - ] + option: "yes", + }, + ], + }, + ], + }, + ], }, { - "name": "tight entry/exit radii", - "possible_measurements": [ + name: "tight entry/exit radii", + possible_measurements: [ { - "name": "ATE Junction Assessment Tool score", - "unit": "%", - "type": "contextual" + name: "ATE Junction Assessment Tool score", + unit: "%", + type: "contextual", }, { - "name": "number of junction arms", - "unit": "arms", - "type": "contextual" + name: "number of junction arms", + unit: "arms", + type: "contextual", }, { - "name": "number of junctions", - "unit": "junctions", - "type": "output" - } + name: "number of junctions", + unit: "junctions", + type: "output", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is signalised", - "valid_options": [ + feature: "is signalised", + valid_options: [ { - "option": "no" - } - ] - } - ] - } - ] + option: "no", + }, + ], + }, + ], + }, + ], }, - ] + ], }, - "link_segment": { - "group": "link segment", - "types": [ + link_segment: { + group: "link segment", + types: [ { - "name": "cycle lane marked on road", - "possible_measurements": [ + name: "cycle lane marked on road", + possible_measurements: [ { - "name": "highway lane width", - "unit": "m", - "type": "contextual" + name: "highway lane width", + unit: "m", + type: "contextual", }, { - "name": "link segment length", - "unit": "m", - "type": "output" + name: "link segment length", + unit: "m", + type: "output", }, { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", }, { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", }, { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "cyclists expected on link", - "valid_options": [ + feature: "cyclists expected on link", + valid_options: [ { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "horses expected on link", - "valid_options": [ + feature: "horses expected on link", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "lane marking type", - "valid_options": [ + feature: "lane marking type", + valid_options: [ { - "option": "advisory cycle lane" + option: "advisory cycle lane", }, { - "option": "bus lane" + option: "bus lane", }, { - "option": "mandatory cycle lane" - } - ] + option: "mandatory cycle lane", + }, + ], }, { - "feature": "lighting", - "valid_options": [ + feature: "lighting", + valid_options: [ { - "option": "bat-friendly lighting" + option: "bat-friendly lighting", }, { - "option": "long stretches of darkness" + option: "long stretches of darkness", }, { - "option": "no lighting" + option: "no lighting", }, { - "option": "short stretches of darkness otherwise well-lit" + option: "short stretches of darkness otherwise well-lit", }, { - "option": "well-lit" - } - ] + option: "well-lit", + }, + ], }, { - "feature": "pedestrians expected on link", - "valid_options": [ + feature: "pedestrians expected on link", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "side of road", - "valid_options": [ + feature: "side of road", + valid_options: [ { - "option": "left" + option: "left", }, { - "option": "right" - } - ] - } - ] - } - ] + option: "right", + }, + ], + }, + ], + }, + ], }, { - "name": "no cycling provision", - "possible_measurements": [ + name: "no cycling provision", + possible_measurements: [ { - "name": "highway lane width", - "unit": "m", - "type": "contextual" + name: "highway lane width", + unit: "m", + type: "contextual", }, { - "name": "link segment length", - "unit": "m", - "type": "output" + name: "link segment length", + unit: "m", + type: "output", }, { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", }, { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", }, { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "side of road", - "valid_options": [ + feature: "side of road", + valid_options: [ { - "option": "left" + option: "left", }, { - "option": "right" - } - ] - } - ] - } - ] + option: "right", + }, + ], + }, + ], + }, + ], }, { - "name": "no equestrian provision", - "possible_measurements": [ + name: "no equestrian provision", + possible_measurements: [ { - "name": "highway lane width", - "unit": "m", - "type": "contextual" + name: "highway lane width", + unit: "m", + type: "contextual", }, { - "name": "link segment length", - "unit": "m", - "type": "output" + name: "link segment length", + unit: "m", + type: "output", }, { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", }, { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", }, { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "side of road", - "valid_options": [ + feature: "side of road", + valid_options: [ { - "option": "left" + option: "left", }, { - "option": "right" - } - ] - } - ] - } - ] + option: "right", + }, + ], + }, + ], + }, + ], }, { - "name": "no pedestrian provision", - "possible_measurements": [ + name: "no pedestrian provision", + possible_measurements: [ { - "name": "highway lane width", - "unit": "m", - "type": "contextual" + name: "highway lane width", + unit: "m", + type: "contextual", }, { - "name": "link segment length", - "unit": "m", - "type": "output" + name: "link segment length", + unit: "m", + type: "output", }, { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", }, { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", }, { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "side of road", - "valid_options": [ + feature: "side of road", + valid_options: [ { - "option": "left" + option: "left", }, { - "option": "right" - } - ] - } - ] - } - ] + option: "right", + }, + ], + }, + ], + }, + ], }, { - "name": "pavement or footway", - "possible_measurements": [ + name: "pavement or footway", + possible_measurements: [ { - "name": "link segment length", - "unit": "m", - "type": "output" + name: "link segment length", + unit: "m", + type: "output", }, { - "name": "pavement width", - "unit": "m", - "type": "contextual" + name: "pavement width", + unit: "m", + type: "contextual", }, { - "name": "surface grip", - "unit": "ptv", - "type": "contextual" - } + name: "surface grip", + unit: "ptv", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "alongside carriageway", - "possible_features": [ + context: "alongside carriageway", + possible_features: [ { - "feature": "cyclists expected on link", - "valid_options": [ + feature: "cyclists expected on link", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "horses expected on link", - "valid_options": [ + feature: "horses expected on link", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is separated from carriageway by a buffer", - "valid_options": [ + feature: "is separated from carriageway by a buffer", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is separated from carriageway by a kerb", - "valid_options": [ + feature: "is separated from carriageway by a kerb", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "lighting", - "valid_options": [ + feature: "lighting", + valid_options: [ { - "option": "bat-friendly lighting" + option: "bat-friendly lighting", }, { - "option": "long stretches of darkness" + option: "long stretches of darkness", }, { - "option": "no lighting" + option: "no lighting", }, { - "option": "short stretches of darkness otherwise well-lit" + option: "short stretches of darkness otherwise well-lit", }, { - "option": "well-lit" - } - ] + option: "well-lit", + }, + ], }, { - "feature": "pedestrians expected on link", - "valid_options": [ + feature: "pedestrians expected on link", + valid_options: [ { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "side of road", - "valid_options": [ + feature: "side of road", + valid_options: [ { - "option": "left" + option: "left", }, { - "option": "right" - } - ] + option: "right", + }, + ], }, { - "feature": "surface type", - "valid_options": [ + feature: "surface type", + valid_options: [ { - "option": "bound and porous" + option: "bound and porous", }, { - "option": "bound and sealed" + option: "bound and sealed", }, { - "option": "paved with greater than 5mm joints" + option: "paved with greater than 5mm joints", }, { - "option": "paved with less than 5mm joints" + option: "paved with less than 5mm joints", }, { - "option": "paved with mortared joints" + option: "paved with mortared joints", }, { - "option": "unbound or unsealed" - } - ] - } - ] + option: "unbound or unsealed", + }, + ], + }, + ], }, { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "cyclists expected on link", - "valid_options": [ + feature: "cyclists expected on link", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "horses expected on link", - "valid_options": [ + feature: "horses expected on link", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "lighting", - "valid_options": [ + feature: "lighting", + valid_options: [ { - "option": "bat-friendly lighting" + option: "bat-friendly lighting", }, { - "option": "long stretches of darkness" + option: "long stretches of darkness", }, { - "option": "no lighting" + option: "no lighting", }, { - "option": "short stretches of darkness otherwise well-lit" + option: "short stretches of darkness otherwise well-lit", }, { - "option": "well-lit" - } - ] + option: "well-lit", + }, + ], }, { - "feature": "pedestrians expected on link", - "valid_options": [ + feature: "pedestrians expected on link", + valid_options: [ { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "surface type", - "valid_options": [ + feature: "surface type", + valid_options: [ { - "option": "bound and porous" + option: "bound and porous", }, { - "option": "bound and sealed" + option: "bound and sealed", }, { - "option": "paved with greater than 5mm joints" + option: "paved with greater than 5mm joints", }, { - "option": "paved with less than 5mm joints" + option: "paved with less than 5mm joints", }, { - "option": "paved with mortared joints" + option: "paved with mortared joints", }, { - "option": "unbound or unsealed" - } - ] - } - ] - } - ] + option: "unbound or unsealed", + }, + ], + }, + ], + }, + ], }, { - "name": "quiet link", - "possible_measurements": [ + name: "quiet link", + possible_measurements: [ { - "name": "highway lane width", - "unit": "m", - "type": "contextual" + name: "highway lane width", + unit: "m", + type: "contextual", }, { - "name": "link segment length", - "unit": "m", - "type": "output" + name: "link segment length", + unit: "m", + type: "output", }, { - "name": "vehicle 85th percentile speed", - "unit": "mph", - "type": "contextual" + name: "vehicle 85th percentile speed", + unit: "mph", + type: "contextual", }, { - "name": "vehicle flow (daily)", - "unit": "vpd", - "type": "contextual" + name: "vehicle flow (daily)", + unit: "vpd", + type: "contextual", }, { - "name": "vehicle flow (peak hour)", - "unit": "vph", - "type": "contextual" - } + name: "vehicle flow (peak hour)", + unit: "vph", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "cyclists expected on link", - "valid_options": [ + feature: "cyclists expected on link", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "horses expected on link", - "valid_options": [ + feature: "horses expected on link", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "lighting", - "valid_options": [ + feature: "lighting", + valid_options: [ { - "option": "bat-friendly lighting" + option: "bat-friendly lighting", }, { - "option": "long stretches of darkness" + option: "long stretches of darkness", }, { - "option": "no lighting" + option: "no lighting", }, { - "option": "short stretches of darkness otherwise well-lit" + option: "short stretches of darkness otherwise well-lit", }, { - "option": "well-lit" - } - ] + option: "well-lit", + }, + ], }, { - "feature": "pedestrians expected on link", - "valid_options": [ + feature: "pedestrians expected on link", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] - } - ] - } - ] + option: "yes", + }, + ], + }, + ], + }, + ], }, { - "name": "segregated cycle track", - "possible_measurements": [ + name: "segregated cycle track", + possible_measurements: [ { - "name": "link segment length", - "unit": "m", - "type": "output" + name: "link segment length", + unit: "m", + type: "output", }, { - "name": "track width", - "unit": "m", - "type": "contextual" - } + name: "track width", + unit: "m", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "alongside carriageway", - "possible_features": [ + context: "alongside carriageway", + possible_features: [ { - "feature": "cyclist direction", - "valid_options": [ + feature: "cyclist direction", + valid_options: [ { - "option": "bi-directional" + option: "bi-directional", }, { - "option": "single direction" - } - ] + option: "single direction", + }, + ], }, { - "feature": "cyclists expected on link", - "valid_options": [ + feature: "cyclists expected on link", + valid_options: [ { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has cyclist barriers causing dismount", - "valid_options": [ + feature: "has cyclist barriers causing dismount", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "horses expected on link", - "valid_options": [ + feature: "horses expected on link", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is at pavement level", - "valid_options": [ + feature: "is at pavement level", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is separated from carriageway by a kerb", - "valid_options": [ + feature: "is separated from carriageway by a kerb", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is separated from carriageway by intermittent object placement", - "valid_options": [ + feature: + "is separated from carriageway by intermittent object placement", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is stepped up from carriageway", - "valid_options": [ + feature: "is stepped up from carriageway", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "lighting", - "valid_options": [ + feature: "lighting", + valid_options: [ { - "option": "bat-friendly lighting" + option: "bat-friendly lighting", }, { - "option": "long stretches of darkness" + option: "long stretches of darkness", }, { - "option": "no lighting" + option: "no lighting", }, { - "option": "short stretches of darkness otherwise well-lit" + option: "short stretches of darkness otherwise well-lit", }, { - "option": "well-lit" - } - ] + option: "well-lit", + }, + ], }, { - "feature": "pedestrians expected on link", - "valid_options": [ + feature: "pedestrians expected on link", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "side of road", - "valid_options": [ + feature: "side of road", + valid_options: [ { - "option": "left" + option: "left", }, { - "option": "right" - } - ] + option: "right", + }, + ], }, { - "feature": "surface type", - "valid_options": [ + feature: "surface type", + valid_options: [ { - "option": "blocks" + option: "blocks", }, { - "option": "hand-laid asphalt" + option: "hand-laid asphalt", }, { - "option": "machine-laid asphalt" + option: "machine-laid asphalt", }, { - "option": "unbound or unsealed" - } - ] - } - ] + option: "unbound or unsealed", + }, + ], + }, + ], }, { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "cyclist direction", - "valid_options": [ + feature: "cyclist direction", + valid_options: [ { - "option": "bi-directional" + option: "bi-directional", }, { - "option": "single direction" - } - ] + option: "single direction", + }, + ], }, { - "feature": "cyclists expected on link", - "valid_options": [ + feature: "cyclists expected on link", + valid_options: [ { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has cyclist barriers causing dismount", - "valid_options": [ + feature: "has cyclist barriers causing dismount", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "horses expected on link", - "valid_options": [ + feature: "horses expected on link", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "lighting", - "valid_options": [ + feature: "lighting", + valid_options: [ { - "option": "bat-friendly lighting" + option: "bat-friendly lighting", }, { - "option": "long stretches of darkness" + option: "long stretches of darkness", }, { - "option": "no lighting" + option: "no lighting", }, { - "option": "short stretches of darkness otherwise well-lit" + option: "short stretches of darkness otherwise well-lit", }, { - "option": "well-lit" - } - ] + option: "well-lit", + }, + ], }, { - "feature": "pedestrians expected on link", - "valid_options": [ + feature: "pedestrians expected on link", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "surface type", - "valid_options": [ + feature: "surface type", + valid_options: [ { - "option": "blocks" + option: "blocks", }, { - "option": "hand-laid asphalt" + option: "hand-laid asphalt", }, { - "option": "machine-laid asphalt" + option: "machine-laid asphalt", }, { - "option": "unbound or unsealed" - } - ] - } - ] - } - ] + option: "unbound or unsealed", + }, + ], + }, + ], + }, + ], }, { - "name": "shared use track", - "possible_measurements": [ + name: "shared use track", + possible_measurements: [ { - "name": "link segment length", - "unit": "m", - "type": "output" + name: "link segment length", + unit: "m", + type: "output", }, { - "name": "surface grip", - "unit": "ptv", - "type": "contextual" + name: "surface grip", + unit: "ptv", + type: "contextual", }, { - "name": "track width", - "unit": "m", - "type": "contextual" - } + name: "track width", + unit: "m", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "alongside carriageway", - "possible_features": [ + context: "alongside carriageway", + possible_features: [ { - "feature": "cyclist direction", - "valid_options": [ + feature: "cyclist direction", + valid_options: [ { - "option": "bi-directional" + option: "bi-directional", }, { - "option": "single direction" - } - ] + option: "single direction", + }, + ], }, { - "feature": "cyclists expected on link", - "valid_options": [ + feature: "cyclists expected on link", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has cyclist barriers causing dismount", - "valid_options": [ + feature: "has cyclist barriers causing dismount", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "horses expected on link", - "valid_options": [ + feature: "horses expected on link", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is separated from carriageway by a buffer", - "valid_options": [ + feature: "is separated from carriageway by a buffer", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is separated from carriageway by a kerb", - "valid_options": [ + feature: "is separated from carriageway by a kerb", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is stepped up from carriageway", - "valid_options": [ + feature: "is stepped up from carriageway", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "lighting", - "valid_options": [ + feature: "lighting", + valid_options: [ { - "option": "bat-friendly lighting" + option: "bat-friendly lighting", }, { - "option": "long stretches of darkness" + option: "long stretches of darkness", }, { - "option": "no lighting" + option: "no lighting", }, { - "option": "short stretches of darkness otherwise well-lit" + option: "short stretches of darkness otherwise well-lit", }, { - "option": "well-lit" - } - ] + option: "well-lit", + }, + ], }, { - "feature": "pedestrians expected on link", - "valid_options": [ + feature: "pedestrians expected on link", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "side of road", - "valid_options": [ + feature: "side of road", + valid_options: [ { - "option": "left" + option: "left", }, { - "option": "right" - } - ] + option: "right", + }, + ], }, { - "feature": "surface type", - "valid_options": [ + feature: "surface type", + valid_options: [ { - "option": "bound and porous" + option: "bound and porous", }, { - "option": "bound and sealed" + option: "bound and sealed", }, { - "option": "unbound or unsealed" - } - ] - } - ] + option: "unbound or unsealed", + }, + ], + }, + ], }, { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "cyclist direction", - "valid_options": [ + feature: "cyclist direction", + valid_options: [ { - "option": "bi-directional" + option: "bi-directional", }, { - "option": "single direction" - } - ] + option: "single direction", + }, + ], }, { - "feature": "cyclists expected on link", - "valid_options": [ + feature: "cyclists expected on link", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "has cyclist barriers causing dismount", - "valid_options": [ + feature: "has cyclist barriers causing dismount", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "horses expected on link", - "valid_options": [ + feature: "horses expected on link", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "lighting", - "valid_options": [ + feature: "lighting", + valid_options: [ { - "option": "bat-friendly lighting" + option: "bat-friendly lighting", }, { - "option": "long stretches of darkness" + option: "long stretches of darkness", }, { - "option": "no lighting" + option: "no lighting", }, { - "option": "short stretches of darkness otherwise well-lit" + option: "short stretches of darkness otherwise well-lit", }, { - "option": "well-lit" - } - ] + option: "well-lit", + }, + ], }, { - "feature": "pedestrians expected on link", - "valid_options": [ + feature: "pedestrians expected on link", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "surface type", - "valid_options": [ + feature: "surface type", + valid_options: [ { - "option": "bound and porous" + option: "bound and porous", }, { - "option": "bound and sealed" + option: "bound and sealed", }, { - "option": "unbound or unsealed" - } - ] - } - ] - } - ] + option: "unbound or unsealed", + }, + ], + }, + ], + }, + ], }, { - "name": "trotting strip", - "possible_measurements": [ + name: "trotting strip", + possible_measurements: [ { - "name": "link segment length", - "unit": "m", - "type": "output" + name: "link segment length", + unit: "m", + type: "output", }, { - "name": "trotting strip width", - "unit": "m", - "type": "contextual" - } + name: "trotting strip width", + unit: "m", + type: "contextual", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "alongside carriageway", - "possible_features": [ + context: "alongside carriageway", + possible_features: [ { - "feature": "cyclists expected on link", - "valid_options": [ + feature: "cyclists expected on link", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "horses expected on link", - "valid_options": [ + feature: "horses expected on link", + valid_options: [ { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is at pavement level", - "valid_options": [ + feature: "is at pavement level", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is separated from carriageway by a kerb", - "valid_options": [ + feature: "is separated from carriageway by a kerb", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is separated from carriageway by intermittent object placement", - "valid_options": [ + feature: + "is separated from carriageway by intermittent object placement", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "is stepped up from carriageway", - "valid_options": [ + feature: "is stepped up from carriageway", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "lighting", - "valid_options": [ + feature: "lighting", + valid_options: [ { - "option": "bat-friendly lighting" + option: "bat-friendly lighting", }, { - "option": "long stretches of darkness" + option: "long stretches of darkness", }, { - "option": "no lighting" + option: "no lighting", }, { - "option": "short stretches of darkness otherwise well-lit" + option: "short stretches of darkness otherwise well-lit", }, { - "option": "well-lit" - } - ] + option: "well-lit", + }, + ], }, { - "feature": "pedestrians expected on link", - "valid_options": [ + feature: "pedestrians expected on link", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "side of road", - "valid_options": [ + feature: "side of road", + valid_options: [ { - "option": "left" + option: "left", }, { - "option": "right" - } - ] + option: "right", + }, + ], }, { - "feature": "surface type", - "valid_options": [ + feature: "surface type", + valid_options: [ { - "option": "bound and porous" + option: "bound and porous", }, { - "option": "bound and sealed" + option: "bound and sealed", }, { - "option": "grass" - } - ] - } - ] + option: "grass", + }, + ], + }, + ], }, { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "cyclists expected on link", - "valid_options": [ + feature: "cyclists expected on link", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "horses expected on link", - "valid_options": [ + feature: "horses expected on link", + valid_options: [ { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "lighting", - "valid_options": [ + feature: "lighting", + valid_options: [ { - "option": "bat-friendly lighting" + option: "bat-friendly lighting", }, { - "option": "long stretches of darkness" + option: "long stretches of darkness", }, { - "option": "no lighting" + option: "no lighting", }, { - "option": "short stretches of darkness otherwise well-lit" + option: "short stretches of darkness otherwise well-lit", }, { - "option": "well-lit" - } - ] + option: "well-lit", + }, + ], }, { - "feature": "pedestrians expected on link", - "valid_options": [ + feature: "pedestrians expected on link", + valid_options: [ { - "option": "no" - } - ] + option: "no", + }, + ], }, { - "feature": "surface type", - "valid_options": [ + feature: "surface type", + valid_options: [ { - "option": "bound and porous" + option: "bound and porous", }, { - "option": "bound and sealed" + option: "bound and sealed", }, { - "option": "grass" - } - ] - } - ] - } - ] + option: "grass", + }, + ], + }, + ], + }, + ], }, - ] + ], }, - "modal_filter": { - "group": "modal filter", - "types": [ + modal_filter: { + group: "modal filter", + types: [ { - "name": "bollard / planter", - "possible_measurements": [ + name: "bollard / planter", + possible_measurements: [ { - "name": "number of modal filters", - "unit": "modal filters", - "type": "output" - } + name: "number of modal filters", + unit: "modal filters", + type: "output", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "accessibility", - "valid_options": [ + feature: "accessibility", + valid_options: [ { - "option": "accessible to wheelchair users" + option: "accessible to wheelchair users", }, { - "option": "inaccessible to wheelchair users" - } - ] + option: "inaccessible to wheelchair users", + }, + ], }, { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "timing", - "valid_options": [ + feature: "timing", + valid_options: [ { - "option": "at all times" + option: "at all times", }, { - "option": "part time" - } - ] - } - ] - } - ] + option: "part time", + }, + ], + }, + ], + }, + ], }, { - "name": "bus / tram gate", - "possible_measurements": [ + name: "bus / tram gate", + possible_measurements: [ { - "name": "number of modal filters", - "unit": "modal filters", - "type": "output" - } + name: "number of modal filters", + unit: "modal filters", + type: "output", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "timing", - "valid_options": [ + feature: "timing", + valid_options: [ { - "option": "at all times" + option: "at all times", }, { - "option": "part time" - } - ] - } - ] - } - ] + option: "part time", + }, + ], + }, + ], + }, + ], }, { - "name": "camera restriction", - "possible_measurements": [ + name: "camera restriction", + possible_measurements: [ { - "name": "number of modal filters", - "unit": "modal filters", - "type": "output" - } + name: "number of modal filters", + unit: "modal filters", + type: "output", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "timing", - "valid_options": [ + feature: "timing", + valid_options: [ { - "option": "at all times" + option: "at all times", }, { - "option": "part time" - } - ] - } - ] - } - ] + option: "part time", + }, + ], + }, + ], + }, + ], }, { - "name": "school street", - "possible_measurements": [ + name: "school street", + possible_measurements: [ { - "name": "number of modal filters", - "unit": "modal filters", - "type": "output" - } + name: "number of modal filters", + unit: "modal filters", + type: "output", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "timing", - "valid_options": [ + feature: "timing", + valid_options: [ { - "option": "at all times" + option: "at all times", }, { - "option": "part time" - } - ] - } - ] - } - ] + option: "part time", + }, + ], + }, + ], + }, + ], }, { - "name": "signed restriction", - "possible_measurements": [ + name: "signed restriction", + possible_measurements: [ { - "name": "number of modal filters", - "unit": "modal filters", - "type": "output" - } + name: "number of modal filters", + unit: "modal filters", + type: "output", + }, ], - "possible_contexts": [ + possible_contexts: [ { - "context": "unspecified", - "possible_features": [ + context: "unspecified", + possible_features: [ { - "feature": "includes place-making: art", - "valid_options": [ + feature: "includes place-making: art", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: community garden", - "valid_options": [ + feature: "includes place-making: community garden", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: greening", - "valid_options": [ + feature: "includes place-making: greening", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: landscaping", - "valid_options": [ + feature: "includes place-making: landscaping", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: other", - "valid_options": [ + feature: "includes place-making: other", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: pocket park", - "valid_options": [ + feature: "includes place-making: pocket park", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: social space", - "valid_options": [ + feature: "includes place-making: social space", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "includes place-making: wayfinding", - "valid_options": [ + feature: "includes place-making: wayfinding", + valid_options: [ { - "option": "no" + option: "no", }, { - "option": "yes" - } - ] + option: "yes", + }, + ], }, { - "feature": "timing", - "valid_options": [ + feature: "timing", + valid_options: [ { - "option": "at all times" + option: "at all times", }, { - "option": "part time" - } - ] - } - ] - } - ] - } - ] + option: "part time", + }, + ], + }, + ], + }, + ], + }, + ], }, "place-making": { - "group": "place-making", - "types": [ + group: "place-making", + types: [ { - "name": "other place-making", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] + name: "other place-making", + possible_measurements: [], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "None", + valid_options: [], + }, + ], + }, + ], }, { - "name": "social space", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] + name: "social space", + possible_measurements: [], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "None", + valid_options: [], + }, + ], + }, + ], }, { - "name": "greening", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] + name: "greening", + possible_measurements: [], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "None", + valid_options: [], + }, + ], + }, + ], }, { - "name": "art", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] + name: "art", + possible_measurements: [], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "None", + valid_options: [], + }, + ], + }, + ], }, { - "name": "pocket park", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] + name: "pocket park", + possible_measurements: [], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "None", + valid_options: [], + }, + ], + }, + ], }, { - "name": "landscaping", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] + name: "landscaping", + possible_measurements: [], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "None", + valid_options: [], + }, + ], + }, + ], }, { - "name": "wayfinding", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] + name: "wayfinding", + possible_measurements: [], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "None", + valid_options: [], + }, + ], + }, + ], }, { - "name": "community garden", - "possible_measurements": [], - "possible_contexts": [ - { - "context": "unspecified", - "possible_features": [ - { - "feature": "None", - "valid_options": [] - } - ] - } - ] - } - ] - } -} \ No newline at end of file + name: "community garden", + possible_measurements: [], + possible_contexts: [ + { + context: "unspecified", + possible_features: [ + { + feature: "None", + valid_options: [], + }, + ], + }, + ], + }, + ], + }, +};