From: Michael Orlitzky Date: Sat, 4 Nov 2023 15:07:57 +0000 (-0400) Subject: index.html.in: add missing origin/destination => zone mappings X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=fb8e77cc49c447cf616549f7881cd82a9fc2a19a;p=charm-bypass.git index.html.in: add missing origin/destination => zone mappings --- diff --git a/index.html.in b/index.html.in index ff398ef..c620edd 100644 --- a/index.html.in +++ b/index.html.in @@ -709,7 +709,15 @@ */ function compute_marc_zone(src, dest) { - /* Sorted on the first component, then the second */ + /* Sorted on the first component, then the second. + * + * Key: + * + * $6.00 => 1 + * $7.00 => 2 + * $8.00 => 3 + * $9.00 => 4 + */ const zone_map = { BAL_BWE: 2, BAL_BWI: 1, @@ -722,8 +730,12 @@ BWE_SEB: 1, BWE_WAS: 2, BWE_WBL: 2, + BWI_SEB: 2, BWI_WAS: 3, - BWI_WBL: 1 + BWI_WBL: 1, + SEB_WAS: 1, + SEB_WBL: 3, + WAS_WBL: 4 }; /* Forward direction key for zone_map */