From ef22cc5cec132b4a4f6c7f505ef384a64cb35317 Mon Sep 17 00:00:00 2001 From: Dustin Carlino Date: Wed, 6 Mar 2024 12:46:16 +0000 Subject: [PATCH] Add rest of area scorecard questions --- src/routes/area_check/scorecard/+page.svelte | 205 ++++++++++++++++++ .../area_check/scorecard/Question.svelte | 8 +- 2 files changed, 208 insertions(+), 5 deletions(-) diff --git a/src/routes/area_check/scorecard/+page.svelte b/src/routes/area_check/scorecard/+page.svelte index deaa78ae08..86a3dc210b 100644 --- a/src/routes/area_check/scorecard/+page.svelte +++ b/src/routes/area_check/scorecard/+page.svelte @@ -216,4 +216,209 @@ Please refer to the User Manual for further information.

+ + +

+ (How tight or loose the pedestrian network is. This is measured by the + average distance between streets that have suitable pedestrian facilities + as defined in the permability metric above). +

+
+ + +

+ (How tight or loose the pedestrian network is. This is measured by the + average distance between streets that have suitable pedestrian facilities + as defined in the permability metric above). +

+
+ + +

Potential exemptions may include:

+ +

Please refer to the User Manual for further information.

+
+ + +

Potential issues associated with displaced traffic

+ +
+ + +

List of green infrastructure measures

+ +
+ + +

List of internal treatments

+
  • Play streets
  • +
  • School streets
  • +
  • Cycle parking/hangars
  • +
  • Resting places e.g. seating
  • +
  • Raised tables/entries or continuous footways
  • +
  • New social spaces
  • +
  • Parklets or pocket parks
  • +
  • Wayfinding
  • +
  • Art
  • +
  • Other (please specify in the scoring justification box)
  • +
    + + diff --git a/src/routes/area_check/scorecard/Question.svelte b/src/routes/area_check/scorecard/Question.svelte index e37df1cdb7..132a81f0d2 100644 --- a/src/routes/area_check/scorecard/Question.svelte +++ b/src/routes/area_check/scorecard/Question.svelte @@ -7,11 +7,9 @@ let colors = ["#00b050", "#99cc00", "#ffc000", "#ff5050", "#ff0000"]; - let choices: [string, string, string][] = cases.map(([value, label], index) => [ - value.toString(), - label, - colors[index], - ]); + let choices: [string, string, string][] = cases.map( + ([value, label], index) => [value.toString(), label, colors[index]], + );