You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help="only available for Asgard: A cyclist's propensity to use roads alongside other vehicles.",
602
601
)
603
602
parser_get.add_argument(
604
603
"bike_use_hills",
605
604
type=FloatRange(0, 1),
606
605
hidden=True,
607
-
default=0.5,
608
606
help="only available for Asgard: A cyclist's desire to tackle hills in their routes.",
609
607
)
610
608
parser_get.add_argument(
611
609
"bike_use_ferry",
612
610
type=FloatRange(0, 1),
613
611
hidden=True,
614
-
default=0.5,
615
612
help="only available for Asgard: This value indicates the willingness to take ferries.",
616
613
)
617
614
parser_get.add_argument(
618
615
"bike_avoid_bad_surfaces",
619
616
type=FloatRange(0, 1),
620
617
hidden=True,
621
-
default=0.25,
622
618
help="only available for Asgard: This value is meant to represent how much a cyclist wants to avoid roads with poor surfaces relative to the bicycle type being used.",
623
619
)
624
620
parser_get.add_argument(
625
621
"bike_shortest",
626
622
type=BooleanType(),
627
623
hidden=True,
628
-
default=False,
629
624
help="only available for Asgard: Changes the metric to quasi-shortest, i.e. purely distance-based costing.",
630
625
)
631
626
parser_get.add_argument(
632
627
"bicycle_type",
633
628
type=OptionValue(BICYCLE_TYPES),
634
629
hidden=True,
635
-
default='hybrid',
636
-
help="only available for Asgard: The type of bicycle.",
630
+
help="only available for Asgard: The type of bicycle. Allowed values (road, hybrid, cross, moutain)",
637
631
)
638
632
parser_get.add_argument(
639
633
"bike_use_living_streets",
640
634
type=FloatRange(0, 1),
641
635
hidden=True,
642
-
default=0.5,
643
636
help="only available for Asgard: This value indicates the willingness to take living streets.",
644
637
)
645
638
parser_get.add_argument(
646
639
"bike_maneuver_penalty",
647
640
type=float,
648
641
hidden=True,
649
-
default=5,
650
642
help="only available for Asgard: A penalty applied when transitioning between roads that do not have consistent naming–in other words, no road names in common. This penalty can be used to create simpler routes that tend to have fewer maneuvers or narrative guidance instructions.",
651
643
)
652
644
parser_get.add_argument(
653
645
"bike_service_penalty",
654
646
type=float,
655
647
hidden=True,
656
-
default=0,
657
648
help="only available for Asgard: A penalty applied for transition to generic service road. ",
658
649
)
659
650
parser_get.add_argument(
660
651
"bike_service_factor",
661
652
type=float,
662
653
hidden=True,
663
-
default=1,
664
654
help="only available for Asgard: A factor that modifies (multiplies) the cost when generic service roads are encountered. ",
665
655
)
666
656
parser_get.add_argument(
667
657
"bike_country_crossing_cost",
668
658
type=float,
669
659
hidden=True,
670
-
default=600,
671
660
help="only available for Asgard: A cost applied when encountering an international border. This cost is added to the estimated and elapsed times. ",
672
661
)
673
662
parser_get.add_argument(
674
663
"bike_country_crossing_penalty",
675
664
type=float,
676
665
hidden=True,
677
-
default=0,
678
666
help="only available for Asgard: A penalty applied for a country crossing. ",
679
667
)
680
668
681
669
parser_get.add_argument(
682
670
"bike_destination_only_penalty",
683
671
type=PositiveFloat(),
684
672
hidden=True,
685
-
default=120,
686
673
help="only available for Asgard: penalty when the way is private, private_hgv, parking aisle, drive way, drive thru.",
0 commit comments