diff options
author | Paul Duncan <pabs@pablotron.org> | 2021-10-22 02:59:51 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2021-10-22 02:59:51 -0400 |
commit | 17ef7636064f347fbfd7b211390e030f74671271 (patch) | |
tree | 1d79810d883a284278d1190ad97df154c2927b95 /data/tables/ev_crash_course | |
parent | c775279dfe64bea2691f0447977466d02ba3a261 (diff) | |
download | pablotron.org-17ef7636064f347fbfd7b211390e030f74671271.tar.bz2 pablotron.org-17ef7636064f347fbfd7b211390e030f74671271.zip |
ev-crash-course: move l1 cost per mile to table shortcode, rename cost_charging to charging_cost
Diffstat (limited to 'data/tables/ev_crash_course')
-rw-r--r-- | data/tables/ev_crash_course/l1_charging_cost.yaml (renamed from data/tables/ev_crash_course/l1_cost_charging.yaml) | 2 | ||||
-rw-r--r-- | data/tables/ev_crash_course/l1_cost_per_mile.yaml | 31 |
2 files changed, 32 insertions, 1 deletions
diff --git a/data/tables/ev_crash_course/l1_cost_charging.yaml b/data/tables/ev_crash_course/l1_charging_cost.yaml index a35e746..d0aca01 100644 --- a/data/tables/ev_crash_course/l1_cost_charging.yaml +++ b/data/tables/ev_crash_course/l1_charging_cost.yaml @@ -1,6 +1,6 @@ --- # table name (required) -name: "Cost of Charging, Home Level 1 Charger" +name: "Charging Cost, Home Level 1 Charger" # table columns (required) cols: diff --git a/data/tables/ev_crash_course/l1_cost_per_mile.yaml b/data/tables/ev_crash_course/l1_cost_per_mile.yaml new file mode 100644 index 0000000..9e6ec52 --- /dev/null +++ b/data/tables/ev_crash_course/l1_cost_per_mile.yaml @@ -0,0 +1,31 @@ +--- +# table name (required) +name: "Cost Per Mile Comparison, Home Level 1 Charger" + +# table columns (required) +cols: + - id: "vehicle" + name: "Vehicle" + tip: "Vehicle." + - id: "source" + name: "Energy Source" + tip: "Source of energy." + - id: "unit_price" + name: "Unit Price" + tip: "Price of energy per unit." + align: "right" + - id: "cost_per_mile" + name: "Cost per Mile" + tip: "Cost to travel 1 mile in this vehicle and energy source." + align: "right" + +# table rows (required) +rows: +- vehicle: "[2017 Hyundai Ioniq Hybrid](https://www.fueleconomy.gov/feg/noframes/38484.shtml \"2017 Hyundia Ioniq Hybrid\")" + source: "Gasoline" + unit_price: "[$3.189/gallon](https://gasprices.aaa.com/?state=VA \"Cost of gas per gallon in Fairfax County\")" + cost_per_mile: "$0.0580" +- vehicle: "[2019 Tesla Model 3 LR AWD](https://fueleconomy.gov/feg/Find.do?action=sbs&id=41190 \"2019 Tesla Model 3 LR AWD (my car)\")" + source: "Home L1 EVSE" + unit_price: "$0.13/kWh" + cost_per_mile: "**$0.0444**" |