forked from MobilityData/gtfs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
490 lines (485 loc) · 17.4 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
site_name: General Transit Feed Specification
site_url: https://gtfs.org
repo_url: https://github.com/google/transit
theme:
logo_light_mode: assets/org-white.svg
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: blue
name: material
favicon: assets/org-black.svg
font:
text: SF Pro
code: SF Mono
features:
- navigation.tabs
- navigation.indexes
- navigation.top
- toc.integrate
- content.tabs.link
- search.suggest
custom_dir: theme_overrides
language: en
locale: en
extra_css:
- assets/stylesheets/extra.css
extra:
analytics:
provider: google
property: G-DRBTC7SSDT
feedback:
# title: Was this page helpful?
ratings:
- icon: material/numeric-positive-1
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/numeric-negative-1
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! Help us improve this page by
using our <a href="https://forms.gle/doLqdVPN9DErC95u9" target=_blank>feedback form</a>.
social:
- icon: fontawesome/brands/github
link: https://github.com/MobilityData
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/mobilitydata
- icon: fontawesome/brands/slack
link: https://bit.ly/mobilitydata-slack
markdown_extensions:
- attr_list
- md_in_html
- admonition
- meta
- toc:
permalink: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
plugins:
- search:
lang: en
- redirects:
redirect_maps:
'gtfs-background.md': 'background.md'
'reference/static.md': 'schedule/reference.md'
'reference/realtime/v2.md': 'realtime/reference.md'
'reference/realtime/v1.md': 'realtime/reference.md'
'reference/realtime/index.md': 'realtime/reference.md'
'getting-started.md': 'schedule/index.md'
'examples.md': 'schedule/examples/index.md'
'testing.md': 'resources/gtfs.md'
'best-practices.md': 'schedule/best-practices.md'
'data-examples.md': 'schedule/examples.md'
'changes.md': 'extensions.md'
'reference/realtime/changes.md': 'realtime/changes/index.md'
'reference/static/changes.md': 'schedule/changes/index.md'
'applications.md': 'resources/apps.md'
'license.md': 'about.md'
'realtime/service-alerts.md': 'realtime/feed-entities/service-alerts.md'
'realtime/trip-updates.md': 'realtime/feed-entities/trip-updates.md'
'realtime/vehicle-positions.md': 'realtime/feed-entities/vehicle-positions.md'
'realtime/code-examples/index.md': 'realtime/language-bindings/index.md'
'realtime/code-examples/dotnet.md': 'realtime/language-bindings/dotnet.md'
'realtime/code-examples/java.md': 'realtime/language-bindings/java.md'
'realtime/code-examples/nodejs.md': 'realtime/language-bindings/nodejs.md'
'realtime/code-examples/python.md': 'realtime/language-bindings/python.md'
'realtime/code-examples/golang.md': 'realtime/language-bindings/golang.md'
'realtime/code-examples/ruby.md': 'realtime/language-bindings/ruby.md'
'realtime/code-examples/php.md': 'realtime/language-bindings/php.md'
'schedule/guiding-principles.md': 'schedule/process.md'
'schedule/revision-history': 'schedule/process.md'
'realtime/guiding-principles.md': 'realtime/process.md'
'realtime/revision-history': 'realtime/process.md'
'realtime/extensions': 'realtime/process.md'
- i18n:
default_language: 'en'
default_language_only: !ENV [DEFAULT_LANGUAGE_ONLY, false]
search_reconfigure: false
material_alternate: true
languages:
en:
name: English
build: true
id:
name: Bahasa Indonesia
build: true
de:
name: Deutsch
build: true
es:
name: Español
build: true
fr:
name: Français
build: true
pt_BR:
name: Português - Brasil
build: true
ru:
name: Русский
build: true
zh:
name: 中文 - 简体
build: true
zh_TW:
name: 中文 - 繁體
build: true
ja:
name: 日本語
build: true
ko:
name: 한국어
build: true
nav_translations:
id:
Home: Rumah
Resources: Sumber Daya
Extensions: Ekstensi
About: Tentang
Reference: Referensi
Best Practices: Praktik Terbaik
Examples: Contoh
Example GTFS Feed: Contoh Dataset GTFS
Data Examples: Contoh Data
Changes: Perubahan
Specification Amendment Process: Proses Amandemen Spesifikasi
Feed Entities: Entitas data
Feed Examples: Contoh Data
Protobuf: Penyangga Protokol
Language Bindings: Pengikatan Bahasa
Getting Started: Memulai
Community: Komunitas
Data: Data
Software for Creating APIs: Perangkat Lunak untuk Membuat API
Agency Tools: Alat-alat Agensi
Hardware: Perangkat Keras
Apps: Aplikasi
SDKs: SDK
Visualizations: Visualisasi
SIRI: SIRI
Multimodal: Multimodal
Other: Lainnya
de:
Home: Startseite
Resources: Ressourcen
Extensions: Erweiterungen
About: Über
Reference: Referenz
Best Practices: Bewährte Praktiken
Examples: Beispiele
Example GTFS Feed: Beispiel GTFS-Feed
Data Examples: Daten Beispiele
Changes: Änderungen
Specification Amendment Process: Prozess zur Änderung der Spezifikation
Feed Entities: Daten-Entitäten
Feed Examples: Daten Beispiele
Protobuf: Protokoll Puffer
Language Bindings: Sprachbindungen
Getting Started: Erste Schritte
Community: Gemeinschaft
Data: Daten
Software for Creating APIs: Software zur Erstellung von APIs
Agency Tools: Agentur-Tools
Hardware: Hardware
Apps: Apps
SDKs: SDKs
Visualizations: Visualisierungen
SIRI: SIRI
Multimodal: Multimodal
Other: Andere
es:
Home: Inicio
Resources: Recursos
Extensions: Extensiones
About: Acerca de
Reference: Referencia
Best Practices: Mejores prácticas
Examples: Ejemplos
Example GTFS Feed: Ejemplo de conjunto de datos GTFS
Data Examples: Ejemplos de datos
Changes: Cambios
Specification Amendment Process: Proceso de modificación del pliego de condiciones
Feed Entities: Entidades de datos
Feed Examples: Ejemplos de datos
Protobuf: Buffer de protocolo
Language Bindings: Enlaces lingüísticos
Getting Started: Cómo empezar
Community: Comunidad
Data: Datos
Software for Creating APIs: Software para la creación de APIs
Agency Tools: Herramientas de la Agencia
Hardware: Hardware
Apps: Aplicaciones
SDKs: SDKs
Visualizations: Visualizaciones
SIRI: SIRI
Multimodal: Multimodal
Other: Otros
fr:
Home: Accueil
Reference: Référence
Best Practices: Meilleures pratiques
Examples: Exemples
Example GTFS Feed: Exemple de flux GTFS
Data Examples: Exemples de données
Changes: Changements
Specification Amendment Process: Processus de modification de la spécification
Feed Entities: Entités de flux de données
Feed Examples: Exemples de flux de données
Protobuf: Tampon de protocole
Resources: Ressources
Getting Started: Pour commencer
Community: Communauté
Data: Données
Software for Creating APIs: Logiciels pour la création d'API
Agency Tools: Outils de l'agence
Hardware: Matériel informatique
Apps: Applications
Visualizations: Visualisations
Multimodal: Multimodales
Other: Autres ressources
About: À propos
pt_BR:
Home: Início
Resources: Recursos
Extensions: Extensões
About: Sobre
Reference: Referência
Best Practices: Melhores Práticas
Examples: Exemplos
Example GTFS Feed: Exemplo GTFS Dataset
Data Examples: Exemplos de dados
Changes: Mudanças
Specification Amendment Process: Processo de Alteração de Especificações
Feed Entities: Entidades de dados
Feed Examples: Exemplos de dados
Protobuf: Buffer de protocolo
Language Bindings: Encadernação de idiomas
Getting Started: Como Começar
Community: Comunidade
Data: Dados
Software for Creating APIs: Software para criação de APIs
Agency Tools: Ferramentas de Agência
Hardware: Hardware
Apps: Apps
SDKs: SDKs
Visualizations: Visualizações
SIRI: SIRI
Multimodal: Multimodal
Other: Outros
ru:
Home: Главная
Resources: Ресурсы
Extensions: Расширения
About: О сайте
Reference: Ссылка
Best Practices: Лучшие практики
Examples: Примеры
Example GTFS Feed: Пример набора данных GTFS
Data Examples: Примеры данных
Changes: Изменения
Specification Amendment Process: Процесс внесения изменений в спецификацию
Feed Entities: Сущности данных
Feed Examples: Примеры данных
Protobuf: Буфер протокола
Language Bindings: Языковые привязки
Getting Started: Начало работы
Community: Сообщество
Data: Данные
Software for Creating APIs: Программное обеспечение для создания API
Agency Tools: Инструменты агентства
Hardware: Оборудование
Apps: Приложения
SDKs: SDKs
Visualizations: Визуализации
SIRI: SIRI
Multimodal: Мультимодальный
Other: Другое
zh:
Home: 首页
Resources: 资源
Extensions: 延伸
About: 关于
Reference: 参考资料
Best Practices: 最佳实践
Examples: 实例
Example GTFS Feed: GTFS数据集示例
Data Examples: 数据实例
Changes: 变化
Specification Amendment Process: 规范修订过程
Feed Entities: 数据实体
Feed Examples: 数据实例
Protobuf: 协议缓冲区
Language Bindings: 语言绑定
Getting Started: 入门
Community: 社区
Data: 数据
Software for Creating APIs: 创建API的软件
Agency Tools: 机构工具
Hardware: 硬件设施
Apps: 应用
SDKs: SDKs
Visualizations: 视觉化
SIRI: シリーズ
Multimodal: 多式联运
Other: 其他
zh_TW:
Home: 家
Resources: 資源
Extensions: 擴展
About: 關於
Reference: 參考
Best Practices: 最佳實踐
Examples: 例子
Example GTFS Feed: 示例 GTFS 提要
Data Examples: 數據示例
Changes: 變化
Specification Amendment Process: 規範修改過程
Feed Entities: 飼料實體
Feed Examples: 提要示例
Protobuf: 原型緩衝區
Language Bindings: 語言綁定
Getting Started: 入門
Community: 社區
Data: 數據
Software for Creating APIs: 用於創建 API 的軟件
Agency Tools: 代理工具
Hardware: 硬件
Apps: 應用
SDKs: SDK
Visualizations: 可視化
SIRI: 西里
Multimodal: 多式聯運
Other: 其他
ja:
Home: ホーム
Resources: リソース
Extensions: エクステンション
About: について
Reference: 参考
Best Practices: ベストプラクティス
Examples: 事例紹介
Example GTFS Feed: GTFSデータセットの例
Data Examples: データ例
Changes: 変更点
Specification Amendment Process: 仕様変更プロセス
Feed Entities: データエンティティ
Feed Examples: データ例
Protobuf: プロトコルバッファ
Language Bindings: 言語バインディング
Getting Started: はじめに
Community: コミュニティ
Data: データ
Software for Creating APIs: APIを作成するためのソフトウェア
Agency Tools: エージェンシーツール
Hardware: ハードウェア
Apps: アプリ
SDKs: SDK
Visualizations: ビジュアライゼーション
SIRI: SIRI
Multimodal: マルチモーダル
Other: その他
ko:
Home: 집
Resources: 자원
Extensions: 확장
About: 에 대한
Reference: 참조
Best Practices: 모범 사례
Examples: 예
Example GTFS Feed: GTFS 데이터세트 예시
Data Examples: 데이터 예
Changes: 변경 사항
Specification Amendment Process: 사양 수정 프로세스
Feed Entities: 데이터 개체
Feed Examples: 데이터 예
Protobuf: 프로토콜 버퍼
Language Bindings: 언어 바인딩
Getting Started: 시작하기
Community: 지역 사회
Data: 데이터
Software for Creating APIs: API 생성용 소프트웨어
Agency Tools: 대행사 도구
Hardware: 하드웨어
Apps: 앱
SDKs: SDK
Visualizations: 시각화
SIRI: SIRI
Multimodal: 멀티모달
Other: 다른
nav:
- Home: index.md
- GTFS Schedule:
- Getting Started: schedule/index.md
- Reference: schedule/reference.md
- Best Practices: schedule/best-practices.md
- Examples:
- schedule/examples/index.md
- Example GTFS Feed: schedule/example-feed.md
- Routes, stops, and trips: schedule/examples/routes-stops-trips.md
- Continuous stops: schedule/examples/continuous-stops.md
- Fares v1: schedule/examples/fares-v1.md
- Fares v2: schedule/examples/fares-v2.md
- Frequencies: schedule/examples/frequencies.md
- Pathways: schedule/examples/pathways.md
- Translations: schedule/examples/translations.md
- Feed information: schedule/examples/feed-info.md
- Dataset attributions: schedule/examples/attributions.md
- Changes:
- schedule/changes/index.md
- Specification Amendment Process: schedule/process.md
- Validate: schedule/validate.md
- GTFS Realtime:
- Getting Started: realtime/index.md
- Reference: realtime/reference.md
- Best Practices: realtime/best-practices.md
- Feed Entities:
- realtime/feed-entities/index.md
- Trip Updates: realtime/feed-entities/trip-updates.md
- Service Alerts: realtime/feed-entities/service-alerts.md
- Vehicle Positions: realtime/feed-entities/vehicle-positions.md
- Feed Examples:
- realtime/feed-examples/index.md
- Trip Updates: realtime/feed-examples/trip-updates.md
- Service Alerts: realtime/feed-examples/service-alerts.md
- Protobuf: realtime/proto.md
- Language Bindings:
- realtime/language-bindings/index.md
- .NET: realtime/language-bindings/dotnet.md
- Java: realtime/language-bindings/java.md
- JavaScript/Node.js: realtime/language-bindings/nodejs.md
- Python: realtime/language-bindings/python.md
- Golang: realtime/language-bindings/golang.md
- Ruby: realtime/language-bindings/ruby.md
- PHP: realtime/language-bindings/php.md
- Changes:
- realtime/changes/index.md
- Specification Amendment Process: realtime/process.md
- Resources:
- resources/index.md
- Getting Started: resources/getting-started.md
- Community: resources/community.md
- Data: resources/data.md
- Software for Creating APIs: resources/software-for-creating-apis.md
- Agency Tools: resources/agency-tools.md
- Hardware: resources/hardware.md
- Apps: resources/apps.md
- SDKs: resources/sdk.md
- Visualizations: resources/visualizations.md
- GTFS: resources/gtfs.md
- GTFS Realtime: resources/gtfs-realtime.md
- SIRI: resources/siri.md
- Multimodal: resources/multimodal.md
- Other: resources/other.md
- Extensions: extensions.md
- About: about.md