From ba7f5053a37765698fc67ed23b54ee9f8cbc404b Mon Sep 17 00:00:00 2001
From: kdemmich <115631903+kdemmich@users.noreply.github.com>
Date: Wed, 17 Jan 2024 14:14:13 +0100
Subject: [PATCH] Embed figures for grouping route segments for the pruning
---
README.md | 29 ++++++++++++++++++++++++++---
1 file changed, 26 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index 29925bf..306509e 100644
--- a/README.md
+++ b/README.md
@@ -217,7 +217,7 @@ lons_per_step: (M,N) array of longitude for different routes (shape N=headings+1
# Pruning methods
The pruning is the basis of the optimisation process for the isofuel algorithm. There exist three major concepts that can be used to adjust the pruning:
-1. The definition of the angular region that is used for the pruning. This is specified by the number of pruning segments, the reach of the pruning sector and, most importantly, the course around which the pruning segments are centered -- in the following refered to as *symmetry axis*
+1. The definition of the angular region that is used for the pruning. This is specified by the number of pruning segments, the reach of the pruning sector and, most importantly, the angle around which the pruning segments are centered -- in the following refered to as *symmetry axis*
2. The choice of how route segments are grouped for the pruning.
3. The minimisation criterion that is used as basis for the pruning.
@@ -247,11 +247,34 @@ Two methods for the definition of the symmetry axis can be selected:
## Grouping Route Segments
-Three possibilities are available for the choice of the objects which are used for the pruning:
+Route segments are organised in groups before the pruning is performed. Segments that lie outside of the pruning sector (shaded pink area in figures below) are exclueded from the pruning (dashed grey lines). The segment of one group that performs best regarding the minimisation criterion, survives the pruning process (solid pink lines). Three possibilities are available for grouping the route segments for the pruning:
1. *courses-based*: Route segments are grouped according to their courses.
+
+
+
+
2. *larger-direction-based*: Route segments are grouped accoding to the angle of the connecting line between the global start point and the end of the route segment.
-3. *branch-based*: Route segments of one *branch* form a group. For a particular routing step, a branch is the entity of route segments that originate from one common point.
+
+
+
+
+4. *branch-based*: Route segments of one *branch* form a group. Thus all route segments are considered for the pruning. For a particular routing step, a branch is the entity of route segments that originate from one common point.
+
+
+
## The Minimisation Criterion
*to be continued*