Skip to content

Commit

Permalink
move robust mode to advanced parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierdalang committed Apr 25, 2022
1 parent 48709dc commit 2035a35
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
20 changes: 10 additions & 10 deletions docs/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,11 +247,11 @@ It can be used to get information such as a service area polygon based on travel
- UNION will return the union of all polygons for all departure/arrivals searches.
- INTERSECTION will return the intersection of all departure/arrival searches.

**Robust mode:**
**Output layer:** Where to save the output layer. If you leave this empty, the result will be loaded as a temporary layer. It is still possible to save a temporary layer afterwards by right-clicking it in the legend and choosing "make permanent".

By default, if any error happens, even on just one search, the algorithm fails and returns no result. In cases where partial results are still desired, you can enable robust mode. This will prevent batching and ignore failing requests, returning partial results. Note that this will consume your API quotas much faster.
**Robust mode (advanced parameters):**

**Output layer:** Where to save the output layer. If you leave this empty, the result will be loaded as a temporary layer. It is still possible to save a temporary layer afterwards by right-clicking it in the legend and choosing "make permanent".
By default, if any error happens, even on just one search, the algorithm fails and returns no result. In cases where partial results are still desired, you can enable robust mode. This will prevent batching and ignore failing requests, returning partial results. Note that this will consume your API quotas much faster.

### ![](images/icons/timefilter_simple.svg#icon) Time filter (Simplified)

Expand Down Expand Up @@ -281,11 +281,11 @@ It can be used to get filter a point layer using a time search.

**Load fares information:** Load informations about fares in the resulting attributes.

**Robust mode:**
**Output layer:** Where to save the output layer. If you leave this empty, the result will be loaded as a temporary layer. It is still possible to save a temporary layer afterwards by right-clicking it in the legend and choosing "make permanent".

By default, if any error happens, even on just one search, the algorithm fails and returns no result. In cases where partial results are still desired, you can enable robust mode. This will prevent batching and ignore failing requests, returning partial results. Note that this will consume your API quotas much faster.
**Robust mode (advanced parameters):**

**Output layer:** Where to save the output layer. If you leave this empty, the result will be loaded as a temporary layer. It is still possible to save a temporary layer afterwards by right-clicking it in the legend and choosing "make permanent".
By default, if any error happens, even on just one search, the algorithm fails and returns no result. In cases where partial results are still desired, you can enable robust mode. This will prevent batching and ignore failing requests, returning partial results. Note that this will consume your API quotas much faster.

### ![](images/icons/route_simple.svg#icon) Route (Simplified)

Expand Down Expand Up @@ -313,10 +313,6 @@ It can be used to get the best routes between two sets of points.

**Load fares information:** Load informations about fares in the resulting attributes.

**Robust mode:**

By default, if any error happens, even on just one search, the algorithm fails and returns no result. In cases where partial results are still desired, you can enable robust mode. This will prevent batching and ignore failing requests, returning partial results. Note that this will consume your API quotas much faster.

**Output style:**

- BY_ROUTE : return one linestring per route
Expand All @@ -325,6 +321,10 @@ By default, if any error happens, even on just one search, the algorithm fails a

**Output layer:** Where to save the output layer. If you leave this empty, the result will be loaded as a temporary layer. It is still possible to save a temporary layer afterwards by right-clicking it in the legend and choosing "make permanent".

**Robust mode (advanced parameters):**

By default, if any error happens, even on just one search, the algorithm fails and returns no result. In cases where partial results are still desired, you can enable robust mode. This will prevent batching and ignore failing requests, returning partial results. Note that this will consume your API quotas much faster.

### ![](images/icons/timemap_advanced.svg#icon) Time map (Advanced)

This algorithm provides advanced access to the time-map endpoint.
Expand Down
3 changes: 2 additions & 1 deletion travel_time_platform_plugin/algorithms/simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ def initAlgorithm(self, config):
tr("Robust mode"),
optional=True,
defaultValue=False,
)
),
advanced=True,
)

# OUTPUT
Expand Down

0 comments on commit 2035a35

Please sign in to comment.