From d306a518cc2ebde4727f50d76360c0f6a39ac3fc Mon Sep 17 00:00:00 2001 From: Flavio Di Natale Date: Tue, 17 Sep 2024 13:42:22 +0200 Subject: [PATCH] Add README for scales data --- src/data/README.MD | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/data/README.MD diff --git a/src/data/README.MD b/src/data/README.MD new file mode 100644 index 0000000..e4b15be --- /dev/null +++ b/src/data/README.MD @@ -0,0 +1,18 @@ +## intro +Climbing scales are defined in the '.csv' files within this folder. + +different disciplines have dedicated files: + - [aid](./aid.scv) climbing + - [bouldering](./boulder.csv) + - [ice](./ice.csv) climbing + - [sport](./routes.csv) climbing + +in each file is defined a *score* representing a discrete virtual grade starting from 0. +And to each score is reported the correspective grade in each supported scale +one grade in a given scale (e.g. french 6a) can corrispond to multiple scores. + +## adding / editing scales + +the main step to add or modify a scale is to add or modify the correspective column in the desired csv file. + +Scales are converted into json files with [this](./csvtojson.ts) script (see instruction within the script).