-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFAQ.tsx
More file actions
210 lines (208 loc) · 7.88 KB
/
FAQ.tsx
File metadata and controls
210 lines (208 loc) · 7.88 KB
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
'use client';
import * as React from 'react';
import Container from '@mui/material/Container';
import { Button, Typography } from '@mui/material';
import { ColoredContainer } from '../styles/PageLayout.style';
import OpenInNewIcon from '@mui/icons-material/OpenInNew';
import Link from 'next/link';
export default function FAQ(): React.ReactElement {
return (
<Container component='main'>
<Typography variant='h1'>Frequently Asked Questions (FAQ) </Typography>
<ColoredContainer maxWidth={false} sx={{ mt: 3 }}>
<Typography
variant='h5'
color='primary'
sx={{ fontWeight: 700, mb: 1 }}
>
What is the Mobility Database?
</Typography>
<Typography className='answer'>
The Mobility Database is an open database containing over 6000+
transit and shared mobility feeds in GTFS, GTFS Realtime, and GBFS
formats. In addition to our database, we also offer an API, and
data-quality reports using the Canonical GTFS Validator and the GBFS
Validator.
<br /> <br />
This database is hosted and maintained by MobilityData, the global
non-profit organization dedicated to the advancement of open
transportation data standards.
<br />
<Button
component={'a'}
variant='contained'
sx={{ mt: 3 }}
endIcon={<OpenInNewIcon />}
href='https://mobilitydata.org/'
rel='noreferrer'
target='_blank'
>
Learn more about MobilityData
</Button>
</Typography>
<Typography
variant='h5'
color='primary'
sx={{ fontWeight: 700, mt: 5, mb: 1 }}
>
Who can use the Mobility Database?
</Typography>
<Typography className='answer'>
Everyone has free access to the Mobility Database. However, to{' '}
<Button
variant='text'
className='line-start inline'
href={'/contribute'}
component={Link}
>
add a feed
</Button>
or{' '}
<Button
variant='text'
className='line-start inline'
href={
'https://mobilitydata.github.io/mobility-feed-api/SwaggerUI/index.html'
}
>
use our API
</Button>
you’ll need to{' '}
<Button
variant='text'
className='line-start inline'
href={'/sign-up'}
component={Link}
>
create an account.
</Button>
</Typography>
<Typography
variant='h5'
color='primary'
sx={{ fontWeight: 700, mt: 5, mb: 1 }}
>
Does the Mobility Database replace TransitFeeds.com?
</Typography>
<Typography className='answer'>
Yes. The Mobility Database was launched in February of 2024 to replace
Transitfeeds. Currently, the TransitFeeds website remains accessible,
acting as a temporary archive for data from 2014 to February of 2024.
All historical data will be migrated to the Mobility Database before
deprecation. All data newer than February 2024 can be found in our
database, including 2500+ feeds not originally available on
TransitFeeds.
<br /> <br />
Likewise, the Mobility Database API replaces the TransitFeeds API to
provide the most up-to-date GTFS and GTFS-Realtime available. You can
still use the TransitFeeds API to access historical data; however,
support will cease when TransitFeeds is officially deprecated.
<br /> <br />
<b>Note: TransitFeeds will be deprecated in December 2025. </b>
</Typography>
<Typography
variant='h5'
color='primary'
sx={{ fontWeight: 700, mt: 5, mb: 1 }}
>
How often is the Mobility Database updated?
</Typography>
<Typography className='answer'>
Every day at midnight UTC, the Mobility Database checks for feed
updates using the URL provided by the producer upon uploading. If we
detect a change, we add the new feed version automatically.
<br /> <br />
For GBFS feeds, we do an additional sync any time a change to the{' '}
<Button
variant='text'
className='line-start inline'
href={
'https://github.com/MobilityData/gbfs/blob/master/systems.csv'
}
rel='noreferrer'
target='_blank'
endIcon={<OpenInNewIcon />}
>
systems.csv catalog
</Button>
is merged.
</Typography>
<Typography
variant='h5'
color='primary'
sx={{ fontWeight: 700, mt: 5, mb: 1 }}
>
I am a transit or shared mobility operator, how can I use the Mobility
Database?
</Typography>
<Typography className='answer'>
The main benefit is that having your feed in the database ensures more
rider-facing apps discover and use your data. Plus, the integration
with the Canonical GTFS Schedule Validator and GBFS validator means
your GTFS or GBFS feed will be checked before you submit them to a
trip-planner or navigation application. You’ll receive a detailed
error quality report, which reduces the amount of back and forth in
the process and allows you to submit high-quality data to give your
riders reliable, detailed information. Another benefit of our Database
is simply the access you have to search, download, and look at other
feeds to get examples on how to improve your own data, whether it is
GTFS Schedule, GTFS Realtime, or GBFS.
</Typography>
<Typography
variant='h5'
color='primary'
sx={{ fontWeight: 700, mt: 5, mb: 1 }}
>
I want to consume/analyze/display transport data, how can I use the
Mobility Database?
</Typography>
<Typography className='answer'>
Our API allows you to pull data from our database seamlessly. Since
our URLs are stable and checked for updates on a daily basis, data
doesn’t get dropped if an agency’s website is down, or if the link
expires.
<br /> <br />
Detailed instructions for installing and implementing our API can be
found on{' '}
<Button
variant='text'
className='inline line-start'
href={
'https://mobilitydata.github.io/mobility-feed-api/SwaggerUI/index.html'
}
rel='noreferrer'
target='_blank'
>
Swagger.
</Button>
In addition to searching the database or using our API to pull data,
you’re able to{' '}
<Button
variant='text'
className='inline line-start'
href={'https://files.mobilitydatabase.org/feeds_v2.csv'}
rel='noreferrer'
target='_blank'
endIcon={<OpenInNewIcon />}
>
download GTFS and GTFS Realtime feeds via the spreadsheet here
</Button>
<br /> <br />
GBFS feeds can be downloaded via a spreadsheet with the{' '}
<Button
variant='text'
className='line-start inline'
href={
'https://github.com/MobilityData/gbfs?tab=readme-ov-file#systems-catalog---systems-implementing-gbfs'
}
rel='noreferrer'
target='_blank'
endIcon={<OpenInNewIcon />}
>
systems.csv catalog
</Button>
</Typography>
</ColoredContainer>
</Container>
);
}