Skip to content

Commit 040d032

Browse files
author
OTP Bot
committed
Deployed dc5614541b to dev-2.x in en with MkDocs 1.6.0 and mike 1.2.0.dev0
1 parent 4525def commit 040d032

File tree

4 files changed

+77
-2
lines changed

4 files changed

+77
-2
lines changed

en/dev-2.x/Changelog/index.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -2516,7 +2516,10 @@ <h1 id="changelog">Changelog</h1>
25162516
<p>The changelog lists most feature changes between each release. The list is automatically created
25172517
based on merged pull requests. Search GitHub issues and pull requests for smaller issues.</p>
25182518
<h2 id="270-snapshot-under-development">2.7.0-SNAPSHOT (under development)</h2>
2519-
<p><a href="AUTOMATIC_CHANGELOG_PLACEHOLDER_DO_NOT_REMOVE"></a></p>
2519+
<ul>
2520+
<li>Extra leg when transferring at the same stop <a href="https://github.com/opentripplanner/OpenTripPlanner/pull/5984">#5984</a>
2521+
<a href="AUTOMATIC_CHANGELOG_PLACEHOLDER_DO_NOT_REMOVE"></a></li>
2522+
</ul>
25202523
<h2 id="260-2024-09-18">2.6.0 (2024-09-18)</h2>
25212524
<h3 id="notable-changes">Notable Changes</h3>
25222525
<ul>

en/dev-2.x/examples/ibi/portland/router-config.json

+56
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,62 @@
5959
"url": "https://gbfs.spin.pm/api/gbfs/v2/portland"
6060
}
6161
],
62+
"vectorTiles": {
63+
"basePath": "/rtp/routers/default/vectorTiles",
64+
"attribution": "<a href='https://trimet.org/mod'>Regional Partners</a>",
65+
"layers": [
66+
{
67+
"name": "stops",
68+
"type": "Stop",
69+
"mapper": "Digitransit",
70+
"maxZoom": 20,
71+
"minZoom": 14,
72+
"cacheMaxSeconds": 600,
73+
"filter": "sunday-to-sunday-service-week"
74+
},
75+
{
76+
"name": "areaStops",
77+
"type": "AreaStop",
78+
"mapper": "OTPRR",
79+
"maxZoom": 30,
80+
"minZoom": 8,
81+
"cacheMaxSeconds": 600
82+
},
83+
{
84+
"name": "stations",
85+
"type": "Station",
86+
"mapper": "Digitransit",
87+
"maxZoom": 20,
88+
"minZoom": 2,
89+
"cacheMaxSeconds": 600
90+
},
91+
{
92+
"name": "rentalVehicles",
93+
"type": "VehicleRentalVehicle",
94+
"mapper": "Digitransit",
95+
"maxZoom": 20,
96+
"minZoom": 2,
97+
"cacheMaxSeconds": 60
98+
},
99+
{
100+
"name": "rentalStations",
101+
"type": "VehicleRentalStation",
102+
"mapper": "Digitransit",
103+
"maxZoom": 20,
104+
"minZoom": 2,
105+
"cacheMaxSeconds": 600
106+
},
107+
{
108+
"name": "vehicleParking",
109+
"type": "VehicleParking",
110+
"mapper": "Digitransit",
111+
"maxZoom": 20,
112+
"minZoom": 10,
113+
"cacheMaxSeconds": 60,
114+
"expansionFactor": 0.25
115+
}
116+
]
117+
},
62118
"rideHailingServices": [
63119
{
64120
"type": "uber-car-hailing",

en/dev-2.x/sandbox/MapboxVectorTilesApi/index.html

+16
Original file line numberDiff line numberDiff line change
@@ -2378,6 +2378,14 @@ <h3 id="configuration">Configuration</h3>
23782378
<td style="text-align: center;">2.0</td>
23792379
</tr>
23802380
<tr>
2381+
<td>      <a href="#vectorTiles_layers_0_filter">filter</a></td>
2382+
<td style="text-align: center;"><code>enum</code></td>
2383+
<td>Reduce the result set of a layer further by a specific filter.</td>
2384+
<td style="text-align: center;"><em>Optional</em></td>
2385+
<td><code>"none"</code></td>
2386+
<td style="text-align: center;">2.6</td>
2387+
</tr>
2388+
<tr>
23812389
<td>      <a href="#vectorTiles_layers_0_mapper">mapper</a></td>
23822390
<td style="text-align: center;"><code>string</code></td>
23832391
<td>Describes the mapper converting from the OTP model entities to the vector tile properties.</td>
@@ -2456,6 +2464,14 @@ <h4 id="vectorTiles_layers_0_expansionFactor">expansionFactor</h4>
24562464
<strong>Path:</strong> /vectorTiles/layers/[0] </p>
24572465
<p>How far outside its boundaries should the tile contain information.</p>
24582466
<p>The value is a fraction of the tile size. If you are having problem with icons and shapes being clipped at tile edges, then increase this number.</p>
2467+
<h4 id="vectorTiles_layers_0_filter">filter</h4>
2468+
2469+
<p><strong>Since version:</strong> <code>2.6</code><strong>Type:</strong> <code>enum</code><strong>Cardinality:</strong> <code>Optional</code><strong>Default value:</strong> <code>"none"</code> <br />
2470+
<strong>Path:</strong> /vectorTiles/layers/[0] <br />
2471+
<strong>Enum values:</strong> <code>none</code> | <code>sunday-to-sunday-service-week</code></p>
2472+
<p>Reduce the result set of a layer further by a specific filter.</p>
2473+
<p>This is useful for when the schema of a layer, say stops, should remain unchanged but some
2474+
elements should not be included in the result.</p>
24592475
<h4 id="vectorTiles_layers_0_mapper">mapper</h4>
24602476

24612477
<p><strong>Since version:</strong> <code>2.0</code><strong>Type:</strong> <code>string</code><strong>Cardinality:</strong> <code>Required</code> <br />

en/dev-2.x/search/search_index.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)