Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinPontius committed Sep 9, 2024
1 parent 9ada2e2 commit 7e26f78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions WeatherRoutingTool/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ def __init__(self, init_mode='from_json', file_name=None, config_dict=None):
self.ISOCHRONE_MINIMISATION_CRITERION = None # options: 'dist', 'squareddist_over_disttodest'
self.ISOCHRONE_NUMBER_OF_ROUTES = None # integer specifying how many routes should be searched
self.ISOCHRONE_PRUNE_GROUPS = None # can be 'courses', 'larger_direction', 'branch'
self.ISOCHRONE_PRUNE_SECTOR_DEG_HALF = None # half of the angular range of azimuth angle considered for pruning; not used for branch-based pruning
self.ISOCHRONE_PRUNE_SEGMENTS = None # total number of azimuth bins used for pruning in prune sector; not used for branch-based pruning
self.ISOCHRONE_PRUNE_SYMMETRY_AXIS = None # symmetry axis for pruning. Can be 'gcr' or 'headings_based'; not used for branch-based pruning
self.ISOCHRONE_PRUNE_SECTOR_DEG_HALF = None # half of the angular range of azimuth angle considered for pruning; not used for branch-based pruning # noqa: E501
self.ISOCHRONE_PRUNE_SEGMENTS = None # total number of azimuth bins used for pruning in prune sector; not used for branch-based pruning # noqa: E501
self.ISOCHRONE_PRUNE_SYMMETRY_AXIS = None # symmetry axis for pruning. Can be 'gcr' or 'headings_based'; not used for branch-based pruning # noqa: E501
self.ROUTER_HDGS_INCREMENTS_DEG = None # increment of headings
self.ROUTER_HDGS_SEGMENTS = None # total number of headings (put even number!!)
self.ROUTE_PATH = None # path to json file to which the route will be written
Expand Down

0 comments on commit 7e26f78

Please sign in to comment.