├── .gitignore
├── .prettierrc
├── package.json
├── pnpm-lock.yaml
├── .github
└── workflows
│ └── static.yml
├── readme.md
├── visualization
└── index.html
├── LICENSE.md
└── data
└── stations.json
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .vscode
3 | .idea
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "useTabs": true,
3 | "singleQuote": false,
4 | "tabWidth": 2
5 | }
6 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "tehran-metro-graph",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "format": "npx prettier . --write"
8 | },
9 | "keywords": [],
10 | "author": "",
11 | "license": "ISC",
12 | "devDependencies": {
13 | "prettier": "3.4.2"
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: "9.0"
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | importers:
8 | .:
9 | devDependencies:
10 | prettier:
11 | specifier: 3.4.2
12 | version: 3.4.2
13 |
14 | packages:
15 | prettier@3.4.2:
16 | resolution:
17 | {
18 | integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==,
19 | }
20 | engines: { node: ">=14" }
21 | hasBin: true
22 |
23 | snapshots:
24 | prettier@3.4.2: {}
25 |
--------------------------------------------------------------------------------
/.github/workflows/static.yml:
--------------------------------------------------------------------------------
1 | # Simple workflow for deploying static content to GitHub Pages
2 | name: Deploy static content to Pages
3 |
4 | on:
5 | # Runs on pushes targeting the default branch
6 | push:
7 | branches: ["main"]
8 |
9 | # Allows you to run this workflow manually from the Actions tab
10 | workflow_dispatch:
11 |
12 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13 | permissions:
14 | contents: read
15 | pages: write
16 | id-token: write
17 |
18 | # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19 | # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20 | concurrency:
21 | group: "pages"
22 | cancel-in-progress: false
23 |
24 | jobs:
25 | # Single deploy job since we're just deploying
26 | deploy:
27 | environment:
28 | name: github-pages
29 | url: ${{ steps.deployment.outputs.page_url }}
30 | runs-on: ubuntu-latest
31 | steps:
32 | - name: Checkout
33 | uses: actions/checkout@v3
34 | - name: Setup Pages
35 | uses: actions/configure-pages@v3
36 | - name: Upload artifact
37 | uses: actions/upload-pages-artifact@v2
38 | with:
39 | # Upload entire repository
40 | path: "./visualization"
41 | - name: Deploy to GitHub Pages
42 | id: deployment
43 | uses: actions/deploy-pages@v2
44 |
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | # Tehran Metro Graph Data
4 |
5 | This repository contains data related to the Tehran Metro stations. The data is available in JSON format as a graph structure data, providing different options for utilizing the data.
6 |
7 | ## Repository Contents
8 |
9 | 1. `data/stations.json`: This file contains the Tehran Metro stations data in JSON format. It includes information such as station names, coordinates, and other relevant details.
10 |
11 | ## Data Structure (data/stations.json)
12 |
13 | The data in this repository follows a specific structure to represent the Tehran Metro stations. Here's an overview of the structure:
14 |
15 | ### Station Properties
16 |
17 | Each station is represented by an object containing the following properties:
18 |
19 | - `"disabled"`: A boolean value indicating if the station is disabled or not.
20 | - `"name"`: The name of the station in English.
21 | - `"translations"`: An object containing translations of the station name in different languages.
22 | - `"fa"`: The name of the station in Persian (Farsi).
23 | - **_[Other Languages]_**: You can add more language translations as needed.
24 | - `"colors"`: An array of color codes associated with the station. This can be used to represent the station on maps or in visualizations.
25 | - `"lines"`: An array of line numbers associated with the station. This indicates the metro lines that pass through the station.
26 |
27 | Example:
28 |
29 | ```json
30 | {
31 | "Tajrish": {
32 | "name": "Tajrish",
33 | "translations":{
34 | "fa": "تجریش"
35 | },
36 | "lines": [1],
37 | "longitude": "51.433643000000004",
38 | "latitude": "35.804501",
39 | "address": "خیابان شریعتی-ضلع جنوب غربی میدان قدس",
40 | "wc": false,
41 | "coffeeShop": false,
42 | "groceryStore": false,
43 | "fastFood": false,
44 | "atm": false,
45 | "relations": ["Gheytariyeh"]
46 | },
47 | ...
48 | }
49 | ```
50 |
51 | ### Station Relations
52 |
53 | Each station can have relations with other stations. These relations are represented as an array of names within the station object.
54 |
55 | Example:
56 |
57 | ```json
58 | {
59 | "Gheytariyeh": {
60 | ...
61 | "relations": ["Tajrish", "Shahid Sadr"]
62 | },
63 | ...
64 | }
65 | ```
66 | ## Projects
67 | this is the list of project that use this data to build and developed application
68 | - [MetroYab](https://github.com/m4tinbeigi-official/MetroYab) by m4tinbeigi-official
69 | - [tehran-metro Android app](https://github.com/mosayeb-a/tehran-metro) by mosayeb-a
70 | - [tehran metro Api](https://github.com/erfan-rfmhr/tehran-metro-backend) by erfan-rfmhr
71 |
72 | ## Contribution Guide
73 |
74 | We welcome contributions to this project! To contribute, please follow these steps:
75 |
76 | 1. Open an issue describing the changes or additions you want to make.
77 | 2. Wait for the repository owner to review and accept your issue. If the issue requires significant implementation time, please ensure it is approved before starting.
78 | 3. Once approved, create a new branch from the `main` branch and commit your changes to this branch.
79 | 4. Submit a pull request (PR) from your branch to the `main` branch. If your changes require testing, create your PR to the `develop` branch instead.
80 |
81 | **Important:** Please adhere to this workflow; otherwise, we may have to close PRs that do not follow these guidelines.
82 |
83 | ## License
84 |
85 | The data in this repository is licensed under the [Open Data Commons License](https://opendatacommons.org/licenses/). Please refer to the license file for more details on the terms and conditions of using the data.
86 |
87 | If you have any questions or suggestions regarding the data or this repository, feel free to open an issue or contact me.
88 |
--------------------------------------------------------------------------------
/visualization/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
13 |
17 | Tehran metro station graph
18 |
119 |
120 |
121 |
122 |
123 |
124 |
129 |
130 |
131 |
132 |
133 | اطلاعات ایستگاه
134 |
135 |
136 |
137 |
نام:
138 |
خط:
139 |
140 |
141 | آدرس:
142 |
143 |
144 |
145 |
146 |
147 |
148 |
154 |
352 |
353 |
354 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | ## ODC Open Database License (ODbL)
2 |
3 | ### Preamble
4 |
5 | The Open Database License (ODbL) is a license agreement intended to
6 | allow users to freely share, modify, and use this Database while
7 | maintaining this same freedom for others. Many databases are covered by
8 | copyright, and therefore this document licenses these rights. Some
9 | jurisdictions, mainly in the European Union, have specific rights that
10 | cover databases, and so the ODbL addresses these rights, too. Finally,
11 | the ODbL is also an agreement in contract for users of this Database to
12 | act in certain ways in return for accessing this Database.
13 |
14 | Databases can contain a wide variety of types of content (images,
15 | audiovisual material, and sounds all in the same database, for example),
16 | and so the ODbL only governs the rights over the Database, and not the
17 | contents of the Database individually. Licensors should use the ODbL
18 | together with another license for the contents, if the contents have a
19 | single set of rights that uniformly covers all of the contents. If the
20 | contents have multiple sets of different rights, Licensors should
21 | describe what rights govern what contents together in the individual
22 | record or in some other way that clarifies what rights apply.
23 |
24 | Sometimes the contents of a database, or the database itself, can be
25 | covered by other rights not addressed here (such as private contracts,
26 | trade mark over the name, or privacy rights / data protection rights
27 | over information in the contents), and so you are advised that you may
28 | have to consult other documents or clear other rights before doing
29 | activities not covered by this License.
30 |
31 | ---
32 |
33 | The Licensor (as defined below)
34 |
35 | and
36 |
37 | You (as defined below)
38 |
39 | agree as follows:
40 |
41 | ### 1.0 Definitions of Capitalised Words
42 |
43 | "Collective Database" - Means this Database in unmodified form as part
44 | of a collection of independent databases in themselves that together are
45 | assembled into a collective whole. A work that constitutes a Collective
46 | Database will not be considered a Derivative Database.
47 |
48 | "Convey" - As a verb, means Using the Database, a Derivative Database,
49 | or the Database as part of a Collective Database in any way that enables
50 | a Person to make or receive copies of the Database or a Derivative
51 | Database. Conveying does not include interaction with a user through a
52 | computer network, or creating and Using a Produced Work, where no
53 | transfer of a copy of the Database or a Derivative Database occurs.
54 | "Contents" - The contents of this Database, which includes the
55 | information, independent works, or other material collected into the
56 | Database. For example, the contents of the Database could be factual
57 | data or works such as images, audiovisual material, text, or sounds.
58 |
59 | "Database" - A collection of material (the Contents) arranged in a
60 | systematic or methodical way and individually accessible by electronic
61 | or other means offered under the terms of this License.
62 |
63 | "Database Directive" - Means Directive 96/9/EC of the European
64 | Parliament and of the Council of 11 March 1996 on the legal protection
65 | of databases, as amended or succeeded.
66 |
67 | "Database Right" - Means rights resulting from the Chapter III ("sui
68 | generis") rights in the Database Directive (as amended and as transposed
69 | by member states), which includes the Extraction and Re-utilisation of
70 | the whole or a Substantial part of the Contents, as well as any similar
71 | rights available in the relevant jurisdiction under Section 10.4.
72 |
73 | "Derivative Database" - Means a database based upon the Database, and
74 | includes any translation, adaptation, arrangement, modification, or any
75 | other alteration of the Database or of a Substantial part of the
76 | Contents. This includes, but is not limited to, Extracting or
77 | Re-utilising the whole or a Substantial part of the Contents in a new
78 | Database.
79 |
80 | "Extraction" - Means the permanent or temporary transfer of all or a
81 | Substantial part of the Contents to another medium by any means or in
82 | any form.
83 |
84 | "License" - Means this license agreement and is both a license of rights
85 | such as copyright and Database Rights and an agreement in contract.
86 |
87 | "Licensor" - Means the Person that offers the Database under the terms
88 | of this License.
89 |
90 | "Person" - Means a natural or legal person or a body of persons
91 | corporate or incorporate.
92 |
93 | "Produced Work" - a work (such as an image, audiovisual material, text,
94 | or sounds) resulting from using the whole or a Substantial part of the
95 | Contents (via a search or other query) from this Database, a Derivative
96 | Database, or this Database as part of a Collective Database.
97 |
98 | "Publicly" - means to Persons other than You or under Your control by
99 | either more than 50% ownership or by the power to direct their
100 | activities (such as contracting with an independent consultant).
101 |
102 | "Re-utilisation" - means any form of making available to the public all
103 | or a Substantial part of the Contents by the distribution of copies, by
104 | renting, by online or other forms of transmission.
105 |
106 | "Substantial" - Means substantial in terms of quantity or quality or a
107 | combination of both. The repeated and systematic Extraction or
108 | Re-utilisation of insubstantial parts of the Contents may amount to the
109 | Extraction or Re-utilisation of a Substantial part of the Contents.
110 |
111 | "Use" - As a verb, means doing any act that is restricted by copyright
112 | or Database Rights whether in the original medium or any other; and
113 | includes without limitation distributing, copying, publicly performing,
114 | publicly displaying, and preparing derivative works of the Database, as
115 | well as modifying the Database as may be technically necessary to use it
116 | in a different mode or format.
117 |
118 | "You" - Means a Person exercising rights under this License who has not
119 | previously violated the terms of this License with respect to the
120 | Database, or who has received express permission from the Licensor to
121 | exercise rights under this License despite a previous violation.
122 |
123 | Words in the singular include the plural and vice versa.
124 |
125 | ### 2.0 What this License covers
126 |
127 | 2.1. Legal effect of this document. This License is:
128 |
129 | a. A license of applicable copyright and neighbouring rights;
130 |
131 | b. A license of the Database Right; and
132 |
133 | c. An agreement in contract between You and the Licensor.
134 |
135 | 2.2 Legal rights covered. This License covers the legal rights in the
136 | Database, including:
137 |
138 | a. Copyright. Any copyright or neighbouring rights in the Database.
139 | The copyright licensed includes any individual elements of the
140 | Database, but does not cover the copyright over the Contents
141 | independent of this Database. See Section 2.4 for details. Copyright
142 | law varies between jurisdictions, but is likely to cover: the Database
143 | model or schema, which is the structure, arrangement, and organisation
144 | of the Database, and can also include the Database tables and table
145 | indexes; the data entry and output sheets; and the Field names of
146 | Contents stored in the Database;
147 |
148 | b. Database Rights. Database Rights only extend to the Extraction and
149 | Re-utilisation of the whole or a Substantial part of the Contents.
150 | Database Rights can apply even when there is no copyright over the
151 | Database. Database Rights can also apply when the Contents are removed
152 | from the Database and are selected and arranged in a way that would
153 | not infringe any applicable copyright; and
154 |
155 | c. Contract. This is an agreement between You and the Licensor for
156 | access to the Database. In return you agree to certain conditions of
157 | use on this access as outlined in this License.
158 |
159 | 2.3 Rights not covered.
160 |
161 | a. This License does not apply to computer programs used in the making
162 | or operation of the Database;
163 |
164 | b. This License does not cover any patents over the Contents or the
165 | Database; and
166 |
167 | c. This License does not cover any trademarks associated with the
168 | Database.
169 |
170 | 2.4 Relationship to Contents in the Database. The individual items of
171 | the Contents contained in this Database may be covered by other rights,
172 | including copyright, patent, data protection, privacy, or personality
173 | rights, and this License does not cover any rights (other than Database
174 | Rights or in contract) in individual Contents contained in the Database.
175 | For example, if used on a Database of images (the Contents), this
176 | License would not apply to copyright over individual images, which could
177 | have their own separate licenses, or one single license covering all of
178 | the rights over the images.
179 |
180 | ### 3.0 Rights granted
181 |
182 | 3.1 Subject to the terms and conditions of this License, the Licensor
183 | grants to You a worldwide, royalty-free, non-exclusive, terminable (but
184 | only under Section 9) license to Use the Database for the duration of
185 | any applicable copyright and Database Rights. These rights explicitly
186 | include commercial use, and do not exclude any field of endeavour. To
187 | the extent possible in the relevant jurisdiction, these rights may be
188 | exercised in all media and formats whether now known or created in the
189 | future.
190 |
191 | The rights granted cover, for example:
192 |
193 | a. Extraction and Re-utilisation of the whole or a Substantial part of
194 | the Contents;
195 |
196 | b. Creation of Derivative Databases;
197 |
198 | c. Creation of Collective Databases;
199 |
200 | d. Creation of temporary or permanent reproductions by any means and
201 | in any form, in whole or in part, including of any Derivative
202 | Databases or as a part of Collective Databases; and
203 |
204 | e. Distribution, communication, display, lending, making available, or
205 | performance to the public by any means and in any form, in whole or in
206 | part, including of any Derivative Database or as a part of Collective
207 | Databases.
208 |
209 | 3.2 Compulsory license schemes. For the avoidance of doubt:
210 |
211 | a. Non-waivable compulsory license schemes. In those jurisdictions in
212 | which the right to collect royalties through any statutory or
213 | compulsory licensing scheme cannot be waived, the Licensor reserves
214 | the exclusive right to collect such royalties for any exercise by You
215 | of the rights granted under this License;
216 |
217 | b. Waivable compulsory license schemes. In those jurisdictions in
218 | which the right to collect royalties through any statutory or
219 | compulsory licensing scheme can be waived, the Licensor waives the
220 | exclusive right to collect such royalties for any exercise by You of
221 | the rights granted under this License; and,
222 |
223 | c. Voluntary license schemes. The Licensor waives the right to collect
224 | royalties, whether individually or, in the event that the Licensor is
225 | a member of a collecting society that administers voluntary licensing
226 | schemes, via that society, from any exercise by You of the rights
227 | granted under this License.
228 |
229 | 3.3 The right to release the Database under different terms, or to stop
230 | distributing or making available the Database, is reserved. Note that
231 | this Database may be multiple-licensed, and so You may have the choice
232 | of using alternative licenses for this Database. Subject to Section
233 | 10.4, all other rights not expressly granted by Licensor are reserved.
234 |
235 | ### 4.0 Conditions of Use
236 |
237 | 4.1 The rights granted in Section 3 above are expressly made subject to
238 | Your complying with the following conditions of use. These are important
239 | conditions of this License, and if You fail to follow them, You will be
240 | in material breach of its terms.
241 |
242 | 4.2 Notices. If You Publicly Convey this Database, any Derivative
243 | Database, or the Database as part of a Collective Database, then You
244 | must:
245 |
246 | a. Do so only under the terms of this License or another license
247 | permitted under Section 4.4;
248 |
249 | b. Include a copy of this License (or, as applicable, a license
250 | permitted under Section 4.4) or its Uniform Resource Identifier (URI)
251 | with the Database or Derivative Database, including both in the
252 | Database or Derivative Database and in any relevant documentation; and
253 |
254 | c. Keep intact any copyright or Database Right notices and notices
255 | that refer to this License.
256 |
257 | d. If it is not possible to put the required notices in a particular
258 | file due to its structure, then You must include the notices in a
259 | location (such as a relevant directory) where users would be likely to
260 | look for it.
261 |
262 | 4.3 Notice for using output (Contents). Creating and Using a Produced
263 | Work does not require the notice in Section 4.2. However, if you
264 | Publicly Use a Produced Work, You must include a notice associated with
265 | the Produced Work reasonably calculated to make any Person that uses,
266 | views, accesses, interacts with, or is otherwise exposed to the Produced
267 | Work aware that Content was obtained from the Database, Derivative
268 | Database, or the Database as part of a Collective Database, and that it
269 | is available under this License.
270 |
271 | a. Example notice. The following text will satisfy notice under
272 | Section 4.3:
273 |
274 | Contains information from DATABASE NAME, which is made available
275 | here under the Open Database License (ODbL).
276 |
277 | DATABASE NAME should be replaced with the name of the Database and a
278 | hyperlink to the URI of the Database. "Open Database License" should
279 | contain a hyperlink to the URI of the text of this License. If
280 | hyperlinks are not possible, You should include the plain text of the
281 | required URI's with the above notice.
282 |
283 | 4.4 Share alike.
284 |
285 | a. Any Derivative Database that You Publicly Use must be only under
286 | the terms of:
287 |
288 | i. This License;
289 |
290 | ii. A later version of this License similar in spirit to this
291 | License; or
292 |
293 | iii. A compatible license.
294 |
295 | If You license the Derivative Database under one of the licenses
296 | mentioned in (iii), You must comply with the terms of that license.
297 |
298 | b. For the avoidance of doubt, Extraction or Re-utilisation of the
299 | whole or a Substantial part of the Contents into a new database is a
300 | Derivative Database and must comply with Section 4.4.
301 |
302 | c. Derivative Databases and Produced Works. A Derivative Database is
303 | Publicly Used and so must comply with Section 4.4. if a Produced Work
304 | created from the Derivative Database is Publicly Used.
305 |
306 | d. Share Alike and additional Contents. For the avoidance of doubt,
307 | You must not add Contents to Derivative Databases under Section 4.4 a
308 | that are incompatible with the rights granted under this License.
309 |
310 | e. Compatible licenses. Licensors may authorise a proxy to determine
311 | compatible licenses under Section 4.4 a iii. If they do so, the
312 | authorised proxy's public statement of acceptance of a compatible
313 | license grants You permission to use the compatible license.
314 |
315 | 4.5 Limits of Share Alike. The requirements of Section 4.4 do not apply
316 | in the following:
317 |
318 | a. For the avoidance of doubt, You are not required to license
319 | Collective Databases under this License if You incorporate this
320 | Database or a Derivative Database in the collection, but this License
321 | still applies to this Database or a Derivative Database as a part of
322 | the Collective Database;
323 |
324 | b. Using this Database, a Derivative Database, or this Database as
325 | part of a Collective Database to create a Produced Work does not
326 | create a Derivative Database for purposes of Section 4.4; and
327 |
328 | c. Use of a Derivative Database internally within an organisation is
329 | not to the public and therefore does not fall under the requirements
330 | of Section 4.4.
331 |
332 | 4.6 Access to Derivative Databases. If You Publicly Use a Derivative
333 | Database or a Produced Work from a Derivative Database, You must also
334 | offer to recipients of the Derivative Database or Produced Work a copy
335 | in a machine readable form of:
336 |
337 | a. The entire Derivative Database; or
338 |
339 | b. A file containing all of the alterations made to the Database or
340 | the method of making the alterations to the Database (such as an
341 | algorithm), including any additional Contents, that make up all the
342 | differences between the Database and the Derivative Database.
343 |
344 | The Derivative Database (under a.) or alteration file (under b.) must be
345 | available at no more than a reasonable production cost for physical
346 | distributions and free of charge if distributed over the internet.
347 |
348 | 4.7 Technological measures and additional terms
349 |
350 | a. This License does not allow You to impose (except subject to
351 | Section 4.7 b.) any terms or any technological measures on the
352 | Database, a Derivative Database, or the whole or a Substantial part of
353 | the Contents that alter or restrict the terms of this License, or any
354 | rights granted under it, or have the effect or intent of restricting
355 | the ability of any person to exercise those rights.
356 |
357 | b. Parallel distribution. You may impose terms or technological
358 | measures on the Database, a Derivative Database, or the whole or a
359 | Substantial part of the Contents (a "Restricted Database") in
360 | contravention of Section 4.74 a. only if You also make a copy of the
361 | Database or a Derivative Database available to the recipient of the
362 | Restricted Database:
363 |
364 | i. That is available without additional fee;
365 |
366 | ii. That is available in a medium that does not alter or restrict
367 | the terms of this License, or any rights granted under it, or have
368 | the effect or intent of restricting the ability of any person to
369 | exercise those rights (an "Unrestricted Database"); and
370 |
371 | iii. The Unrestricted Database is at least as accessible to the
372 | recipient as a practical matter as the Restricted Database.
373 |
374 | c. For the avoidance of doubt, You may place this Database or a
375 | Derivative Database in an authenticated environment, behind a
376 | password, or within a similar access control scheme provided that You
377 | do not alter or restrict the terms of this License or any rights
378 | granted under it or have the effect or intent of restricting the
379 | ability of any person to exercise those rights.
380 |
381 | 4.8 Licensing of others. You may not sublicense the Database. Each time
382 | You communicate the Database, the whole or Substantial part of the
383 | Contents, or any Derivative Database to anyone else in any way, the
384 | Licensor offers to the recipient a license to the Database on the same
385 | terms and conditions as this License. You are not responsible for
386 | enforcing compliance by third parties with this License, but You may
387 | enforce any rights that You have over a Derivative Database. You are
388 | solely responsible for any modifications of a Derivative Database made
389 | by You or another Person at Your direction. You may not impose any
390 | further restrictions on the exercise of the rights granted or affirmed
391 | under this License.
392 |
393 | ### 5.0 Moral rights
394 |
395 | 5.1 Moral rights. This section covers moral rights, including any rights
396 | to be identified as the author of the Database or to object to treatment
397 | that would otherwise prejudice the author's honour and reputation, or
398 | any other derogatory treatment:
399 |
400 | a. For jurisdictions allowing waiver of moral rights, Licensor waives
401 | all moral rights that Licensor may have in the Database to the fullest
402 | extent possible by the law of the relevant jurisdiction under Section
403 | 10.4;
404 |
405 | b. If waiver of moral rights under Section 5.1 a in the relevant
406 | jurisdiction is not possible, Licensor agrees not to assert any moral
407 | rights over the Database and waives all claims in moral rights to the
408 | fullest extent possible by the law of the relevant jurisdiction under
409 | Section 10.4; and
410 |
411 | c. For jurisdictions not allowing waiver or an agreement not to assert
412 | moral rights under Section 5.1 a and b, the author may retain their
413 | moral rights over certain aspects of the Database.
414 |
415 | Please note that some jurisdictions do not allow for the waiver of moral
416 | rights, and so moral rights may still subsist over the Database in some
417 | jurisdictions.
418 |
419 | ### 6.0 Fair dealing, Database exceptions, and other rights not affected
420 |
421 | 6.1 This License does not affect any rights that You or anyone else may
422 | independently have under any applicable law to make any use of this
423 | Database, including without limitation:
424 |
425 | a. Exceptions to the Database Right including: Extraction of Contents
426 | from non-electronic Databases for private purposes, Extraction for
427 | purposes of illustration for teaching or scientific research, and
428 | Extraction or Re-utilisation for public security or an administrative
429 | or judicial procedure.
430 |
431 | b. Fair dealing, fair use, or any other legally recognised limitation
432 | or exception to infringement of copyright or other applicable laws.
433 |
434 | 6.2 This License does not affect any rights of lawful users to Extract
435 | and Re-utilise insubstantial parts of the Contents, evaluated
436 | quantitatively or qualitatively, for any purposes whatsoever, including
437 | creating a Derivative Database (subject to other rights over the
438 | Contents, see Section 2.4). The repeated and systematic Extraction or
439 | Re-utilisation of insubstantial parts of the Contents may however amount
440 | to the Extraction or Re-utilisation of a Substantial part of the
441 | Contents.
442 |
443 | ### 7.0 Warranties and Disclaimer
444 |
445 | 7.1 The Database is licensed by the Licensor "as is" and without any
446 | warranty of any kind, either express, implied, or arising by statute,
447 | custom, course of dealing, or trade usage. Licensor specifically
448 | disclaims any and all implied warranties or conditions of title,
449 | non-infringement, accuracy or completeness, the presence or absence of
450 | errors, fitness for a particular purpose, merchantability, or otherwise.
451 | Some jurisdictions do not allow the exclusion of implied warranties, so
452 | this exclusion may not apply to You.
453 |
454 | ### 8.0 Limitation of liability
455 |
456 | 8.1 Subject to any liability that may not be excluded or limited by law,
457 | the Licensor is not liable for, and expressly excludes, all liability
458 | for loss or damage however and whenever caused to anyone by any use
459 | under this License, whether by You or by anyone else, and whether caused
460 | by any fault on the part of the Licensor or not. This exclusion of
461 | liability includes, but is not limited to, any special, incidental,
462 | consequential, punitive, or exemplary damages such as loss of revenue,
463 | data, anticipated profits, and lost business. This exclusion applies
464 | even if the Licensor has been advised of the possibility of such
465 | damages.
466 |
467 | 8.2 If liability may not be excluded by law, it is limited to actual and
468 | direct financial loss to the extent it is caused by proved negligence on
469 | the part of the Licensor.
470 |
471 | ### 9.0 Termination of Your rights under this License
472 |
473 | 9.1 Any breach by You of the terms and conditions of this License
474 | automatically terminates this License with immediate effect and without
475 | notice to You. For the avoidance of doubt, Persons who have received the
476 | Database, the whole or a Substantial part of the Contents, Derivative
477 | Databases, or the Database as part of a Collective Database from You
478 | under this License will not have their licenses terminated provided
479 | their use is in full compliance with this License or a license granted
480 | under Section 4.8 of this License. Sections 1, 2, 7, 8, 9 and 10 will
481 | survive any termination of this License.
482 |
483 | 9.2 If You are not in breach of the terms of this License, the Licensor
484 | will not terminate Your rights under it.
485 |
486 | 9.3 Unless terminated under Section 9.1, this License is granted to You
487 | for the duration of applicable rights in the Database.
488 |
489 | 9.4 Reinstatement of rights. If you cease any breach of the terms and
490 | conditions of this License, then your full rights under this License
491 | will be reinstated:
492 |
493 | a. Provisionally and subject to permanent termination until the 60th
494 | day after cessation of breach;
495 |
496 | b. Permanently on the 60th day after cessation of breach unless
497 | otherwise reasonably notified by the Licensor; or
498 |
499 | c. Permanently if reasonably notified by the Licensor of the
500 | violation, this is the first time You have received notice of
501 | violation of this License from the Licensor, and You cure the
502 | violation prior to 30 days after your receipt of the notice.
503 |
504 | Persons subject to permanent termination of rights are not eligible to
505 | be a recipient and receive a license under Section 4.8.
506 |
507 | 9.5 Notwithstanding the above, Licensor reserves the right to release
508 | the Database under different license terms or to stop distributing or
509 | making available the Database. Releasing the Database under different
510 | license terms or stopping the distribution of the Database will not
511 | withdraw this License (or any other license that has been, or is
512 | required to be, granted under the terms of this License), and this
513 | License will continue in full force and effect unless terminated as
514 | stated above.
515 |
516 | ### 10.0 General
517 |
518 | 10.1 If any provision of this License is held to be invalid or
519 | unenforceable, that must not affect the validity or enforceability of
520 | the remainder of the terms and conditions of this License and each
521 | remaining provision of this License shall be valid and enforced to the
522 | fullest extent permitted by law.
523 |
524 | 10.2 This License is the entire agreement between the parties with
525 | respect to the rights granted here over the Database. It replaces any
526 | earlier understandings, agreements or representations with respect to
527 | the Database.
528 |
529 | 10.3 If You are in breach of the terms of this License, You will not be
530 | entitled to rely on the terms of this License or to complain of any
531 | breach by the Licensor.
532 |
533 | 10.4 Choice of law. This License takes effect in and will be governed by
534 | the laws of the relevant jurisdiction in which the License terms are
535 | sought to be enforced. If the standard suite of rights granted under
536 | applicable copyright law and Database Rights in the relevant
537 | jurisdiction includes additional rights not granted under this License,
538 | these additional rights are granted in this License in order to meet the
539 | terms of this License.
540 |
--------------------------------------------------------------------------------
/data/stations.json:
--------------------------------------------------------------------------------
1 | {
2 | "Tajrish": {
3 | "name": "Tajrish",
4 | "translations": {"fa": "تجریش"},
5 | "lines": [1],
6 | "longitude": "51.433643000000004",
7 | "latitude": "35.804501",
8 | "address": "خیابان شریعتی-ضلع جنوب غربی میدان قدس",
9 | "colors": ["#E0001F"],
10 | "disabled": false,
11 | "wc": false,
12 | "coffeeShop": false,
13 | "groceryStore": false,
14 | "fastFood": true,
15 | "atm": false,
16 | "elevator": false,
17 | "bicycleParking": false,
18 | "waterCooler": null,
19 | "cleanFood": true,
20 | "blindPath": true,
21 | "fireSuppressionSystem": true,
22 | "fireExtinguisher": true,
23 | "metroPolice": true,
24 | "creditTicketSales": true,
25 | "waitingChair": true,
26 | "camera": true,
27 | "trashCan": true,
28 | "smoking": false,
29 | "petsAllowed": false,
30 | "freeWifi": false,
31 | "prayerRoom": true,
32 | "relations": ["Gheytariyeh"]
33 | },
34 | "Gheytariyeh": {
35 | "name": "Gheytariyeh",
36 | "translations": {"fa": "قیطریه"},
37 | "lines": [1],
38 | "longitude": "51.435252",
39 | "latitude": "35.793119",
40 | "address": "خیابان دکترشریعتی - روبه روی پل رومی",
41 | "colors": ["#E0001F"],
42 | "disabled": false,
43 | "wc": false,
44 | "coffeeShop": false,
45 | "groceryStore": false,
46 | "fastFood": true,
47 | "atm": false,
48 | "elevator": false,
49 | "bicycleParking": true,
50 | "waterCooler": null,
51 | "cleanFood": true,
52 | "blindPath": true,
53 | "fireSuppressionSystem": true,
54 | "fireExtinguisher": true,
55 | "metroPolice": true,
56 | "creditTicketSales": true,
57 | "waitingChair": true,
58 | "camera": true,
59 | "trashCan": true,
60 | "smoking": false,
61 | "petsAllowed": false,
62 | "freeWifi": false,
63 | "prayerRoom": true,
64 | "relations": ["Tajrish","Shahid Sadr"]
65 | },
66 | "Shahid Sadr": {
67 | "name": "Shahid Sadr",
68 | "translations": {"fa": "شهید صدر"},
69 | "lines": [1],
70 | "longitude": "51.435639",
71 | "latitude": "35.785374",
72 | "address": "100 متر بعد از تقاطع بزرگراه شهید صدر و خیابان دکتر شریعتی",
73 | "colors": ["#E0001F"],
74 | "disabled": false,
75 | "wc": false,
76 | "coffeeShop": false,
77 | "groceryStore": false,
78 | "fastFood": false,
79 | "atm": false,
80 | "elevator": false,
81 | "bicycleParking": true,
82 | "waterCooler": null,
83 | "cleanFood": false,
84 | "blindPath": true,
85 | "fireSuppressionSystem": true,
86 | "fireExtinguisher": true,
87 | "metroPolice": true,
88 | "creditTicketSales": true,
89 | "waitingChair": true,
90 | "camera": true,
91 | "trashCan": true,
92 | "smoking": false,
93 | "petsAllowed": false,
94 | "freeWifi": false,
95 | "prayerRoom": true,
96 | "relations": ["Gheytariyeh","Shahid Sadr" ]
97 | },
98 | "Qolhak": {
99 | "name": "Qolhak",
100 | "translations": {"fa": "قلهک"},
101 | "lines": [1],
102 | "longitude": "51.4379137",
103 | "latitude": "35.7726822",
104 | "address": "خیابان دکترشریعتی، بالاتر از دو راهی قلهک، نرسیده به خیابان دولت",
105 | "colors": ["#E0001F"],
106 | "disabled": false,
107 | "wc": false,
108 | "coffeeShop": false,
109 | "groceryStore": false,
110 | "fastFood": true,
111 | "atm": false,
112 | "elevator": false,
113 | "bicycleParking": false,
114 | "waterCooler": null,
115 | "cleanFood": true,
116 | "blindPath": true,
117 | "fireSuppressionSystem": true,
118 | "fireExtinguisher": true,
119 | "metroPolice": true,
120 | "creditTicketSales": true,
121 | "waitingChair": true,
122 | "camera": true,
123 | "trashCan": true,
124 | "smoking": false,
125 | "petsAllowed": false,
126 | "freeWifi": false,
127 | "prayerRoom": true,
128 | "relations": ["Shahid Sadr","Doctor Shariati"]
129 | },
130 | "Doctor Shariati": {
131 | "name": "Doctor Shariati",
132 | "translations": {"fa": "دکتر شریعتی"},
133 | "lines": [1],
134 | "longitude": "51.4440981",
135 | "latitude": "35.7626452",
136 | "address": "خیابان دکتر شریعتی، بالاتر از بلوار میرداماد",
137 | "colors": ["#E0001F"],
138 | "disabled": false,
139 | "wc": false,
140 | "coffeeShop": false,
141 | "groceryStore": false,
142 | "fastFood": false,
143 | "atm": false,
144 | "elevator": true,
145 | "bicycleParking": false,
146 | "waterCooler": null,
147 | "cleanFood": false,
148 | "blindPath": true,
149 | "fireSuppressionSystem": true,
150 | "fireExtinguisher": true,
151 | "metroPolice": true,
152 | "creditTicketSales": true,
153 | "waitingChair": true,
154 | "camera": true,
155 | "trashCan": true,
156 | "smoking": false,
157 | "petsAllowed": false,
158 | "freeWifi": false,
159 | "prayerRoom": true,
160 | "relations": ["Qolhak","Mirdamad"]
161 | },
162 | "Mirdamad": {
163 | "name": "Mirdamad",
164 | "translations": {"fa": "میرداماد"},
165 | "lines": [1],
166 | "longitude": "51.43375",
167 | "latitude": "35.76006",
168 | "address": "بلوار میرداماد، جنب پمپ بنزین، زیر ساختمان رز میرداماد",
169 | "colors": ["#E0001F"],
170 | "disabled": false,
171 | "wc": false,
172 | "coffeeShop": false,
173 | "groceryStore": false,
174 | "fastFood": false,
175 | "atm": false,
176 | "elevator": false,
177 | "bicycleParking": false,
178 | "waterCooler": null,
179 | "cleanFood": false,
180 | "blindPath": true,
181 | "fireSuppressionSystem": true,
182 | "fireExtinguisher": true,
183 | "metroPolice": true,
184 | "creditTicketSales": true,
185 | "waitingChair": true,
186 | "camera": true,
187 | "trashCan": true,
188 | "smoking": false,
189 | "petsAllowed": false,
190 | "freeWifi": false,
191 | "prayerRoom": true,
192 | "relations": ["Doctor Shariati","Shahid Haghani"]
193 | },
194 | "Shahid Haghani": {
195 | "name": "Shahid Haghani",
196 | "translations": {"fa": "شهید حقانی"},
197 | "lines": [1],
198 | "longitude": "51.4257773",
199 | "latitude": "35.7565207",
200 | "address": "بزرگراه شهید حقانی - جنب پارک طالقانی",
201 | "colors": ["#E0001F"],
202 | "disabled": false,
203 | "wc": false,
204 | "coffeeShop": false,
205 | "groceryStore": false,
206 | "fastFood": true,
207 | "atm": false,
208 | "elevator": false,
209 | "bicycleParking": false,
210 | "waterCooler": null,
211 | "cleanFood": true,
212 | "blindPath": true,
213 | "fireSuppressionSystem": true,
214 | "fireExtinguisher": true,
215 | "metroPolice": true,
216 | "creditTicketSales": true,
217 | "waitingChair": true,
218 | "camera": true,
219 | "trashCan": true,
220 | "smoking": false,
221 | "petsAllowed": false,
222 | "freeWifi": false,
223 | "prayerRoom": true,
224 | "relations": ["Mirdamad","Shahid Hemmat"]
225 | },
226 | "Shahid Hemmat": {
227 | "name": "Shahid Hemmat",
228 | "translations": {"fa": "شهید همت"},
229 | "lines": [1],
230 | "longitude": "51.427372",
231 | "latitude": "35.748228",
232 | "address": "بزرگراه شهید همت ، جنب سازمان فرهنگ و ارتباطات اسلامی",
233 | "colors": ["#E0001F"],
234 | "disabled": false,
235 | "wc": false,
236 | "coffeeShop": false,
237 | "groceryStore": false,
238 | "fastFood": false,
239 | "atm": false,
240 | "elevator": false,
241 | "bicycleParking": false,
242 | "waterCooler": null,
243 | "cleanFood": false,
244 | "blindPath": true,
245 | "fireSuppressionSystem": true,
246 | "fireExtinguisher": true,
247 | "metroPolice": true,
248 | "creditTicketSales": true,
249 | "waitingChair": true,
250 | "camera": true,
251 | "trashCan": true,
252 | "smoking": false,
253 | "petsAllowed": false,
254 | "freeWifi": false,
255 | "prayerRoom": true,
256 | "relations": ["Shahid Haghani","Mosalla-ye Imam Khomeini"]
257 | },
258 | "Mosalla-ye Imam Khomeini": {
259 | "name": "Mosalla-ye Imam Khomeini",
260 | "translations": {"fa": "مصلی امام خمینی"},
261 | "lines": [1],
262 | "longitude": "51.427082",
263 | "latitude": "35.74073",
264 | "address": "بزرگراه رسالت ، شمال مصلی ، روبروی سازمان فرهنگ و ارتباطات اسلامی",
265 | "colors": ["#E0001F"],
266 | "disabled": false,
267 | "wc": false,
268 | "coffeeShop": false,
269 | "groceryStore": false,
270 | "fastFood": true,
271 | "atm": false,
272 | "elevator": false,
273 | "bicycleParking": false,
274 | "waterCooler": null,
275 | "cleanFood": true,
276 | "blindPath": true,
277 | "fireSuppressionSystem": true,
278 | "fireExtinguisher": true,
279 | "metroPolice": true,
280 | "creditTicketSales": true,
281 | "waitingChair": true,
282 | "camera": true,
283 | "trashCan": true,
284 | "smoking": false,
285 | "petsAllowed": false,
286 | "freeWifi": false,
287 | "prayerRoom": true,
288 | "relations": ["Shahid Hemmat","Shahid Beheshti"]
289 | },
290 | "Shahid Beheshti": {
291 | "name": "Shahid Beheshti",
292 | "translations": {"fa": "شهید بهشتی"},
293 | "lines": [1,3],
294 | "longitude": "51.42704",
295 | "latitude": "35.731037",
296 | "address": "تقاطع خیابان های شهید بهشتی و شهید مفتح",
297 | "colors": ["#E0001F","#67C5F5"],
298 | "disabled": false,
299 | "wc": false,
300 | "coffeeShop": false,
301 | "groceryStore": false,
302 | "fastFood": false,
303 | "atm": false,
304 | "elevator": true,
305 | "bicycleParking": false,
306 | "waterCooler": null,
307 | "cleanFood": false,
308 | "blindPath": true,
309 | "fireSuppressionSystem": true,
310 | "fireExtinguisher": true,
311 | "metroPolice": true,
312 | "creditTicketSales": true,
313 | "waitingChair": true,
314 | "camera": true,
315 | "trashCan": true,
316 | "smoking": false,
317 | "petsAllowed": false,
318 | "freeWifi": true,
319 | "prayerRoom": true,
320 | "relations": ["Mosalla-ye Imam Khomeini","Sohrevardi","Mirza-ye Shirazi","Shahid Mofattah"]
321 | },
322 | "Shahid Mofattah": {
323 | "name": "Shahid Mofattah",
324 | "translations": {"fa": "شهید مفتح"},
325 | "lines": [1],
326 | "longitude": "51.427632",
327 | "latitude": "35.724453",
328 | "address": "تقاطع خیابان های استاد شهید مطهری و شهید مفتح",
329 | "colors": ["#E0001F"],
330 | "disabled": false,
331 | "wc": false,
332 | "coffeeShop": false,
333 | "groceryStore": false,
334 | "fastFood": true,
335 | "atm": false,
336 | "elevator": false,
337 | "bicycleParking": true,
338 | "waterCooler": null,
339 | "cleanFood": true,
340 | "blindPath": true,
341 | "fireSuppressionSystem": true,
342 | "fireExtinguisher": true,
343 | "metroPolice": true,
344 | "creditTicketSales": true,
345 | "waitingChair": true,
346 | "camera": true,
347 | "trashCan": true,
348 | "smoking": false,
349 | "petsAllowed": false,
350 | "freeWifi": false,
351 | "prayerRoom": true,
352 | "relations": ["Shahid Beheshti","Shohada-ye Haftom-e Tir"]
353 | },
354 | "Ayatollah Taleghani": {
355 | "name": "Ayatollah Taleghani",
356 | "translations": {"fa": "آیتالله طالقانی"},
357 | "lines": [1],
358 | "longitude": "51.425495",
359 | "latitude": "35.707161",
360 | "address": "تقاطع خیابان آیت اله طالقانی و خیابان شهید مفتح",
361 | "colors": ["#E0001F"],
362 | "disabled": false,
363 | "wc": false,
364 | "coffeeShop": false,
365 | "groceryStore": false,
366 | "fastFoodn": false,
367 | "atm": false,
368 | "elevator": false,
369 | "bicycleParking": false,
370 | "waterCooler": null,
371 | "cleanFood": false,
372 | "blindPath": true,
373 | "fireSuppressionSystem": true,
374 | "fireExtinguisher": true,
375 | "metroPolice": true,
376 | "creditTicketSales": true,
377 | "waitingChair": true,
378 | "camera": true,
379 | "trashCan": true,
380 | "smoking": false,
381 | "petsAllowed": false,
382 | "freeWifi": false,
383 | "prayerRoom": true,
384 | "relations": ["Shohada-ye Haftom-e Tir","Darvazeh Dolat"]
385 | },
386 | "Darvazeh Dolat": {
387 | "name": "Darvazeh Dolat",
388 | "translations": {"fa": "دروازه دولت"},
389 | "lines": [1,4],
390 | "longitude": "51.425849",
391 | "latitude": "35.701316",
392 | "address": "خیابان انقلاب اسلامی , تقاطع سعدی شمالی و شهید مفتح",
393 | "colors": ["#E0001F","#F8E100"],
394 | "disabled": false,
395 | "wc": false,
396 | "coffeeShop": false,
397 | "groceryStore": false,
398 | "fastFood": false,
399 | "atm": false,
400 | "elevator": false,
401 | "bicycleParking": false,
402 | "waterCooler": null,
403 | "cleanFood": false,
404 | "blindPath": true,
405 | "fireSuppressionSystem": true,
406 | "fireExtinguisher": true,
407 | "metroPolice": true,
408 | "creditTicketSales": true,
409 | "waitingChair": true,
410 | "camera": true,
411 | "trashCan": true,
412 | "smoking": false,
413 | "petsAllowed": false,
414 | "freeWifi": true,
415 | "prayerRoom": true,
416 | "relations": ["Ayatollah Taleghani","Ferdowsi","Darvazeh Shemiran","Sa'adi"]
417 | },
418 | "Sa'adi": {
419 | "name": "Sa'adi",
420 | "translations": {"fa": "سعدی"},
421 | "lines": [1],
422 | "longitude": "51.4244163",
423 | "latitude": "35.6934793",
424 | "address": "میدان استقلال - (میدان مخبرالدوله)",
425 | "colors": ["#E0001F"],
426 | "disabled": false,
427 | "wc": false,
428 | "coffeeShop": false,
429 | "groceryStore": false,
430 | "fastFood": true,
431 | "atm": false,
432 | "elevator": false,
433 | "bicycleParking": false,
434 | "waterCooler": null,
435 | "cleanFood": true,
436 | "blindPath": true,
437 | "fireSuppressionSystem": true,
438 | "fireExtinguisher": true,
439 | "metroPolice": true,
440 | "creditTicketSales": true,
441 | "waitingChair": true,
442 | "camera": true,
443 | "trashCan": true,
444 | "smoking": false,
445 | "petsAllowed": false,
446 | "freeWifi": false,
447 | "prayerRoom": true,
448 | "relations": ["Darvazeh Dolat","Imam Khomeini"]
449 | },
450 | "Imam Khomeini": {
451 | "name": "Imam Khomeini",
452 | "translations": {"fa": "امام خمینی"},
453 | "lines": [1,2],
454 | "longitude": "51.421171",
455 | "latitude": "35.686433",
456 | "address": "میدان امام خمینی (ره)",
457 | "colors": ["#E0001F","#2F4389"],
458 | "disabled": false,
459 | "wc": false,
460 | "coffeeShop": false,
461 | "groceryStore": false,
462 | "fastFood": true,
463 | "atm": false,
464 | "elevator": true,
465 | "bicycleParking": false,
466 | "waterCooler": null,
467 | "cleanFood": true,
468 | "blindPath": true,
469 | "fireSuppressionSystem": true,
470 | "fireExtinguisher": true,
471 | "metroPolice": true,
472 | "creditTicketSales": true,
473 | "waitingChair": true,
474 | "camera": true,
475 | "trashCan": true,
476 | "smoking": false,
477 | "petsAllowed": false,
478 | "freeWifi": true,
479 | "prayerRoom": true,
480 | "relations": ["Sa'adi","Hasan Abad","Mellat","Panzdah-e Khordad"]
481 | },
482 | "Panzdah-e Khordad": {
483 | "name": "Panzdah-e Khordad",
484 | "translations": {"fa": "پانزده خرداد"},
485 | "lines": [1],
486 | "longitude": "51.417287",
487 | "latitude": "35.678276",
488 | "address": "تقاطع خیابان های پانزد خرداد و خیام - چهارراه گلوبندک",
489 | "colors": ["#E0001F"],
490 | "disabled": false,
491 | "wc": false,
492 | "coffeeShop": false,
493 | "groceryStore": false,
494 | "fastFood": false,
495 | "atm": false,
496 | "elevator": false,
497 | "bicycleParking": false,
498 | "waterCooler": null,
499 | "cleanFood": false,
500 | "blindPath": true,
501 | "fireSuppressionSystem": true,
502 | "fireExtinguisher": true,
503 | "metroPolice": true,
504 | "creditTicketSales": true,
505 | "waitingChair": true,
506 | "camera": true,
507 | "trashCan": true,
508 | "smoking": false,
509 | "petsAllowed": false,
510 | "freeWifi": false,
511 | "prayerRoom": true,
512 | "relations": ["Imam Khomeini","Khayyam"]
513 | },
514 | "Khayyam": {
515 | "name": "Khayyam",
516 | "translations": {"fa": "خیام"},
517 | "lines": [1],
518 | "longitude": "51.416568",
519 | "latitude": "35.673073",
520 | "address": "خیابان خیام شمالی , پایین تر از چهارراه گلوبندک , جنب امامزاده",
521 | "colors": ["#E0001F"],
522 | "disabled": false,
523 | "wc": false,
524 | "coffeeShop": false,
525 | "groceryStore": false,
526 | "fastFood": false,
527 | "atm": false,
528 | "elevator": false,
529 | "bicycleParking": false,
530 | "waterCooler": null,
531 | "cleanFood": false,
532 | "blindPath": true,
533 | "fireSuppressionSystem": true,
534 | "fireExtinguisher": true,
535 | "metroPolice": true,
536 | "creditTicketSales": true,
537 | "waitingChair": true,
538 | "camera": true,
539 | "trashCan": true,
540 | "smoking": false,
541 | "petsAllowed": false,
542 | "freeWifi": false,
543 | "prayerRoom": true,
544 | "relations": ["Panzdah-e Khordad","Meydan-e Mohammadiyeh"]
545 | },
546 | "Meydan-e Mohammadiyeh": {
547 | "name": "Meydan-e Mohammadiyeh",
548 | "translations": {"fa": "میدان محمدیه"},
549 | "lines": [1,7],
550 | "longitude": "51.415488",
551 | "latitude": "35.667753",
552 | "address": "میدان محمدیه(اعدام) , تقاطع خیابان خیام و مولوی",
553 | "colors": ["#E0001F","#7F0B74"],
554 | "disabled": false,
555 | "wc": false,
556 | "coffeeShop": false,
557 | "groceryStore": false,
558 | "fastFood": false,
559 | "atm": false,
560 | "elevator": true,
561 | "bicycleParking": true,
562 | "waterCooler": null,
563 | "cleanFood": false,
564 | "blindPath": true,
565 | "fireSuppressionSystem": true,
566 | "fireExtinguisher": true,
567 | "metroPolice": true,
568 | "creditTicketSales": true,
569 | "waitingChair": true,
570 | "camera": true,
571 | "trashCan": true,
572 | "smoking": false,
573 | "petsAllowed": false,
574 | "freeWifi": false,
575 | "prayerRoom": true,
576 | "relations": ["Khayyam","Mahdiyeh","Mowlavi","Shoush"]
577 | },
578 | "Shoush": {
579 | "name": "Shoush",
580 | "translations": {"fa": "شوش"},
581 | "lines": [1],
582 | "longitude": "51.414154",
583 | "latitude": "35.65754",
584 | "address": "تقاطع خیابان های شوش و خیام",
585 | "colors": ["#E0001F"],
586 | "disabled": false,
587 | "wc": false,
588 | "coffeeShop": false,
589 | "groceryStore": false,
590 | "fastFood": false,
591 | "atm": false,
592 | "elevator": true,
593 | "bicycleParking": true,
594 | "waterCooler": null,
595 | "cleanFood": false,
596 | "blindPath": true,
597 | "fireSuppressionSystem": true,
598 | "fireExtinguisher": true,
599 | "metroPolice": true,
600 | "creditTicketSales": true,
601 | "waitingChair": true,
602 | "camera": true,
603 | "trashCan": true,
604 | "smoking": false,
605 | "petsAllowed": false,
606 | "freeWifi": false,
607 | "prayerRoom": true,
608 | "relations": ["Meydan-e Mohammadiyeh","Payaneh Jonoub(Jonoub Terminal)"]
609 | },
610 | "Payaneh Jonoub(Jonoub Terminal)": {
611 | "name": "Payaneh Jonoub(Jonoub Terminal)",
612 | "translations": {"fa": "پایانه جنوبی"},
613 | "lines": [1],
614 | "longitude": "51.416289",
615 | "latitude": "35.650688",
616 | "address": "خیابان عباسی , ضلع شمال غربی پایانه جنوب",
617 | "colors": ["#E0001F"],
618 | "disabled": false,
619 | "wc": false,
620 | "coffeeShop": false,
621 | "groceryStore": false,
622 | "fastFood": true,
623 | "atm": false,
624 | "elevator": false,
625 | "bicycleParking": false,
626 | "waterCooler": null,
627 | "cleanFood": true,
628 | "blindPath": true,
629 | "fireSuppressionSystem": true,
630 | "fireExtinguisher": true,
631 | "metroPolice": true,
632 | "creditTicketSales": true,
633 | "waitingChair": true,
634 | "camera": true,
635 | "trashCan": true,
636 | "smoking": false,
637 | "petsAllowed": false,
638 | "freeWifi": false,
639 | "prayerRoom": true,
640 | "relations": ["Shoush","Shahid Bokharaei"]
641 | },
642 | "Shahid Bokharaei": {
643 | "name": "Shahid Bokharaei",
644 | "translations": {"fa": "شهید بخارایی"},
645 | "lines": [1],
646 | "longitude": "51.414787",
647 | "latitude": "35.640609",
648 | "address": "خیابان شهید رجایی , خیابان ابریشم , 100متری شهید همدانی",
649 | "colors": ["#E0001F"],
650 | "disabled": false,
651 | "wc": true,
652 | "coffeeShop": false,
653 | "groceryStore": false,
654 | "fastFood": false,
655 | "atm": false,
656 | "elevator": false,
657 | "bicycleParking": true,
658 | "waterCooler": null,
659 | "cleanFood": false,
660 | "blindPath": true,
661 | "fireSuppressionSystem": true,
662 | "fireExtinguisher": true,
663 | "metroPolice": true,
664 | "creditTicketSales": true,
665 | "waitingChair": true,
666 | "camera": true,
667 | "trashCan": true,
668 | "smoking": false,
669 | "petsAllowed": false,
670 | "freeWifi": false,
671 | "prayerRoom": true,
672 | "relations": ["Payaneh Jonoub(Jonoub Terminal)","Aliabad"]
673 | },
674 | "Aliabad": {
675 | "name": "Aliabad",
676 | "translations": {"fa": "علیآباد"},
677 | "lines": [1],
678 | "longitude": "51.416203",
679 | "latitude": "35.629256",
680 | "address": "جاده قدیم قم- سه راه پالایشگاه - خیابان شهید گلشنی",
681 | "colors": ["#E0001F"],
682 | "disabled": false,
683 | "wc": true,
684 | "coffeeShop": false,
685 | "groceryStore": false,
686 | "fastFood": false,
687 | "atm": false,
688 | "elevator": false,
689 | "bicycleParking": true,
690 | "waterCooler": null,
691 | "cleanFood": false,
692 | "blindPath": true,
693 | "fireSuppressionSystem": true,
694 | "fireExtinguisher": true,
695 | "metroPolice": true,
696 | "creditTicketSales": true,
697 | "waitingChair": true,
698 | "camera": true,
699 | "trashCan": true,
700 | "smoking": false,
701 | "petsAllowed": false,
702 | "freeWifi": false,
703 | "prayerRoom": true,
704 | "relations": ["Shahid Bokharaei","Javanmard-e Ghassab"]
705 | },
706 | "Javanmard-e Ghassab": {
707 | "name": "Javanmard-e Ghassab",
708 | "translations": {"fa": "جوانمرد قصاب"},
709 | "lines": [1],
710 | "longitude": "51.420141",
711 | "latitude": "35.609764",
712 | "address": "بلوار شهید دستواره جنوبی - بین میدان مادر و نماز",
713 | "colors": ["#E0001F"],
714 | "disabled": false,
715 | "wc": true,
716 | "coffeeShop": false,
717 | "groceryStore": false,
718 | "fastFood": false,
719 | "atm": false,
720 | "elevator": false,
721 | "bicycleParking": true,
722 | "waterCooler": null,
723 | "cleanFood": false,
724 | "blindPath": true,
725 | "fireSuppressionSystem": true,
726 | "fireExtinguisher": true,
727 | "metroPolice": true,
728 | "creditTicketSales": true,
729 | "waitingChair": true,
730 | "camera": true,
731 | "trashCan": true,
732 | "smoking": false,
733 | "petsAllowed": false,
734 | "freeWifi": false,
735 | "prayerRoom": true,
736 | "relations": ["Aliabad","Shahr-e Rey"]
737 | },
738 | "Shahr-e Rey": {
739 | "name": "Shahr-e Rey",
740 | "translations": {"fa": "شهر ری"},
741 | "lines": [1],
742 | "longitude": "51.422287",
743 | "latitude": "35.594672",
744 | "address": "شهر ری , میدان فرمانداری , خیابان مدرس",
745 | "colors": ["#E0001F"],
746 | "disabled": false,
747 | "wc": true,
748 | "coffeeShop": false,
749 | "groceryStore": false,
750 | "fastFood": true,
751 | "atm": false,
752 | "elevator": true,
753 | "bicycleParking": true,
754 | "waterCooler": null,
755 | "cleanFood": true,
756 | "blindPath": true,
757 | "fireSuppressionSystem": true,
758 | "fireExtinguisher": true,
759 | "metroPolice": true,
760 | "creditTicketSales": true,
761 | "waitingChair": true,
762 | "camera": true,
763 | "trashCan": true,
764 | "smoking": false,
765 | "petsAllowed": false,
766 | "freeWifi": false,
767 | "prayerRoom": true,
768 | "relations": ["Javanmard-e Ghassab","Palayeshgah"]
769 | },
770 | "Palayeshgah": {
771 | "name": "Palayeshgah",
772 | "translations": {"fa": "پالایشگاه"},
773 | "lines": [1],
774 | "longitude": "51.406975",
775 | "latitude": "35.57357",
776 | "address": "شهرری جاده قدیم قم نرسیده به باقرشهر روبروی پالایشگاه",
777 | "colors": ["#E0001F"],
778 | "disabled": false,
779 | "wc": true,
780 | "coffeeShop": true,
781 | "groceryStore": false,
782 | "fastFood": false,
783 | "atm": true,
784 | "elevator": false,
785 | "bicycleParking": false,
786 | "waterCooler": null,
787 | "cleanFood": false,
788 | "blindPath": true,
789 | "fireSuppressionSystem": true,
790 | "fireExtinguisher": true,
791 | "metroPolice": true,
792 | "creditTicketSales": true,
793 | "waitingChair": true,
794 | "camera": true,
795 | "trashCan": true,
796 | "smoking": false,
797 | "petsAllowed": false,
798 | "freeWifi": false,
799 | "prayerRoom": true,
800 | "relations": ["Shahr-e Rey","Shahed - BagherShahr"]
801 | },
802 | "Shahed - BagherShahr": {
803 | "name": "Shahed - BagherShahr",
804 | "translations": {"fa": "شاهد - باقرشهر"},
805 | "lines": [1],
806 | "longitude": "51.382606",
807 | "latitude": "35.546998",
808 | "address": "اتوبان شهید کاظمی، روبه روی درب شمالی بهشت زهرا",
809 | "colors": ["#E0001F"],
810 | "disabled": false,
811 | "wc": false,
812 | "coffeeShop": false,
813 | "groceryStore": true,
814 | "fastFood": false,
815 | "atm": true,
816 | "elevator": false,
817 | "bicycleParking": true,
818 | "waterCooler": null,
819 | "cleanFood": false,
820 | "blindPath": true,
821 | "fireSuppressionSystem": true,
822 | "fireExtinguisher": true,
823 | "metroPolice": true,
824 | "creditTicketSales": true,
825 | "waitingChair": true,
826 | "camera": true,
827 | "trashCan": true,
828 | "smoking": false,
829 | "petsAllowed": false,
830 | "freeWifi": false,
831 | "prayerRoom": true,
832 | "relations": ["Palayeshgah","Namayeshgah-e Shahr-e Aftab","Holy Shrine of Imam Khomeini"]
833 | },
834 | "Namayeshgah-e Shahr-e Aftab": {
835 | "name": "Namayeshgah-e Shahr-e Aftab",
836 | "translations": {"fa": "نمایشگاه شهر آفتاب"},
837 | "lines": [1],
838 | "longitude": "51.349032",
839 | "latitude": "35.539811",
840 | "address": "شهر آفتاب",
841 | "colors": ["#E0001F"],
842 | "disabled": false,
843 | "wc": false,
844 | "coffeeShop": false,
845 | "groceryStore": false,
846 | "fastFood": false,
847 | "atm": false,
848 | "elevator": false,
849 | "bicycleParking": false,
850 | "waterCooler": null,
851 | "cleanFood": false,
852 | "blindPath": true,
853 | "fireSuppressionSystem": true,
854 | "fireExtinguisher": true,
855 | "metroPolice": true,
856 | "creditTicketSales": true,
857 | "waitingChair": true,
858 | "camera": true,
859 | "trashCan": true,
860 | "smoking": false,
861 | "petsAllowed": false,
862 | "freeWifi": false,
863 | "prayerRoom": false,
864 | "relations": ["Shahed - BagherShahr","Vavan"]
865 | },
866 | "Vavan": {
867 | "name": "Vavan",
868 | "translations": {"fa": "واوان"},
869 | "lines": [1],
870 | "longitude": "51.30011",
871 | "latitude": "35.514507",
872 | "address": "اتوبان تهران - قم، بعد از فرودگاه امام خمینی (ره)، شهرک واوان",
873 | "colors": ["#E0001F"],
874 | "disabled": true,
875 | "wc": false,
876 | "coffeeShop": false,
877 | "groceryStore": false,
878 | "fastFood": false,
879 | "atm": false,
880 | "elevator": false,
881 | "bicycleParking": false,
882 | "waterCooler": null,
883 | "cleanFood": false,
884 | "blindPath": true,
885 | "fireSuppressionSystem": true,
886 | "fireExtinguisher": true,
887 | "metroPolice": true,
888 | "creditTicketSales": true,
889 | "waitingChair": true,
890 | "camera": true,
891 | "trashCan": true,
892 | "smoking": false,
893 | "petsAllowed": false,
894 | "freeWifi": false,
895 | "prayerRoom": false,
896 | "relations": ["Namayeshgah-e Shahr-e Aftab","Emam Khomeini Airport"]
897 | },
898 | "Emam Khomeini Airport": {
899 | "name": "Emam Khomeini Airport",
900 | "translations": {"fa": "فرودگاه امام خمینی"},
901 | "lines": [1],
902 | "longitude": "51.152221",
903 | "latitude": "35.416111",
904 | "address": "فرودگاه بین المللی امام خمینی (ره)",
905 | "colors": ["#E0001F"],
906 | "disabled": false,
907 | "wc": true,
908 | "coffeeShop": true,
909 | "groceryStore": true,
910 | "fastFood": true,
911 | "atm": true,
912 | "elevator": true,
913 | "bicycleParking": false,
914 | "waterCooler": null,
915 | "cleanFood": false,
916 | "blindPath": true,
917 | "fireSuppressionSystem": true,
918 | "fireExtinguisher": true,
919 | "metroPolice": true,
920 | "creditTicketSales": true,
921 | "waitingChair": true,
922 | "camera": true,
923 | "trashCan": true,
924 | "smoking": false,
925 | "petsAllowed": false,
926 | "freeWifi": false,
927 | "prayerRoom": false,
928 | "relations": ["Vavan","Shahr-e Parand"]
929 | },
930 | "Shahr-e Parand": {
931 | "name": "Shahr-e Parand",
932 | "translations": {"fa": "شهر پرند"},
933 | "lines": [1],
934 | "longitude": "50.923976",
935 | "latitude": "35.489058",
936 | "address": "شهر جدید پرند",
937 | "colors": ["#E0001F"],
938 | "disabled": true,
939 | "wc": false,
940 | "coffeeShop": false,
941 | "groceryStore": false,
942 | "fastFood": false,
943 | "atm": false,
944 | "elevator": true,
945 | "bicycleParking": false,
946 | "waterCooler": null,
947 | "cleanFood": false,
948 | "blindPath": true,
949 | "fireSuppressionSystem": true,
950 | "fireExtinguisher": true,
951 | "metroPolice": true,
952 | "creditTicketSales": true,
953 | "waitingChair": true,
954 | "camera": true,
955 | "trashCan": true,
956 | "smoking": false,
957 | "petsAllowed": false,
958 | "freeWifi": false,
959 | "prayerRoom": false,
960 | "relations": ["Emam Khomeini Airport"]
961 | },
962 | "Holy Shrine of Imam Khomeini": {
963 | "name": "Holy Shrine of Imam Khomeini",
964 | "translations": {"fa": "حرم مطهر امام خمینی"},
965 | "lines": [1],
966 | "longitude": "51.373036",
967 | "latitude": "35.545077",
968 | "address": "ضلع شرقی حرم امام خمینی - بلوار اصلی بهشت زهرا",
969 | "colors": ["#E0001F"],
970 | "disabled": false,
971 | "wc": false,
972 | "coffeeShop": false,
973 | "groceryStore": false,
974 | "fastFood": true,
975 | "atm": false,
976 | "elevator": false,
977 | "bicycleParking": false,
978 | "waterCooler": null,
979 | "cleanFood": true,
980 | "blindPath": true,
981 | "fireSuppressionSystem": true,
982 | "fireExtinguisher": true,
983 | "metroPolice": true,
984 | "creditTicketSales": true,
985 | "waitingChair": true,
986 | "camera": true,
987 | "trashCan": true,
988 | "smoking": false,
989 | "petsAllowed": false,
990 | "freeWifi": false,
991 | "prayerRoom": true,
992 | "relations": ["Shahed - BagherShahr","Kahrizak"]
993 | },
994 | "Kahrizak": {
995 | "name": "Kahrizak",
996 | "translations": {"fa": "کهریزک"},
997 | "lines": [1],
998 | "longitude": "51.369292",
999 | "latitude": "35.521574",
1000 | "address": "جاده قدیم قم - بعداز درب اصلی بهشت زهرا (س) - جنب پارک لاله",
1001 | "colors": ["#E0001F"],
1002 | "disabled": false,
1003 | "wc": false,
1004 | "coffeeShop": false,
1005 | "groceryStore": false,
1006 | "fastFood": false,
1007 | "atm": false,
1008 | "elevator": false,
1009 | "bicycleParking": true,
1010 | "waterCooler": null,
1011 | "cleanFood": false,
1012 | "blindPath": true,
1013 | "fireSuppressionSystem": true,
1014 | "fireExtinguisher": true,
1015 | "metroPolice": true,
1016 | "creditTicketSales": true,
1017 | "waitingChair": true,
1018 | "camera": true,
1019 | "trashCan": true,
1020 | "smoking": false,
1021 | "petsAllowed": false,
1022 | "freeWifi": false,
1023 | "prayerRoom": true,
1024 | "relations": ["Holy Shrine of Imam Khomeini"]
1025 | },
1026 | "Farhangsara": {
1027 | "name": "Farhangsara",
1028 | "translations": {"fa": "فرهنگسرا"},
1029 | "lines": [2],
1030 | "longitude": "51.546757",
1031 | "latitude": "35.729687",
1032 | "address": "تهرانپارس، اول خیابان درختی , روبه روی فرهنگسرای اشراق",
1033 | "colors": ["#2F4389"],
1034 | "disabled": false,
1035 | "wc": false,
1036 | "coffeeShop": false,
1037 | "groceryStore": false,
1038 | "fastFood": false,
1039 | "atm": true,
1040 | "elevator": false,
1041 | "bicycleParking": false,
1042 | "waterCooler": true,
1043 | "cleanFood": false,
1044 | "blindPath": true,
1045 | "fireSuppressionSystem": true,
1046 | "fireExtinguisher": true,
1047 | "metroPolice": true,
1048 | "creditTicketSales": true,
1049 | "waitingChair": true,
1050 | "camera": true,
1051 | "trashCan": true,
1052 | "smoking": false,
1053 | "petsAllowed": false,
1054 | "freeWifi": false,
1055 | "prayerRoom": false,
1056 | "relations": ["Tehranpars"]
1057 | },
1058 | "Tehranpars": {
1059 | "name": "Tehranpars",
1060 | "translations": {"fa": "تهرانپارس"},
1061 | "lines": [2],
1062 | "longitude": "51.5285321",
1063 | "latitude": "35.7316491",
1064 | "address": "بزرگراه رسالت بعد از چهارراه تیرانداز نبش اخوت",
1065 | "colors": ["#2F4389"],
1066 | "disabled": false,
1067 | "wc": false,
1068 | "coffeeShop": false,
1069 | "groceryStore": false,
1070 | "fastFood": false,
1071 | "atm": false,
1072 | "elevator": false,
1073 | "bicycleParking": false,
1074 | "waterCooler": null,
1075 | "cleanFood": false,
1076 | "blindPath": true,
1077 | "fireSuppressionSystem": true,
1078 | "fireExtinguisher": true,
1079 | "metroPolice": true,
1080 | "creditTicketSales": true,
1081 | "waitingChair": true,
1082 | "camera": true,
1083 | "trashCan": true,
1084 | "smoking": false,
1085 | "petsAllowed": false,
1086 | "freeWifi": false,
1087 | "prayerRoom": false,
1088 | "relations": ["Farhangsara","Shahid Bagheri"]
1089 | },
1090 | "Shahid Bagheri": {
1091 | "name": "Shahid Bagheri",
1092 | "translations": {"fa": "شهید باقری"},
1093 | "lines": [2],
1094 | "longitude": "51.516856",
1095 | "latitude": "35.733397",
1096 | "address": "تقاطع بزرگراه رسالت و شهید باقری",
1097 | "colors": ["#2F4389"],
1098 | "disabled": false,
1099 | "wc": false,
1100 | "coffeeShop": false,
1101 | "groceryStore": true,
1102 | "fastFood": false,
1103 | "atm": false,
1104 | "elevator": false,
1105 | "bicycleParking": true,
1106 | "waterCooler": null,
1107 | "cleanFood": false,
1108 | "blindPath": true,
1109 | "fireSuppressionSystem": true,
1110 | "fireExtinguisher": true,
1111 | "metroPolice": true,
1112 | "creditTicketSales": true,
1113 | "waitingChair": true,
1114 | "camera": true,
1115 | "trashCan": true,
1116 | "smoking": false,
1117 | "petsAllowed": false,
1118 | "freeWifi": false,
1119 | "prayerRoom": false,
1120 | "relations": ["Tehranpars","Daneshgah-e Elm-o San'at"]
1121 | },
1122 | "Daneshgah-e Elm-o San'at": {
1123 | "name": "Daneshgah-e Elm-o San'at",
1124 | "translations": {"fa": "دانشگاه علم و صنعت"},
1125 | "lines": [2],
1126 | "longitude": "51.504786",
1127 | "latitude": "35.734425",
1128 | "address": "بزرگراه رسالت، چهار راه دردشت",
1129 | "colors": ["#2F4389"],
1130 | "disabled": false,
1131 | "wc": true,
1132 | "coffeeShop": false,
1133 | "groceryStore": false,
1134 | "fastFood": false,
1135 | "atm": false,
1136 | "elevator": true,
1137 | "bicycleParking": true,
1138 | "waterCooler": null,
1139 | "cleanFood": false,
1140 | "blindPath": true,
1141 | "fireSuppressionSystem": true,
1142 | "fireExtinguisher": true,
1143 | "metroPolice": true,
1144 | "creditTicketSales": true,
1145 | "waitingChair": true,
1146 | "camera": true,
1147 | "trashCan": true,
1148 | "smoking": false,
1149 | "petsAllowed": false,
1150 | "freeWifi": false,
1151 | "prayerRoom": false,
1152 | "relations": ["Shahid Bagheri","Sarsabz"]
1153 | },
1154 | "Sarsabz": {
1155 | "name": "Sarsabz",
1156 | "translations": {"fa": "سرسبز"},
1157 | "lines": [2],
1158 | "longitude": "51.494873",
1159 | "latitude": "35.73547",
1160 | "address": "بزگراه رسالت، چهارراه شهید آیت",
1161 | "colors": ["#2F4389"],
1162 | "disabled": false,
1163 | "wc": false,
1164 | "coffeeShop": false,
1165 | "groceryStore": false,
1166 | "fastFood": true,
1167 | "atm": false,
1168 | "elevator": false,
1169 | "bicycleParking": true,
1170 | "waterCooler": null,
1171 | "cleanFood": true,
1172 | "blindPath": true,
1173 | "fireSuppressionSystem": true,
1174 | "fireExtinguisher": true,
1175 | "metroPolice": true,
1176 | "creditTicketSales": true,
1177 | "waitingChair": true,
1178 | "camera": true,
1179 | "trashCan": true,
1180 | "smoking": false,
1181 | "petsAllowed": false,
1182 | "freeWifi": false,
1183 | "prayerRoom": false,
1184 | "relations": ["Daneshgah-e Elm-o San'at","Janbazan"]
1185 | },
1186 | "Janbazan": {
1187 | "name": "Janbazan",
1188 | "translations": {"fa": "جانبازان"},
1189 | "lines": [2],
1190 | "longitude": "51.484081",
1191 | "latitude": "35.733088",
1192 | "address": "خیابان شهید مدنی، بالاتر از خیابان گلبرگ",
1193 | "colors": ["#2F4389"],
1194 | "disabled": false,
1195 | "wc": false,
1196 | "coffeeShop": false,
1197 | "groceryStore": false,
1198 | "fastFood": false,
1199 | "atm": false,
1200 | "elevator": true,
1201 | "bicycleParking": true,
1202 | "waterCooler": null,
1203 | "cleanFood": false,
1204 | "blindPath": true,
1205 | "fireSuppressionSystem": true,
1206 | "fireExtinguisher": true,
1207 | "metroPolice": true,
1208 | "creditTicketSales": true,
1209 | "waitingChair": true,
1210 | "camera": true,
1211 | "trashCan": true,
1212 | "smoking": false,
1213 | "petsAllowed": false,
1214 | "freeWifi": false,
1215 | "prayerRoom": true,
1216 | "relations": ["Sarsabz","Fadak"]
1217 | },
1218 | "Fadak": {
1219 | "name": "Fadak",
1220 | "translations": {"fa": "فدک"},
1221 | "lines": [2],
1222 | "longitude": "51.4756353",
1223 | "latitude": "35.7264805",
1224 | "address": "خیابان شهید مدنی، روبروی ساختمان های مسکونی دادگستری",
1225 | "colors": ["#2F4389"],
1226 | "disabled": false,
1227 | "wc": false,
1228 | "coffeeShop": false,
1229 | "groceryStore": false,
1230 | "fastFood": false,
1231 | "atm": true,
1232 | "elevator": false,
1233 | "bicycleParking": true,
1234 | "waterCooler": true,
1235 | "cleanFood": false,
1236 | "blindPath": true,
1237 | "fireSuppressionSystem": true,
1238 | "fireExtinguisher": true,
1239 | "metroPolice": true,
1240 | "creditTicketSales": true,
1241 | "waitingChair": true,
1242 | "camera": true,
1243 | "trashCan": true,
1244 | "smoking": false,
1245 | "petsAllowed": false,
1246 | "freeWifi": false,
1247 | "prayerRoom": true,
1248 | "relations": ["Janbazan","Sabalan"]
1249 | },
1250 | "Sabalan": {
1251 | "name": "Sabalan",
1252 | "translations": {"fa": "سبلان"},
1253 | "lines": [2],
1254 | "longitude": "51.464531",
1255 | "latitude": "35.71826",
1256 | "address": "تقاطع خیابان های شهید مدنی و سبلان",
1257 | "colors": ["#2F4389"],
1258 | "disabled": false,
1259 | "wc": false,
1260 | "coffeeShop": false,
1261 | "groceryStore": false,
1262 | "fastFood": false,
1263 | "atm": false,
1264 | "elevator": false,
1265 | "bicycleParking": false,
1266 | "waterCooler": null,
1267 | "cleanFood": false,
1268 | "blindPath": true,
1269 | "fireSuppressionSystem": true,
1270 | "fireExtinguisher": true,
1271 | "metroPolice": true,
1272 | "creditTicketSales": true,
1273 | "waitingChair": true,
1274 | "camera": true,
1275 | "trashCan": true,
1276 | "smoking": false,
1277 | "petsAllowed": false,
1278 | "freeWifi": false,
1279 | "prayerRoom": true,
1280 | "relations": ["Fadak","Shahid Madani"]
1281 | },
1282 | "Shahid Madani": {
1283 | "name": "Shahid Madani",
1284 | "translations": {"fa": "شهید مدنی"},
1285 | "lines": [2],
1286 | "longitude": "51.453459",
1287 | "latitude": "35.70913",
1288 | "address": "خیابان شهید مدنی، بالاتر از بیمارستان امام حسین (ع)",
1289 | "colors": ["#2F4389"],
1290 | "disabled": false,
1291 | "wc": false,
1292 | "coffeeShop": false,
1293 | "groceryStore": false,
1294 | "fastFood": false,
1295 | "atm": false,
1296 | "elevator": true,
1297 | "bicycleParking": true,
1298 | "waterCooler": null,
1299 | "cleanFood": false,
1300 | "blindPath": true,
1301 | "fireSuppressionSystem": true,
1302 | "fireExtinguisher": true,
1303 | "metroPolice": true,
1304 | "creditTicketSales": true,
1305 | "waitingChair": true,
1306 | "camera": true,
1307 | "trashCan": true,
1308 | "smoking": false,
1309 | "petsAllowed": false,
1310 | "freeWifi": false,
1311 | "prayerRoom": false,
1312 | "relations": ["Sabalan","Imam Hossein"]
1313 | },
1314 | "Imam Hossein": {
1315 | "name": "Imam Hossein",
1316 | "translations": {"fa": "امام حسین"},
1317 | "lines": [2,6],
1318 | "longitude": "51.445702",
1319 | "latitude": "35.702188",
1320 | "address": "میدان امام حسین (ع) - تقاطع خیابان انقلاب اسلامی و شهید مدنی",
1321 | "colors": ["#2F4389","#EF639F"],
1322 | "disabled": false,
1323 | "wc": false,
1324 | "coffeeShop": false,
1325 | "groceryStore": false,
1326 | "fastFood": true,
1327 | "atm": false,
1328 | "elevator": true,
1329 | "bicycleParking": false,
1330 | "waterCooler": null,
1331 | "cleanFood": true,
1332 | "blindPath": true,
1333 | "fireSuppressionSystem": true,
1334 | "fireExtinguisher": true,
1335 | "metroPolice": true,
1336 | "creditTicketSales": true,
1337 | "waitingChair": true,
1338 | "camera": true,
1339 | "trashCan": true,
1340 | "smoking": false,
1341 | "petsAllowed": false,
1342 | "freeWifi": false,
1343 | "prayerRoom": false,
1344 | "relations": ["Shahid Madani","Sarbaz","Meydan-e Shohada","Darvazeh Shemiran"]
1345 | },
1346 | "Darvazeh Shemiran": {
1347 | "name": "Darvazeh Shemiran",
1348 | "translations": {"fa": "دروازه شمیران"},
1349 | "lines": [2,4],
1350 | "longitude": "51.437709",
1351 | "latitude": "35.699338",
1352 | "address": "خیابان بهارستان، میدان ابن سینا",
1353 | "colors": ["#2F4389","#F8E100"],
1354 | "disabled": false,
1355 | "wc": false,
1356 | "coffeeShop": false,
1357 | "groceryStore": false,
1358 | "fastFood": false,
1359 | "atm": true,
1360 | "elevator": false,
1361 | "bicycleParking": false,
1362 | "waterCooler": null,
1363 | "cleanFood": false,
1364 | "blindPath": true,
1365 | "fireSuppressionSystem": true,
1366 | "fireExtinguisher": true,
1367 | "metroPolice": true,
1368 | "creditTicketSales": true,
1369 | "waitingChair": true,
1370 | "camera": true,
1371 | "trashCan": true,
1372 | "smoking": false,
1373 | "petsAllowed": false,
1374 | "freeWifi": false,
1375 | "prayerRoom": false,
1376 | "relations": ["Imam Hossein","Meydan-e Shohada","Darvazeh Dolat","Baharistan"]
1377 | },
1378 | "Baharistan": {
1379 | "name": "Baharistan",
1380 | "translations": {"fa": "بهارستان"},
1381 | "lines": [2],
1382 | "longitude": "51.432946",
1383 | "latitude": "35.692263",
1384 | "address": "خیابان بهارستان، جنب ساختمان وزارت فرهنگ و ارشاد اسلامی",
1385 | "colors": ["#2F4389"],
1386 | "disabled": false,
1387 | "wc": false,
1388 | "coffeeShop": false,
1389 | "groceryStore": false,
1390 | "fastFood": true,
1391 | "atm": false,
1392 | "elevator": false,
1393 | "bicycleParking": false,
1394 | "waterCooler": null,
1395 | "cleanFood": true,
1396 | "blindPath": true,
1397 | "fireSuppressionSystem": true,
1398 | "fireExtinguisher": true,
1399 | "metroPolice": true,
1400 | "creditTicketSales": true,
1401 | "waitingChair": true,
1402 | "camera": true,
1403 | "trashCan": true,
1404 | "smoking": false,
1405 | "petsAllowed": false,
1406 | "freeWifi": false,
1407 | "prayerRoom": false,
1408 | "relations": ["Darvazeh Shemiran","Mellat"]
1409 | },
1410 | "Mellat": {
1411 | "name": "Mellat",
1412 | "translations": {"fa": "ملت"},
1413 | "lines": [2],
1414 | "longitude": "51.4277635",
1415 | "latitude": "35.6889986",
1416 | "address": "خیابان اکباتان، سه راهی ملت - اکباتان",
1417 | "colors": ["#2F4389"],
1418 | "disabled": false,
1419 | "wc": false,
1420 | "coffeeShop": false,
1421 | "groceryStore": false,
1422 | "fastFood": false,
1423 | "atm": false,
1424 | "elevator": false,
1425 | "bicycleParking": false,
1426 | "waterCooler": null,
1427 | "cleanFood": false,
1428 | "blindPath": true,
1429 | "fireSuppressionSystem": true,
1430 | "fireExtinguisher": true,
1431 | "metroPolice": true,
1432 | "creditTicketSales": true,
1433 | "waitingChair": true,
1434 | "camera": true,
1435 | "trashCan": true,
1436 | "smoking": false,
1437 | "petsAllowed": false,
1438 | "freeWifi": false,
1439 | "prayerRoom": false,
1440 | "relations": ["Baharistan","Imam Khomeini"]
1441 | },
1442 | "Hasan Abad": {
1443 | "name": "Hasan Abad",
1444 | "translations": {"fa": "حسن آباد"},
1445 | "lines": [2],
1446 | "longitude": "51.4088914",
1447 | "latitude": "35.6863779",
1448 | "address": "میدان حسن آباد",
1449 | "colors": ["#2F4389"],
1450 | "disabled": false,
1451 | "wc": false,
1452 | "coffeeShop": false,
1453 | "groceryStore": false,
1454 | "fastFood": true,
1455 | "atm": false,
1456 | "elevator": false,
1457 | "bicycleParking": false,
1458 | "waterCooler": null,
1459 | "cleanFood": true,
1460 | "blindPath": true,
1461 | "fireSuppressionSystem": true,
1462 | "fireExtinguisher": true,
1463 | "metroPolice": true,
1464 | "creditTicketSales": true,
1465 | "waitingChair": true,
1466 | "camera": true,
1467 | "trashCan": true,
1468 | "smoking": false,
1469 | "petsAllowed": false,
1470 | "freeWifi": false,
1471 | "prayerRoom": false,
1472 | "relations": ["Imam Khomeini","Daneshgah-e Imam Ali"]
1473 | },
1474 | "Daneshgah-e Imam Ali": {
1475 | "name": "Daneshgah-e Imam Ali",
1476 | "translations": {"fa": "دانشگاه امام علی"},
1477 | "lines": [2],
1478 | "longitude": "51.3990645",
1479 | "latitude": "35.6874007",
1480 | "address": "خیابان امام خمینی (ره)، روبروی مجلس",
1481 | "colors": ["#2F4389"],
1482 | "disabled": false,
1483 | "wc": false,
1484 | "coffeeShop": false,
1485 | "groceryStore": false,
1486 | "fastFood": false,
1487 | "atm": false,
1488 | "elevator": false,
1489 | "bicycleParking": true,
1490 | "waterCooler": null,
1491 | "cleanFood": false,
1492 | "blindPath": true,
1493 | "fireSuppressionSystem": true,
1494 | "fireExtinguisher": true,
1495 | "metroPolice": true,
1496 | "creditTicketSales": true,
1497 | "waitingChair": true,
1498 | "camera": true,
1499 | "trashCan": true,
1500 | "smoking": false,
1501 | "petsAllowed": false,
1502 | "freeWifi": false,
1503 | "prayerRoom": false,
1504 | "relations": ["Hasan Abad","Meydan-e Horr"]
1505 | },
1506 | "Meydan-e Horr": {
1507 | "name": "Meydan-e Horr",
1508 | "translations": {"fa": "میدان حر"},
1509 | "lines": [2],
1510 | "longitude": "51.3884",
1511 | "latitude": "35.691008",
1512 | "address": "خیابان کارگر جنوبی، تقاطع پاستور و دانشگاه جنگ",
1513 | "colors": ["#2F4389"],
1514 | "disabled": false,
1515 | "wc": false,
1516 | "coffeeShop": false,
1517 | "groceryStore": false,
1518 | "fastFood": false,
1519 | "atm": false,
1520 | "elevator": true,
1521 | "bicycleParking": true,
1522 | "waterCooler": null,
1523 | "cleanFood": false,
1524 | "blindPath": true,
1525 | "fireSuppressionSystem": true,
1526 | "fireExtinguisher": true,
1527 | "metroPolice": true,
1528 | "creditTicketSales": true,
1529 | "waitingChair": true,
1530 | "camera": true,
1531 | "trashCan": true,
1532 | "smoking": false,
1533 | "petsAllowed": false,
1534 | "freeWifi": false,
1535 | "prayerRoom": false,
1536 | "relations": ["Daneshgah-e Imam Ali","Shahid Navab-e Safavi"]
1537 | },
1538 | "Shahid Navab-e Safavi": {
1539 | "name": "Shahid Navab-e Safavi",
1540 | "translations": {"fa": "شهید نواب صفوی"},
1541 | "lines": [2,7],
1542 | "longitude": "51.378229",
1543 | "latitude": "35.69526",
1544 | "address": "تقاطع بزرگراه شهید نواب صفوی و خیابان آذربایجان",
1545 | "colors": ["#2F4389","#7F0B74"],
1546 | "disabled": false,
1547 | "wc": false,
1548 | "coffeeShop": false,
1549 | "groceryStore": false,
1550 | "fastFood": true,
1551 | "atm": false,
1552 | "elevator": true,
1553 | "bicycleParking": true,
1554 | "waterCooler": null,
1555 | "cleanFood": true,
1556 | "blindPath": true,
1557 | "fireSuppressionSystem": true,
1558 | "fireExtinguisher": true,
1559 | "metroPolice": true,
1560 | "creditTicketSales": true,
1561 | "waitingChair": true,
1562 | "camera": true,
1563 | "trashCan": true,
1564 | "smoking": false,
1565 | "petsAllowed": false,
1566 | "freeWifi": false,
1567 | "prayerRoom": false,
1568 | "relations": ["Meydan-e Horr","Towhid","Roudaki","Shademan"]
1569 | },
1570 | "Shademan": {
1571 | "name": "Shademan",
1572 | "translations": {"fa": "شادمان"},
1573 | "lines": [2,4],
1574 | "longitude": "51.363809",
1575 | "latitude": "35.700627",
1576 | "address": "تقاطع خیابان های آزادی و آذربایجان",
1577 | "colors": ["#2F4389","#F8E100"],
1578 | "disabled": false,
1579 | "wc": false,
1580 | "coffeeShop": false,
1581 | "groceryStore": false,
1582 | "fastFood": true,
1583 | "atm": false,
1584 | "elevator": true,
1585 | "bicycleParking": true,
1586 | "waterCooler": null,
1587 | "cleanFood": true,
1588 | "blindPath": true,
1589 | "fireSuppressionSystem": true,
1590 | "fireExtinguisher": true,
1591 | "metroPolice": true,
1592 | "creditTicketSales": true,
1593 | "waitingChair": true,
1594 | "camera": true,
1595 | "trashCan": true,
1596 | "smoking": false,
1597 | "petsAllowed": false,
1598 | "freeWifi": false,
1599 | "prayerRoom": false,
1600 | "relations": ["Shahid Navab-e Safavi","Towhid","Doctor Habibollah","Daneshgah-e Sharif"]
1601 | },
1602 | "Daneshgah-e Sharif": {
1603 | "name": "Daneshgah-e Sharif",
1604 | "translations": {"fa": "دانشگاه شریف"},
1605 | "lines": [2],
1606 | "longitude": "51.353638",
1607 | "latitude": "35.70575",
1608 | "address": "خیابان حبیب الهی - شهید تیموری",
1609 | "colors": ["#2F4389"],
1610 | "disabled": false,
1611 | "wc": false,
1612 | "coffeeShop": false,
1613 | "groceryStore": false,
1614 | "fastFood": false,
1615 | "atm": false,
1616 | "elevator": true,
1617 | "bicycleParking": true,
1618 | "waterCooler": null,
1619 | "cleanFood": false,
1620 | "blindPath": true,
1621 | "fireSuppressionSystem": true,
1622 | "fireExtinguisher": true,
1623 | "metroPolice": true,
1624 | "creditTicketSales": true,
1625 | "waitingChair": true,
1626 | "camera": true,
1627 | "trashCan": true,
1628 | "smoking": false,
1629 | "petsAllowed": false,
1630 | "freeWifi": false,
1631 | "prayerRoom": false,
1632 | "relations": ["Shademan","Tarasht"]
1633 | },
1634 | "Tarasht": {
1635 | "name": "Tarasht",
1636 | "translations": {"fa": "طرشت"},
1637 | "lines": [2],
1638 | "longitude": "51.34351",
1639 | "latitude": "35.716134",
1640 | "address": "خیابان محمدعلی جناح، بلوار شهید گلاب، بلوار شهید چوب تراش",
1641 | "colors": ["#2F4389"],
1642 | "disabled": false,
1643 | "wc": false,
1644 | "coffeeShop": false,
1645 | "groceryStore": false,
1646 | "fastFood": false,
1647 | "atm": false,
1648 | "elevator": false,
1649 | "bicycleParking": false,
1650 | "waterCooler": null,
1651 | "cleanFood": false,
1652 | "blindPath": true,
1653 | "fireSuppressionSystem": true,
1654 | "fireExtinguisher": true,
1655 | "metroPolice": true,
1656 | "creditTicketSales": true,
1657 | "waitingChair": true,
1658 | "camera": true,
1659 | "trashCan": true,
1660 | "smoking": false,
1661 | "petsAllowed": false,
1662 | "freeWifi": false,
1663 | "prayerRoom": false,
1664 | "relations": ["Daneshgah-e Sharif","Tehran (Sadeghiyeh)"]
1665 | },
1666 | "Tehran (Sadeghiyeh)": {
1667 | "name": "Tehran (Sadeghiyeh)",
1668 | "translations": {"fa": "تهران (صادقیه)"},
1669 | "lines": [2,5],
1670 | "longitude": "51.330979",
1671 | "latitude": "35.717598",
1672 | "address": "بزرگراه محمد علی جناح، خیابان سازمان آب",
1673 | "colors": ["#2F4389","#007E46"],
1674 | "disabled": false,
1675 | "wc": true,
1676 | "coffeeShop": false,
1677 | "groceryStore": true,
1678 | "fastFood": true,
1679 | "atm": false,
1680 | "elevator": true,
1681 | "bicycleParking": false,
1682 | "waterCooler": true,
1683 | "cleanFood": true,
1684 | "blindPath": true,
1685 | "fireSuppressionSystem": true,
1686 | "fireExtinguisher": true,
1687 | "metroPolice": true,
1688 | "creditTicketSales": true,
1689 | "waitingChair": true,
1690 | "camera": true,
1691 | "trashCan": true,
1692 | "smoking": false,
1693 | "petsAllowed": false,
1694 | "freeWifi": false,
1695 | "prayerRoom": true,
1696 | "relations": ["Tarasht","Eram-e Sabz"]
1697 | },
1698 | "Qa'em": {
1699 | "name": "Qa'em",
1700 | "translations": {"fa": "قائم"},
1701 | "lines": [3],
1702 | "longitude": "51.521684",
1703 | "latitude": "35.799759",
1704 | "address": "بلوار نیروی هوایی، میدان اول شهرک",
1705 | "colors": ["#67C5F5"],
1706 | "disabled": false,
1707 | "wc": false,
1708 | "coffeeShop": false,
1709 | "groceryStore": false,
1710 | "fastFood": false,
1711 | "atm": false,
1712 | "elevator": false,
1713 | "bicycleParking": false,
1714 | "waterCooler": null,
1715 | "cleanFood": false,
1716 | "blindPath": true,
1717 | "fireSuppressionSystem": true,
1718 | "fireExtinguisher": true,
1719 | "metroPolice": true,
1720 | "creditTicketSales": true,
1721 | "waitingChair": true,
1722 | "camera": true,
1723 | "trashCan": true,
1724 | "smoking": false,
1725 | "petsAllowed": false,
1726 | "freeWifi": false,
1727 | "prayerRoom": false,
1728 | "relations": ["Shahid Mahallati"]
1729 | },
1730 | "Shahid Mahallati": {
1731 | "name": "Shahid Mahallati",
1732 | "translations": {"fa": "شهید محلاتی"},
1733 | "lines": [3],
1734 | "longitude": "51.508169",
1735 | "latitude": "35.797925",
1736 | "address": "بزرگراه لشگرک - تقاطع بلوار ارتش - ابتدای شهرک شهید محلاتی",
1737 | "colors": ["#67C5F5"],
1738 | "disabled": false,
1739 | "wc": false,
1740 | "coffeeShop": false,
1741 | "groceryStore": false,
1742 | "fastFood": false,
1743 | "atm": false,
1744 | "elevator": false,
1745 | "bicycleParking": true,
1746 | "waterCooler": null,
1747 | "cleanFood": false,
1748 | "blindPath": true,
1749 | "fireSuppressionSystem": true,
1750 | "fireExtinguisher": true,
1751 | "metroPolice": true,
1752 | "creditTicketSales": true,
1753 | "waitingChair": true,
1754 | "camera": true,
1755 | "trashCan": true,
1756 | "smoking": false,
1757 | "petsAllowed": false,
1758 | "freeWifi": false,
1759 | "prayerRoom": false,
1760 | "relations": ["Qa'em","Aghdasiyeh"]
1761 | },
1762 | "Aghdasiyeh": {
1763 | "name": "Aghdasiyeh",
1764 | "translations": {"fa": "اقدسیه"},
1765 | "lines": [3],
1766 | "longitude": "51.493566",
1767 | "latitude": "35.795958",
1768 | "address": "تقاطع خیابان پاسداران و بزرگراه ارتش، اقدسیه",
1769 | "colors": ["#67C5F5"],
1770 | "disabled": false,
1771 | "wc": false,
1772 | "coffeeShop": false,
1773 | "groceryStore": false,
1774 | "fastFood": false,
1775 | "atm": false,
1776 | "elevator": false,
1777 | "bicycleParking": false,
1778 | "waterCooler": null,
1779 | "cleanFood": false,
1780 | "blindPath": true,
1781 | "fireSuppressionSystem": true,
1782 | "fireExtinguisher": true,
1783 | "metroPolice": true,
1784 | "creditTicketSales": true,
1785 | "waitingChair": true,
1786 | "camera": true,
1787 | "trashCan": true,
1788 | "smoking": false,
1789 | "petsAllowed": false,
1790 | "freeWifi": false,
1791 | "prayerRoom": false,
1792 | "relations": ["Shahid Mahallati","Nobonyad"]
1793 | },
1794 | "Nobonyad": {
1795 | "name": "Nobonyad",
1796 | "translations": {"fa": "نوبنیاد"},
1797 | "lines": [3],
1798 | "longitude": "51.478029",
1799 | "latitude": "35.790987",
1800 | "address": "نوبنیاد، ابتدای اقدسیه",
1801 | "colors": ["#67C5F5"],
1802 | "disabled": false,
1803 | "wc": false,
1804 | "coffeeShop": false,
1805 | "groceryStore": false,
1806 | "fastFood": false,
1807 | "atm": false,
1808 | "elevator": false,
1809 | "bicycleParking": false,
1810 | "waterCooler": null,
1811 | "cleanFood": false,
1812 | "blindPath": true,
1813 | "fireSuppressionSystem": true,
1814 | "fireExtinguisher": true,
1815 | "metroPolice": true,
1816 | "creditTicketSales": true,
1817 | "waitingChair": true,
1818 | "camera": true,
1819 | "trashCan": true,
1820 | "smoking": false,
1821 | "petsAllowed": false,
1822 | "freeWifi": false,
1823 | "prayerRoom": false,
1824 | "relations": ["Aghdasiyeh","Hossein Abad"]
1825 | },
1826 | "Hossein Abad": {
1827 | "name": "Hossein Abad",
1828 | "translations": {"fa": "حسینآباد"},
1829 | "lines": [3],
1830 | "longitude": "51.47852",
1831 | "latitude": "35.779428",
1832 | "address": "تقاطع خیابان مغان و بزرگراه شهید صیاد شیرازی",
1833 | "colors": ["#67C5F5"],
1834 | "disabled": false,
1835 | "wc": false,
1836 | "coffeeShop": false,
1837 | "groceryStore": false,
1838 | "fastFood": true,
1839 | "atm": false,
1840 | "elevator": false,
1841 | "bicycleParking": false,
1842 | "waterCooler": null,
1843 | "cleanFood": true,
1844 | "blindPath": true,
1845 | "fireSuppressionSystem": true,
1846 | "fireExtinguisher": true,
1847 | "metroPolice": true,
1848 | "creditTicketSales": true,
1849 | "waitingChair": true,
1850 | "camera": true,
1851 | "trashCan": true,
1852 | "smoking": false,
1853 | "petsAllowed": false,
1854 | "freeWifi": false,
1855 | "prayerRoom": false,
1856 | "relations": ["Nobonyad","Meydan-e Heravi"]
1857 | },
1858 | "Meydan-e Heravi": {
1859 | "name": "Meydan-e Heravi",
1860 | "translations": {"fa": "میدان هروی"},
1861 | "lines": [3],
1862 | "longitude": "51.473219",
1863 | "latitude": "35.771831",
1864 | "address": "اتوبان صیاد شیرازی٬ بالاتر از خیابان موسوی",
1865 | "colors": ["#67C5F5"],
1866 | "disabled": false,
1867 | "wc": false,
1868 | "coffeeShop": false,
1869 | "groceryStore": false,
1870 | "fastFood": false,
1871 | "atm": false,
1872 | "elevator": false,
1873 | "bicycleParking": false,
1874 | "waterCooler": null,
1875 | "cleanFood": false,
1876 | "blindPath": true,
1877 | "fireSuppressionSystem": true,
1878 | "fireExtinguisher": true,
1879 | "metroPolice": true,
1880 | "creditTicketSales": true,
1881 | "waitingChair": true,
1882 | "camera": true,
1883 | "trashCan": true,
1884 | "smoking": false,
1885 | "petsAllowed": false,
1886 | "freeWifi": false,
1887 | "prayerRoom": false,
1888 | "relations": ["Hossein Abad","Shahid Zeynoddin"]
1889 | },
1890 | "Shahid Zeynoddin": {
1891 | "name": "Shahid Zeynoddin",
1892 | "translations": {"fa": "شهید زینالدین"},
1893 | "lines": [3],
1894 | "longitude": "51.4659032",
1895 | "latitude": "35.7595603",
1896 | "address": "بزرگراه صیاد شیرازی، تقاطع بزرگراه شهید زینالدین",
1897 | "colors": ["#67C5F5"],
1898 | "disabled": false,
1899 | "wc": false,
1900 | "coffeeShop": false,
1901 | "groceryStore": false,
1902 | "fastFood": false,
1903 | "atm": false,
1904 | "elevator": false,
1905 | "bicycleParking": false,
1906 | "waterCooler": null,
1907 | "cleanFood": false,
1908 | "blindPath": true,
1909 | "fireSuppressionSystem": true,
1910 | "fireExtinguisher": true,
1911 | "metroPolice": true,
1912 | "creditTicketSales": true,
1913 | "waitingChair": true,
1914 | "camera": true,
1915 | "trashCan": true,
1916 | "smoking": false,
1917 | "petsAllowed": false,
1918 | "freeWifi": false,
1919 | "prayerRoom": false,
1920 | "relations": ["Meydan-e Heravi","Khajeh Abdollah-e Ansari"]
1921 | },
1922 | "Khajeh Abdollah-e Ansari": {
1923 | "name": "Khajeh Abdollah-e Ansari",
1924 | "translations": {"fa": "خواجه عبدالله انصاری"},
1925 | "lines": [3],
1926 | "longitude": "51.462922",
1927 | "latitude": "35.743739",
1928 | "address": "بلوار خواجه عبدالله انصاری",
1929 | "colors": ["#67C5F5"],
1930 | "disabled": false,
1931 | "wc": false,
1932 | "coffeeShop": false,
1933 | "groceryStore": false,
1934 | "fastFood": false,
1935 | "atm": false,
1936 | "elevator": false,
1937 | "bicycleParking": true,
1938 | "waterCooler": null,
1939 | "cleanFood": false,
1940 | "blindPath": true,
1941 | "fireSuppressionSystem": true,
1942 | "fireExtinguisher": true,
1943 | "metroPolice": true,
1944 | "creditTicketSales": true,
1945 | "waitingChair": true,
1946 | "camera": true,
1947 | "trashCan": true,
1948 | "smoking": false,
1949 | "petsAllowed": false,
1950 | "freeWifi": false,
1951 | "prayerRoom": false,
1952 | "relations": ["Shahid Zeynoddin","Shahid Sayyad Shirazi"]
1953 | },
1954 | "Shahid Sayyad Shirazi": {
1955 | "name": "Shahid Sayyad Shirazi",
1956 | "translations": {"fa": "شهید صیاد شیرازی"},
1957 | "lines": [3],
1958 | "longitude": "51.458594",
1959 | "latitude": "35.735349",
1960 | "address": "تفاطع بزگراه صیاد شیرازی و مسیل باختر",
1961 | "colors": ["#67C5F5"],
1962 | "disabled": false,
1963 | "wc": false,
1964 | "coffeeShop": false,
1965 | "groceryStore": false,
1966 | "fastFood": false,
1967 | "atm": false,
1968 | "elevator": false,
1969 | "bicycleParking": false,
1970 | "waterCooler": null,
1971 | "cleanFood": false,
1972 | "blindPath": true,
1973 | "fireSuppressionSystem": true,
1974 | "fireExtinguisher": true,
1975 | "metroPolice": true,
1976 | "creditTicketSales": true,
1977 | "waitingChair": true,
1978 | "camera": true,
1979 | "trashCan": true,
1980 | "smoking": false,
1981 | "petsAllowed": false,
1982 | "freeWifi": false,
1983 | "prayerRoom": false,
1984 | "relations": ["Khajeh Abdollah-e Ansari","Shahid Ghodousi"]
1985 | },
1986 | "Shahid Ghodousi": {
1987 | "name": "Shahid Ghodousi",
1988 | "translations": {"fa": "شهید قدوسی"},
1989 | "lines": [3],
1990 | "longitude": "51.4445",
1991 | "latitude": "35.731553",
1992 | "address": "خیابان شریعتی - تقاطع خیابان شهید بهشتی",
1993 | "colors": ["#67C5F5"],
1994 | "disabled": false,
1995 | "wc": false,
1996 | "coffeeShop": false,
1997 | "groceryStore": false,
1998 | "fastFood": false,
1999 | "atm": false,
2000 | "elevator": false,
2001 | "bicycleParking": false,
2002 | "waterCooler": null,
2003 | "cleanFood": false,
2004 | "blindPath": true,
2005 | "fireSuppressionSystem": true,
2006 | "fireExtinguisher": true,
2007 | "metroPolice": true,
2008 | "creditTicketSales": true,
2009 | "waitingChair": true,
2010 | "camera": true,
2011 | "trashCan": true,
2012 | "smoking": false,
2013 | "petsAllowed": false,
2014 | "freeWifi": false,
2015 | "prayerRoom": false,
2016 | "relations": ["Shahid Sayyad Shirazi","Sohrevardi"]
2017 | },
2018 | "Sohrevardi": {
2019 | "name": "Sohrevardi",
2020 | "translations": {"fa": "سهروردی"},
2021 | "lines": [3],
2022 | "longitude": "51.435852",
2023 | "latitude": "35.731066",
2024 | "address": "خیابان عباس آباد، روبروی بلوار یوسفی",
2025 | "colors": ["#67C5F5"],
2026 | "disabled": false,
2027 | "wc": false,
2028 | "coffeeShop": false,
2029 | "groceryStore": false,
2030 | "fastFood": true,
2031 | "atm": false,
2032 | "elevator": false,
2033 | "bicycleParking": true,
2034 | "waterCooler": null,
2035 | "cleanFood": true,
2036 | "blindPath": true,
2037 | "fireSuppressionSystem": true,
2038 | "fireExtinguisher": true,
2039 | "metroPolice": true,
2040 | "creditTicketSales": true,
2041 | "waitingChair": true,
2042 | "camera": true,
2043 | "trashCan": true,
2044 | "smoking": false,
2045 | "petsAllowed": false,
2046 | "freeWifi": false,
2047 | "prayerRoom": false,
2048 | "relations": ["Shahid Ghodousi","Shahid Beheshti"]
2049 | },
2050 | "Mirza-ye Shirazi": {
2051 | "name": "Mirza-ye Shirazi",
2052 | "translations": {"fa": "میرزا شیرازی"},
2053 | "lines": [3],
2054 | "longitude": "51.417448",
2055 | "latitude": "35.728365",
2056 | "address": "خیابان بهشتی، مابین میرزای شیرازی و قائم مقام فرهانی",
2057 | "colors": ["#67C5F5"],
2058 | "disabled": false,
2059 | "wc": false,
2060 | "coffeeShop": false,
2061 | "groceryStore": false,
2062 | "fastFood": true,
2063 | "atm": false,
2064 | "elevator": false,
2065 | "bicycleParking": false,
2066 | "waterCooler": null,
2067 | "cleanFood": true,
2068 | "blindPath": true,
2069 | "fireSuppressionSystem": true,
2070 | "fireExtinguisher": true,
2071 | "metroPolice": true,
2072 | "creditTicketSales": true,
2073 | "waitingChair": true,
2074 | "camera": true,
2075 | "trashCan": true,
2076 | "smoking": false,
2077 | "petsAllowed": false,
2078 | "freeWifi": false,
2079 | "prayerRoom": false,
2080 | "relations": ["Shahid Beheshti","Meydan-e Jahad"]
2081 | },
2082 | "Meydan-e Jahad": {
2083 | "name": "Meydan-e Jahad",
2084 | "translations": {"fa": "میدان جهاد"},
2085 | "lines": [3],
2086 | "longitude": "51.408803",
2087 | "latitude": "35.721672",
2088 | "address": "خیابان ولیعصر، تقاطع خیابان دکتر فاطمی",
2089 | "colors": ["#67C5F5"],
2090 | "disabled": false,
2091 | "wc": false,
2092 | "coffeeShop": false,
2093 | "groceryStore": false,
2094 | "fastFood": true,
2095 | "atm": false,
2096 | "elevator": false,
2097 | "bicycleParking": false,
2098 | "waterCooler": null,
2099 | "cleanFood": true,
2100 | "blindPath": true,
2101 | "fireSuppressionSystem": true,
2102 | "fireExtinguisher": true,
2103 | "metroPolice": true,
2104 | "creditTicketSales": true,
2105 | "waitingChair": true,
2106 | "camera": true,
2107 | "trashCan": true,
2108 | "smoking": false,
2109 | "petsAllowed": false,
2110 | "freeWifi": false,
2111 | "prayerRoom": false,
2112 | "relations": ["Mirza-ye Shirazi","Meydan-e Hazrat Vali Asr"]
2113 | },
2114 | "Teatr-e Shahr": {
2115 | "name": "Teatr-e Shahr",
2116 | "translations": {"fa": "تئاتر شهر"},
2117 | "lines": [3,4],
2118 | "longitude": "51.405831",
2119 | "latitude": "35.700954",
2120 | "address": "خیابان انقلاب اسلامی، چهارراه ولیعصر(عج)",
2121 | "colors": ["#67C5F5","#F8E100"],
2122 | "disabled": false,
2123 | "wc": false,
2124 | "coffeeShop": true,
2125 | "groceryStore": true,
2126 | "fastFood": true,
2127 | "atm": true,
2128 | "elevator": false,
2129 | "bicycleParking": true,
2130 | "waterCooler": null,
2131 | "cleanFood": true,
2132 | "blindPath": true,
2133 | "fireSuppressionSystem": true,
2134 | "fireExtinguisher": true,
2135 | "metroPolice": true,
2136 | "creditTicketSales": true,
2137 | "waitingChair": true,
2138 | "camera": true,
2139 | "trashCan": true,
2140 | "smoking": false,
2141 | "petsAllowed": false,
2142 | "freeWifi": false,
2143 | "prayerRoom": true,
2144 | "relations": ["Meydan-e Hazrat Vali Asr","Ferdowsi","Meydan-e Enghelab-e Eslami","Moniriyeh"]
2145 | },
2146 | "Moniriyeh": {
2147 | "name": "Moniriyeh",
2148 | "translations": {"fa": "منیریه"},
2149 | "lines": [3],
2150 | "longitude": "51.401594",
2151 | "latitude": "35.681087",
2152 | "address": "خیابان ولیعصر(عج) میدان منیریه",
2153 | "colors": ["#67C5F5"],
2154 | "disabled": false,
2155 | "wc": false,
2156 | "coffeeShop": false,
2157 | "groceryStore": false,
2158 | "fastFood": false,
2159 | "atm": false,
2160 | "elevator": false,
2161 | "bicycleParking": false,
2162 | "waterCooler": null,
2163 | "cleanFood": false,
2164 | "blindPath": true,
2165 | "fireSuppressionSystem": true,
2166 | "fireExtinguisher": true,
2167 | "metroPolice": true,
2168 | "creditTicketSales": true,
2169 | "waitingChair": true,
2170 | "camera": true,
2171 | "trashCan": true,
2172 | "smoking": false,
2173 | "petsAllowed": false,
2174 | "freeWifi": false,
2175 | "prayerRoom": false,
2176 | "relations": ["Teatr-e Shahr","Mahdiyeh"]
2177 | },
2178 | "Mahdiyeh": {
2179 | "name": "Mahdiyeh",
2180 | "translations": {"fa": "مهدیه"},
2181 | "lines": [3,7],
2182 | "longitude": "51.405474",
2183 | "latitude": "35.671463",
2184 | "address": "تقاطع خیابان مولوی و خیابان ولیعصر، مهدیه تهران",
2185 | "colors": ["#67C5F5","#7F0B74"],
2186 | "disabled": false,
2187 | "wc": true,
2188 | "coffeeShop": false,
2189 | "groceryStore": false,
2190 | "fastFood": false,
2191 | "atm": true,
2192 | "elevator": false,
2193 | "bicycleParking": false,
2194 | "waterCooler": null,
2195 | "cleanFood": false,
2196 | "blindPath": true,
2197 | "fireSuppressionSystem": true,
2198 | "fireExtinguisher": true,
2199 | "metroPolice": true,
2200 | "creditTicketSales": true,
2201 | "waitingChair": true,
2202 | "camera": true,
2203 | "trashCan": true,
2204 | "smoking": false,
2205 | "petsAllowed": false,
2206 | "freeWifi": false,
2207 | "prayerRoom": false,
2208 | "relations": ["Moniriyeh","Meydan-e Mohammadiyeh","Helal Ahmar","Rahahan"]
2209 | },
2210 | "Rahahan": {
2211 | "name": "Rahahan",
2212 | "translations": {"fa": "راه آهن"},
2213 | "lines": [3],
2214 | "longitude": "51.3984659",
2215 | "latitude": "35.6595573",
2216 | "address": "میدان راه آهن",
2217 | "colors": ["#67C5F5"],
2218 | "disabled": false,
2219 | "wc": false,
2220 | "coffeeShop": false,
2221 | "groceryStore": false,
2222 | "fastFood": false,
2223 | "atm": false,
2224 | "elevator": false,
2225 | "bicycleParking": false,
2226 | "waterCooler": null,
2227 | "cleanFood": false,
2228 | "blindPath": true,
2229 | "fireSuppressionSystem": true,
2230 | "fireExtinguisher": true,
2231 | "metroPolice": true,
2232 | "creditTicketSales": true,
2233 | "waitingChair": true,
2234 | "camera": true,
2235 | "trashCan": true,
2236 | "smoking": false,
2237 | "petsAllowed": false,
2238 | "freeWifi": false,
2239 | "prayerRoom": false,
2240 | "relations": ["Mahdiyeh","Javadiyeh"]
2241 | },
2242 | "Javadiyeh": {
2243 | "name": "Javadiyeh",
2244 | "translations": {"fa": "جوادیه"},
2245 | "lines": [3],
2246 | "longitude": "51.388215",
2247 | "latitude": "35.659075",
2248 | "address": "حد فاصل پل جوادیه و میدان رباط کریم",
2249 | "colors": ["#67C5F5"],
2250 | "disabled": false,
2251 | "wc": false,
2252 | "coffeeShop": false,
2253 | "groceryStore": false,
2254 | "fastFood": false,
2255 | "atm": false,
2256 | "elevator": false,
2257 | "bicycleParking": false,
2258 | "waterCooler": null,
2259 | "cleanFood": false,
2260 | "blindPath": true,
2261 | "fireSuppressionSystem": true,
2262 | "fireExtinguisher": true,
2263 | "metroPolice": true,
2264 | "creditTicketSales": true,
2265 | "waitingChair": true,
2266 | "camera": true,
2267 | "trashCan": true,
2268 | "smoking": false,
2269 | "petsAllowed": false,
2270 | "freeWifi": false,
2271 | "prayerRoom": false,
2272 | "relations": ["Rahahan","Zamzam"]
2273 | },
2274 | "Zamzam": {
2275 | "name": "Zamzam",
2276 | "translations": {"fa": "زمزم"},
2277 | "lines": [3],
2278 | "longitude": "51.3733202",
2279 | "latitude": "35.6525844",
2280 | "address": "بزرگراه شهید چراغی",
2281 | "colors": ["#67C5F5"],
2282 | "disabled": false,
2283 | "wc": false,
2284 | "coffeeShop": false,
2285 | "groceryStore": false,
2286 | "fastFood": false,
2287 | "atm": false,
2288 | "elevator": false,
2289 | "bicycleParking": true,
2290 | "waterCooler": null,
2291 | "cleanFood": false,
2292 | "blindPath": true,
2293 | "fireSuppressionSystem": true,
2294 | "fireExtinguisher": true,
2295 | "metroPolice": true,
2296 | "creditTicketSales": true,
2297 | "waitingChair": true,
2298 | "camera": true,
2299 | "trashCan": true,
2300 | "smoking": false,
2301 | "petsAllowed": false,
2302 | "freeWifi": false,
2303 | "prayerRoom": false,
2304 | "relations": ["Javadiyeh","Shahrak-e Shariaty"]
2305 | },
2306 | "Shahrak-e Shariaty": {
2307 | "name": "Shahrak-e Shariaty",
2308 | "translations": {"fa": "شهرک شریعتی"},
2309 | "lines": [3],
2310 | "longitude": "51.3677387",
2311 | "latitude": "35.6435696",
2312 | "address": "بزرگراه شهید چراغی، جوانه",
2313 | "colors": ["#67C5F5"],
2314 | "disabled": false,
2315 | "wc": false,
2316 | "coffeeShop": false,
2317 | "groceryStore": false,
2318 | "fastFood": false,
2319 | "atm": false,
2320 | "elevator": false,
2321 | "bicycleParking": true,
2322 | "waterCooler": null,
2323 | "cleanFood": false,
2324 | "blindPath": true,
2325 | "fireSuppressionSystem": true,
2326 | "fireExtinguisher": true,
2327 | "metroPolice": true,
2328 | "creditTicketSales": true,
2329 | "waitingChair": true,
2330 | "camera": true,
2331 | "trashCan": true,
2332 | "smoking": false,
2333 | "petsAllowed": false,
2334 | "freeWifi": false,
2335 | "prayerRoom": false,
2336 | "relations": ["Zamzam","Abdol Abad"]
2337 | },
2338 | "Abdol Abad": {
2339 | "name": "Abdol Abad",
2340 | "translations": {"fa": "عبدل آباد"},
2341 | "lines": [3],
2342 | "longitude": "51.359773",
2343 | "latitude": "35.638159",
2344 | "address": "بزرگراه شهید چراغی،ابتدای خیابان ورزش",
2345 | "colors": ["#67C5F5"],
2346 | "disabled": false,
2347 | "wc": false,
2348 | "coffeeShop": false,
2349 | "groceryStore": false,
2350 | "fastFood": false,
2351 | "atm": false,
2352 | "elevator": false,
2353 | "bicycleParking": false,
2354 | "waterCooler": null,
2355 | "cleanFood": false,
2356 | "blindPath": true,
2357 | "fireSuppressionSystem": true,
2358 | "fireExtinguisher": true,
2359 | "metroPolice": true,
2360 | "creditTicketSales": true,
2361 | "waitingChair": true,
2362 | "camera": true,
2363 | "trashCan": true,
2364 | "smoking": false,
2365 | "petsAllowed": false,
2366 | "freeWifi": false,
2367 | "prayerRoom": false,
2368 | "relations": ["Shahrak-e Shariaty","Nemat Abad"]
2369 | },
2370 | "Nemat Abad": {
2371 | "name": "Nemat Abad",
2372 | "translations": {"fa": "نعمت آباد"},
2373 | "lines": [3],
2374 | "longitude": "51.34703",
2375 | "latitude": "35.63392",
2376 | "address": " بزرگراه سعیدی , روبروی خیابان سهیل",
2377 | "colors": ["#67C5F5"],
2378 | "disabled": false,
2379 | "wc": false,
2380 | "coffeeShop": false,
2381 | "groceryStore": false,
2382 | "fastFood": false,
2383 | "atm": false,
2384 | "elevator": false,
2385 | "bicycleParking": false,
2386 | "waterCooler": null,
2387 | "cleanFood": false,
2388 | "blindPath": true,
2389 | "fireSuppressionSystem": true,
2390 | "fireExtinguisher": true,
2391 | "metroPolice": true,
2392 | "creditTicketSales": true,
2393 | "waitingChair": true,
2394 | "camera": true,
2395 | "trashCan": true,
2396 | "smoking": false,
2397 | "petsAllowed": false,
2398 | "freeWifi": false,
2399 | "prayerRoom": false,
2400 | "relations": ["Abdol Abad","Azadegan"]
2401 | },
2402 | "Azadegan": {
2403 | "name": "Azadegan",
2404 | "translations": {"fa": "آزادگان"},
2405 | "lines": [3],
2406 | "longitude": "51.335533",
2407 | "latitude": "35.627216",
2408 | "address": "بزرگراه سعیدی، نرسیده به بزرگراه آزادگان ابتدای شهید حیدری",
2409 | "colors": ["#67C5F5"],
2410 | "disabled": false,
2411 | "wc": false,
2412 | "coffeeShop": false,
2413 | "groceryStore": false,
2414 | "fastFood": false,
2415 | "atm": false,
2416 | "elevator": false,
2417 | "bicycleParking": true,
2418 | "waterCooler": null,
2419 | "cleanFood": false,
2420 | "blindPath": true,
2421 | "fireSuppressionSystem": true,
2422 | "fireExtinguisher": true,
2423 | "metroPolice": true,
2424 | "creditTicketSales": true,
2425 | "waitingChair": true,
2426 | "camera": true,
2427 | "trashCan": true,
2428 | "smoking": false,
2429 | "petsAllowed": false,
2430 | "freeWifi": false,
2431 | "prayerRoom": false,
2432 | "relations": ["Nemat Abad"]
2433 | },
2434 |
2435 | "Shahid Kolahdooz": {
2436 | "name": "Shahid Kolahdooz",
2437 | "translations": {"fa": "شهید کلاهدوز"},
2438 | "lines": [4],
2439 | "longitude": "51.498563",
2440 | "latitude": "35.698954",
2441 | "address": "ابتدای بزرگراه شهید دوران،بالاتر از بانک سپه",
2442 | "colors": ["#F8E100"],
2443 | "disabled": false,
2444 | "wc": false,
2445 | "coffeeShop": false,
2446 | "groceryStore": false,
2447 | "fastFood": false,
2448 | "atm": false,
2449 | "elevator": true,
2450 | "bicycleParking": true,
2451 | "waterCooler": null,
2452 | "cleanFood": false,
2453 | "blindPath": true,
2454 | "fireSuppressionSystem": true,
2455 | "fireExtinguisher": true,
2456 | "metroPolice": true,
2457 | "creditTicketSales": true,
2458 | "waitingChair": true,
2459 | "camera": true,
2460 | "trashCan": true,
2461 | "smoking": false,
2462 | "petsAllowed": false,
2463 | "freeWifi": false,
2464 | "prayerRoom": null,
2465 | "relations": ["Nirou Havaei"]
2466 | },
2467 | "Nirou Havaei": {
2468 | "name": "Nirou Havaei",
2469 | "translations": {"fa": "نیروهوایی"},
2470 | "lines": [4],
2471 | "longitude": "51.4886226",
2472 | "latitude": "35.6926988",
2473 | "address": "خیابان پیروزی- بین خیابانهای چهارم و پنجم نیرو هوایی",
2474 | "colors": ["#F8E100"],
2475 | "disabled": false,
2476 | "wc": false,
2477 | "coffeeShop": false,
2478 | "groceryStore": false,
2479 | "fastFood": false,
2480 | "atm": false,
2481 | "elevator": false,
2482 | "bicycleParking": false,
2483 | "waterCooler": null,
2484 | "cleanFood": false,
2485 | "blindPath": true,
2486 | "fireSuppressionSystem": true,
2487 | "fireExtinguisher": true,
2488 | "metroPolice": true,
2489 | "creditTicketSales": true,
2490 | "waitingChair": true,
2491 | "camera": true,
2492 | "trashCan": true,
2493 | "smoking": false,
2494 | "petsAllowed": false,
2495 | "freeWifi": false,
2496 | "prayerRoom": null,
2497 | "relations": ["Shahid Kolahdooz","Nabard"]
2498 | },
2499 | "Nabard": {
2500 | "name": "Nabard",
2501 | "translations": {"fa": "نبرد"},
2502 | "lines": [4],
2503 | "longitude": "51.4777301",
2504 | "latitude": "35.6913253",
2505 | "address": "خیابان پیروزی , چهار راه کوکاکولا , جنب مجتمع تجاری کسا",
2506 | "colors": ["#F8E100"],
2507 | "disabled": false,
2508 | "wc": false,
2509 | "coffeeShop": false,
2510 | "groceryStore": true,
2511 | "fastFood": false,
2512 | "atm": true,
2513 | "elevator": false,
2514 | "bicycleParking": true,
2515 | "waterCooler": null,
2516 | "cleanFood": false,
2517 | "blindPath": true,
2518 | "fireSuppressionSystem": true,
2519 | "fireExtinguisher": true,
2520 | "metroPolice": true,
2521 | "creditTicketSales": true,
2522 | "waitingChair": true,
2523 | "camera": true,
2524 | "trashCan": true,
2525 | "smoking": false,
2526 | "petsAllowed": false,
2527 | "freeWifi": false,
2528 | "prayerRoom": null,
2529 | "relations": ["Nirou Havaei","Piroozi"]
2530 | },
2531 | "Piroozi": {
2532 | "name": "Piroozi",
2533 | "translations": {"fa": "پیروزی"},
2534 | "lines": [4],
2535 | "longitude": "51.46775",
2536 | "latitude": "35.691356",
2537 | "address": "خیابان پیروزی –قبل از خیابان شهید حسن پورمند",
2538 | "colors": ["#F8E100"],
2539 | "disabled": false,
2540 | "wc": false,
2541 | "coffeeShop": false,
2542 | "groceryStore": false,
2543 | "fastFood": false,
2544 | "atm": false,
2545 | "elevator": false,
2546 | "bicycleParking": true,
2547 | "waterCooler": null,
2548 | "cleanFood": false,
2549 | "blindPath": true,
2550 | "fireSuppressionSystem": true,
2551 | "fireExtinguisher": true,
2552 | "metroPolice": true,
2553 | "creditTicketSales": true,
2554 | "waitingChair": true,
2555 | "camera": true,
2556 | "trashCan": true,
2557 | "smoking": false,
2558 | "petsAllowed": false,
2559 | "freeWifi": false,
2560 | "prayerRoom": null,
2561 | "relations": ["Nabard","Ebn-e Sina"]
2562 | },
2563 | "Ebn-e Sina": {
2564 | "name": "Ebn-e Sina",
2565 | "translations": {"fa": "ابن سینا"},
2566 | "lines": [4],
2567 | "longitude": "51.4579435",
2568 | "latitude": "35.6907927",
2569 | "address": "خیابان پیروزی ,چهارصد دستگاه( تقاطع اتوبان امام علی (ع) و پیروزی)",
2570 | "colors": ["#F8E100"],
2571 | "disabled": false,
2572 | "wc": false,
2573 | "coffeeShop": false,
2574 | "groceryStore": false,
2575 | "fastFood": false,
2576 | "atm": false,
2577 | "elevator": false,
2578 | "bicycleParking": true,
2579 | "waterCooler": null,
2580 | "cleanFood": false,
2581 | "blindPath": true,
2582 | "fireSuppressionSystem": true,
2583 | "fireExtinguisher": true,
2584 | "metroPolice": true,
2585 | "creditTicketSales": true,
2586 | "waitingChair": true,
2587 | "camera": true,
2588 | "trashCan": true,
2589 | "smoking": false,
2590 | "petsAllowed": false,
2591 | "freeWifi": false,
2592 | "prayerRoom": null,
2593 | "relations": ["Piroozi","Meydan-e Shohada"]
2594 | },
2595 | "Ferdowsi": {
2596 | "name": "Ferdowsi",
2597 | "translations": {"fa": "فردوسی"},
2598 | "lines": [4],
2599 | "longitude": "51.418569",
2600 | "latitude": "35.701255",
2601 | "address": "میدان فردوسی",
2602 | "colors": ["#F8E100"],
2603 | "disabled": false,
2604 | "wc": false,
2605 | "coffeeShop": false,
2606 | "groceryStore": false,
2607 | "fastFood": false,
2608 | "atm": false,
2609 | "elevator": false,
2610 | "bicycleParking": true,
2611 | "waterCooler": null,
2612 | "cleanFood": false,
2613 | "blindPath": true,
2614 | "fireSuppressionSystem": true,
2615 | "fireExtinguisher": true,
2616 | "metroPolice": true,
2617 | "creditTicketSales": true,
2618 | "waitingChair": true,
2619 | "camera": true,
2620 | "trashCan": true,
2621 | "smoking": false,
2622 | "petsAllowed": false,
2623 | "freeWifi": false,
2624 | "prayerRoom": null,
2625 | "relations": ["Darvazeh Dolat","Teatr-e Shahr"]
2626 | },
2627 | "Meydan-e Enghelab-e Eslami": {
2628 | "name": "Meydan-e Enghelab-e Eslami",
2629 | "translations": {"fa": "میدان انقلاب اسلامی"},
2630 | "lines": [4],
2631 | "longitude": "51.392176",
2632 | "latitude": "35.701255",
2633 | "address": "میدان انقلاب اسلامی،ابتدای خیابان آزادی، کوچه شهید جنتی",
2634 | "colors": ["#F8E100"],
2635 | "disabled": false,
2636 | "wc": false,
2637 | "coffeeShop": true,
2638 | "groceryStore": false,
2639 | "fastFood": true,
2640 | "atm": true,
2641 | "elevator": false,
2642 | "bicycleParking": false,
2643 | "waterCooler": null,
2644 | "cleanFood": true,
2645 | "blindPath": true,
2646 | "fireSuppressionSystem": true,
2647 | "fireExtinguisher": true,
2648 | "metroPolice": true,
2649 | "creditTicketSales": true,
2650 | "waitingChair": true,
2651 | "camera": true,
2652 | "trashCan": true,
2653 | "smoking": false,
2654 | "petsAllowed": false,
2655 | "freeWifi": false,
2656 | "prayerRoom": null,
2657 | "relations": ["Teatr-e Shahr","Towhid"]
2658 | },
2659 | "Towhid": {
2660 | "name": "Towhid",
2661 | "translations": {"fa": "توحید"},
2662 | "lines": [4,7],
2663 | "longitude": "51.378572",
2664 | "latitude": "35.700767",
2665 | "address": "خیابان آزادی - شمال شرقی تقاطع خیابان آزادی و شهید نواب صفوی",
2666 | "colors": ["#F8E100","#7F0B74"],
2667 | "disabled": false,
2668 | "wc": false,
2669 | "coffeeShop": false,
2670 | "groceryStore": false,
2671 | "fastFood": false,
2672 | "atm": false,
2673 | "elevator": true,
2674 | "bicycleParking": true,
2675 | "waterCooler": null,
2676 | "cleanFood": false,
2677 | "blindPath": true,
2678 | "fireSuppressionSystem": true,
2679 | "fireExtinguisher": true,
2680 | "metroPolice": true,
2681 | "creditTicketSales": true,
2682 | "waitingChair": true,
2683 | "camera": true,
2684 | "trashCan": true,
2685 | "smoking": false,
2686 | "petsAllowed": false,
2687 | "freeWifi": false,
2688 | "prayerRoom": null,
2689 | "relations": ["Meydan-e Enghelab-e Eslami","Modafean-e Salamat","Shahid Navab-e Safavi","Shademan"]
2690 | },
2691 | "Doctor Habibollah": {
2692 | "name": "Doctor Habibollah",
2693 | "translations": {"fa": "دکتر حبیبالله"},
2694 | "lines": [4],
2695 | "longitude": "51.356079",
2696 | "latitude": "35.700653",
2697 | "address": "خیابان آزادی - نرسیده به خیابان دکتر حبیب اله",
2698 | "colors": ["#F8E100"],
2699 | "disabled": false,
2700 | "wc": false,
2701 | "coffeeShop": false,
2702 | "groceryStore": false,
2703 | "fastFood": false,
2704 | "atm": false,
2705 | "elevator": false,
2706 | "bicycleParking": false,
2707 | "waterCooler": null,
2708 | "cleanFood": false,
2709 | "blindPath": true,
2710 | "fireSuppressionSystem": true,
2711 | "fireExtinguisher": true,
2712 | "metroPolice": true,
2713 | "creditTicketSales": true,
2714 | "waitingChair": true,
2715 | "camera": true,
2716 | "trashCan": true,
2717 | "smoking": false,
2718 | "petsAllowed": false,
2719 | "freeWifi": false,
2720 | "prayerRoom": null,
2721 | "relations": ["Shademan","Ostad Mo'in"]
2722 | },
2723 | "Ostad Mo'in": {
2724 | "name": "Ostad Mo'in",
2725 | "translations": {"fa": "استاد معین"},
2726 | "lines": [4],
2727 | "longitude": "51.34461",
2728 | "latitude": "35.700131",
2729 | "address": "خیابان آزادی- قبل از میدان آزادی - تقاطع خیابان نور بخش",
2730 | "colors": ["#F8E100"],
2731 | "disabled": false,
2732 | "wc": false,
2733 | "coffeeShop": false,
2734 | "groceryStore": false,
2735 | "fastFood": false,
2736 | "atm": false,
2737 | "elevator": false,
2738 | "bicycleParking": false,
2739 | "waterCooler": null,
2740 | "cleanFood": false,
2741 | "blindPath": true,
2742 | "fireSuppressionSystem": true,
2743 | "fireExtinguisher": true,
2744 | "metroPolice": true,
2745 | "creditTicketSales": true,
2746 | "waitingChair": true,
2747 | "camera": true,
2748 | "trashCan": true,
2749 | "smoking": false,
2750 | "petsAllowed": false,
2751 | "freeWifi": false,
2752 | "prayerRoom": null,
2753 | "relations": ["Doctor Habibollah","Meydan-e Azadi"]
2754 | },
2755 | "Meydan-e Azadi": {
2756 | "name": "Meydan-e Azadi",
2757 | "translations": {"fa": "میدان آزادی"},
2758 | "lines": [4],
2759 | "longitude": "51.332492",
2760 | "latitude": "35.700802",
2761 | "address": "میدان آزادی - ابتدای بزرگراه شهید برادران رحمانی",
2762 | "colors": ["#F8E100"],
2763 | "disabled": false,
2764 | "wc": false,
2765 | "coffeeShop": false,
2766 | "groceryStore": false,
2767 | "fastFood": true,
2768 | "atm": false,
2769 | "elevator": false,
2770 | "bicycleParking": true,
2771 | "waterCooler": null,
2772 | "cleanFood": true,
2773 | "blindPath": true,
2774 | "fireSuppressionSystem": true,
2775 | "fireExtinguisher": true,
2776 | "metroPolice": true,
2777 | "creditTicketSales": true,
2778 | "waitingChair": true,
2779 | "camera": true,
2780 | "trashCan": true,
2781 | "smoking": false,
2782 | "petsAllowed": false,
2783 | "freeWifi": false,
2784 | "prayerRoom": null,
2785 | "relations": ["Ostad Mo'in","Bimeh"]
2786 | },
2787 | "Bimeh": {
2788 | "name": "Bimeh",
2789 | "translations": {"fa": "بیمه"},
2790 | "lines": [4],
2791 | "longitude": "51.32036",
2792 | "latitude": "35.699546",
2793 | "address": "بزرگراه شهید لشگری، ابتدای بیمه",
2794 | "colors": ["#F8E100"],
2795 | "disabled": false,
2796 | "wc": false,
2797 | "coffeeShop": true,
2798 | "groceryStore": false,
2799 | "fastFood": false,
2800 | "atm": true,
2801 | "elevator": false,
2802 | "bicycleParking": false,
2803 | "waterCooler": null,
2804 | "cleanFood": false,
2805 | "blindPath": true,
2806 | "fireSuppressionSystem": true,
2807 | "fireExtinguisher": true,
2808 | "metroPolice": true,
2809 | "creditTicketSales": true,
2810 | "waitingChair": true,
2811 | "camera": true,
2812 | "trashCan": true,
2813 | "smoking": false,
2814 | "petsAllowed": false,
2815 | "freeWifi": false,
2816 | "prayerRoom": null,
2817 | "relations": ["Meydan-e Azadi","Shahrak-e Ekbatan","Mehrabad Airport Terminal 1&2"]
2818 | },
2819 | "Mehrabad Airport Terminal 1&2": {
2820 | "name": "Mehrabad Airport Terminal 1&2",
2821 | "translations": {"fa": "پایانه ۱ و ۲ فرودگاه مهرآباد"},
2822 | "lines": [4],
2823 | "longitude": "51.3196823",
2824 | "latitude": "35.690689",
2825 | "address": "میدان آزادی، پایانه ۲ فرودگاه مهرآباد",
2826 | "colors": ["#F8E100"],
2827 | "disabled": false,
2828 | "wc": false,
2829 | "coffeeShop": false,
2830 | "groceryStore": false,
2831 | "fastFood": false,
2832 | "atm": false,
2833 | "elevator": false,
2834 | "bicycleParking": false,
2835 | "waterCooler": null,
2836 | "cleanFood": false,
2837 | "blindPath": true,
2838 | "fireSuppressionSystem": true,
2839 | "fireExtinguisher": true,
2840 | "metroPolice": true,
2841 | "creditTicketSales": true,
2842 | "waitingChair": true,
2843 | "camera": true,
2844 | "trashCan": true,
2845 | "smoking": false,
2846 | "petsAllowed": false,
2847 | "freeWifi": false,
2848 | "prayerRoom": null,
2849 | "relations": ["Bimeh","Mehrabad Airport Terminal 4&6"]
2850 | },
2851 | "Mehrabad Airport Terminal 4&6": {
2852 | "name": "Mehrabad Airport Terminal 4&6",
2853 | "translations": {"fa": "پایانه ۴ و ۶ فرودگاه مهرآباد"},
2854 | "lines": [4],
2855 | "longitude": "51.3271795",
2856 | "latitude": "35.6886266",
2857 | "address": "میدان آزادی، پایانه ۶ فرودگاه مهرآباد",
2858 | "colors": ["#F8E100"],
2859 | "disabled": false,
2860 | "wc": false,
2861 | "coffeeShop": false,
2862 | "groceryStore": false,
2863 | "fastFood": false,
2864 | "atm": false,
2865 | "elevator": false,
2866 | "bicycleParking": false,
2867 | "waterCooler": null,
2868 | "cleanFood": false,
2869 | "blindPath": true,
2870 | "fireSuppressionSystem": true,
2871 | "fireExtinguisher": true,
2872 | "metroPolice": true,
2873 | "creditTicketSales": true,
2874 | "waitingChair": true,
2875 | "camera": true,
2876 | "trashCan": true,
2877 | "smoking": false,
2878 | "petsAllowed": false,
2879 | "freeWifi": false,
2880 | "prayerRoom": null,
2881 | "relations": ["Mehrabad Airport Terminal 1&2"]
2882 | },
2883 | "Shahrak-e Ekbatan": {
2884 | "name": "Shahrak-e Ekbatan",
2885 | "translations": {"fa": "شهرک اکباتان"},
2886 | "lines": [4],
2887 | "longitude": "51.3074478",
2888 | "latitude": "35.705557400000004",
2889 | "address": "فاز دو شهرک اکباتان- روبروی بلوک 13",
2890 | "colors": ["#F8E100"],
2891 | "disabled": false,
2892 | "wc": false,
2893 | "coffeeShop": false,
2894 | "groceryStore": false,
2895 | "fastFood": false,
2896 | "atm": false,
2897 | "elevator": false,
2898 | "bicycleParking": true,
2899 | "waterCooler": null,
2900 | "cleanFood": false,
2901 | "blindPath": true,
2902 | "fireSuppressionSystem": true,
2903 | "fireExtinguisher": true,
2904 | "metroPolice": true,
2905 | "creditTicketSales": true,
2906 | "waitingChair": true,
2907 | "camera": true,
2908 | "trashCan": true,
2909 | "smoking": false,
2910 | "petsAllowed": false,
2911 | "freeWifi": false,
2912 | "prayerRoom": null,
2913 | "relations": ["Bimeh","Eram-e Sabz"]
2914 | },
2915 | "Allameh Jafari": {
2916 | "name": "Allameh Jafari",
2917 | "translations": {"fa": "علامه جعفری"},
2918 | "lines": [4],
2919 | "longitude": "51.30687773828286",
2920 | "latitude": "35.73085963000432",
2921 | "colors": ["#F8E100"],
2922 | "disabled": false,
2923 | "coffeeShop": false,
2924 | "groceryStore": false,
2925 | "fastFood": false,
2926 | "atm": true,
2927 | "elevator": false,
2928 | "bicycleParking": false,
2929 | "waterCooler": null,
2930 | "cleanFood": false,
2931 | "blindPath": true,
2932 | "fireSuppressionSystem": true,
2933 | "fireExtinguisher": true,
2934 | "metroPolice": true,
2935 | "creditTicketSales": true,
2936 | "waitingChair": true,
2937 | "camera": true,
2938 | "trashCan": true,
2939 | "smoking": false,
2940 | "petsAllowed": false,
2941 | "freeWifi": false,
2942 | "prayerRoom": null,
2943 | "relations": ["Eram-e Sabz"]
2944 | },
2945 | "Chaharbagh": {
2946 | "name": "Chaharbagh",
2947 | "translations": {"fa": "چهارباغ"},
2948 | "lines": [4],
2949 | "longitude": "51.30401221869391",
2950 | "latitude": "35.7506525742434",
2951 | "colors": ["#F8E100"],
2952 | "disabled": false,
2953 | "elevator": false,
2954 | "bicycleParking": false,
2955 | "waterCooler": null,
2956 | "cleanFood": false,
2957 | "blindPath": true,
2958 | "fireSuppressionSystem": true,
2959 | "fireExtinguisher": true,
2960 | "metroPolice": true,
2961 | "creditTicketSales": true,
2962 | "waitingChair": true,
2963 | "camera": true,
2964 | "trashCan": true,
2965 | "smoking": false,
2966 | "petsAllowed": false,
2967 | "freeWifi": false,
2968 | "prayerRoom": null,
2969 | "relations": ["Ayatollah Kashani"]
2970 | },
2971 | "Eram-e Sabz": {
2972 | "name": "Eram-e Sabz",
2973 | "translations": {"fa": "ارم سبز"},
2974 | "lines": [4,5],
2975 | "longitude": "51.301979",
2976 | "latitude": "35.717476",
2977 | "address": "ارم سبز",
2978 | "colors": ["#F8E100","#007E46"],
2979 | "disabled": false,
2980 | "wc": true,
2981 | "coffeeShop": true,
2982 | "groceryStore": true,
2983 | "fastFood": true,
2984 | "atm": true,
2985 | "elevator": true,
2986 | "bicycleParking": false,
2987 | "waterCooler": null,
2988 | "cleanFood": true,
2989 | "blindPath": true,
2990 | "fireSuppressionSystem": true,
2991 | "fireExtinguisher": true,
2992 | "metroPolice": true,
2993 | "creditTicketSales": true,
2994 | "waitingChair": true,
2995 | "camera": true,
2996 | "trashCan": true,
2997 | "smoking": false,
2998 | "petsAllowed": false,
2999 | "freeWifi": false,
3000 | "prayerRoom": null,
3001 | "relations": ["Tehran (Sadeghiyeh)","Varzeshgah-e Azadi","Allameh Jafari","Shahrak-e Ekbatan"]
3002 | },
3003 | "Varzeshgah-e Azadi": {
3004 | "name": "Varzeshgah-e Azadi",
3005 | "translations": {"fa": "ورزشگاه آزادی"},
3006 | "lines": [5],
3007 | "longitude": "51.281208",
3008 | "latitude": "35.716727",
3009 | "address": "اتوبان کرج - جنب مجموعه ورزشی آزادی",
3010 | "colors": ["#007E46"],
3011 | "disabled": false,
3012 | "wc": false,
3013 | "coffeeShop": false,
3014 | "groceryStore": false,
3015 | "fastFood": false,
3016 | "atm": false,
3017 | "elevator": true,
3018 | "bicycleParking": true,
3019 | "waterCooler": null,
3020 | "cleanFood": false,
3021 | "blindPath": true,
3022 | "fireSuppressionSystem": true,
3023 | "fireExtinguisher": true,
3024 | "metroPolice": true,
3025 | "creditTicketSales": true,
3026 | "waitingChair": true,
3027 | "camera": true,
3028 | "trashCan": true,
3029 | "smoking": false,
3030 | "petsAllowed": false,
3031 | "freeWifi": false,
3032 | "prayerRoom": false,
3033 | "relations": ["Eram-e Sabz","Chitgar"]
3034 | },
3035 | "Chitgar": {
3036 | "name": "Chitgar",
3037 | "translations": {"fa": "چیتگر"},
3038 | "lines": [5],
3039 | "longitude": "51.243904",
3040 | "latitude": "35.717563",
3041 | "address": "کیلومتر 8 اتوبان تهران کرج , روبروی کارخانه بهنوش , بلوار کوهک",
3042 | "colors": ["#007E46"],
3043 | "disabled": false,
3044 | "wc": true,
3045 | "coffeeShop": false,
3046 | "groceryStore": false,
3047 | "fastFood": false,
3048 | "atm": false,
3049 | "elevator": true,
3050 | "bicycleParking": true,
3051 | "waterCooler": null,
3052 | "cleanFood": false,
3053 | "blindPath": true,
3054 | "fireSuppressionSystem": true,
3055 | "fireExtinguisher": true,
3056 | "metroPolice": true,
3057 | "creditTicketSales": true,
3058 | "waitingChair": true,
3059 | "camera": true,
3060 | "trashCan": true,
3061 | "smoking": false,
3062 | "petsAllowed": false,
3063 | "freeWifi": false,
3064 | "prayerRoom": false,
3065 | "relations": ["Varzeshgah-e Azadi","Iran Khodro"]
3066 | },
3067 | "Iran Khodro": {
3068 | "name": "Iran Khodro",
3069 | "translations": {"fa": "ایرانخودرو"},
3070 | "lines": [5],
3071 | "longitude": "51.196654",
3072 | "latitude": "35.725402",
3073 | "address": "کیلومتر 14 اتوبان تهران کرج , جنب باشگاه ایران خودرو",
3074 | "colors": ["#007E46"],
3075 | "disabled": false,
3076 | "wc": true,
3077 | "coffeeShop": false,
3078 | "groceryStore": false,
3079 | "fastFood": false,
3080 | "atm": false,
3081 | "elevator": false,
3082 | "bicycleParking": true,
3083 | "waterCooler": null,
3084 | "cleanFood": false,
3085 | "blindPath": true,
3086 | "fireSuppressionSystem": true,
3087 | "fireExtinguisher": true,
3088 | "metroPolice": true,
3089 | "creditTicketSales": true,
3090 | "waitingChair": true,
3091 | "camera": true,
3092 | "trashCan": true,
3093 | "smoking": false,
3094 | "petsAllowed": false,
3095 | "freeWifi": false,
3096 | "prayerRoom": false,
3097 | "relations": ["Chitgar","Vardavard"]
3098 | },
3099 | "Vardavard": {
3100 | "name": "Vardavard",
3101 | "translations": {"fa": "وردآورد"},
3102 | "lines": [5],
3103 | "longitude": "51.1509866",
3104 | "latitude": "35.7444768",
3105 | "address": "کیلومتر 16 بزرگراه تهران کرج - خیابان دارو پخش",
3106 | "colors": ["#007E46"],
3107 | "disabled": false,
3108 | "wc": true,
3109 | "coffeeShop": false,
3110 | "groceryStore": false,
3111 | "fastFood": false,
3112 | "atm": false,
3113 | "elevator": false,
3114 | "bicycleParking": true,
3115 | "waterCooler": null,
3116 | "cleanFood": false,
3117 | "blindPath": true,
3118 | "fireSuppressionSystem": true,
3119 | "fireExtinguisher": true,
3120 | "metroPolice": true,
3121 | "creditTicketSales": true,
3122 | "waitingChair": true,
3123 | "camera": true,
3124 | "trashCan": true,
3125 | "smoking": false,
3126 | "petsAllowed": false,
3127 | "freeWifi": false,
3128 | "prayerRoom": false,
3129 | "relations": ["Iran Khodro","Garmdareh"]
3130 | },
3131 | "Garmdareh": {
3132 | "name": "Garmdareh",
3133 | "translations": {"fa": "گرمدره"},
3134 | "lines": [5],
3135 | "longitude": "51.08193",
3136 | "latitude": "35.751002",
3137 | "address": "کیلومتر ۲۳ بزرگراه تهران-کرج، جنب اردوگاه آموزشی قدس",
3138 | "colors": ["#007E46"],
3139 | "disabled": false,
3140 | "wc": false,
3141 | "coffeeShop": false,
3142 | "groceryStore": false,
3143 | "fastFood": false,
3144 | "atm": false,
3145 | "elevator": false,
3146 | "bicycleParking": true,
3147 | "waterCooler": null,
3148 | "cleanFood": false,
3149 | "blindPath": true,
3150 | "fireSuppressionSystem": true,
3151 | "fireExtinguisher": true,
3152 | "metroPolice": true,
3153 | "creditTicketSales": true,
3154 | "waitingChair": true,
3155 | "camera": true,
3156 | "trashCan": true,
3157 | "smoking": false,
3158 | "petsAllowed": false,
3159 | "freeWifi": false,
3160 | "prayerRoom": false,
3161 | "relations": ["Vardavard","Atmosphere"]
3162 | },
3163 | "Atmosphere": {
3164 | "name": "Atmosphere",
3165 | "translations": {"fa": "اتمسفر"},
3166 | "lines": [5],
3167 | "longitude": "51.0469759",
3168 | "latitude": "35.7662914",
3169 | "address": "کیلومتر 27 جاده مخصوص تهران کرج اتمسفر",
3170 | "colors": ["#007E46"],
3171 | "disabled": false,
3172 | "wc": true,
3173 | "coffeeShop": false,
3174 | "groceryStore": false,
3175 | "fastFood": false,
3176 | "atm": false,
3177 | "elevator": false,
3178 | "bicycleParking": false,
3179 | "waterCooler": null,
3180 | "cleanFood": false,
3181 | "blindPath": true,
3182 | "fireSuppressionSystem": true,
3183 | "fireExtinguisher": true,
3184 | "metroPolice": true,
3185 | "creditTicketSales": true,
3186 | "waitingChair": true,
3187 | "camera": true,
3188 | "trashCan": true,
3189 | "smoking": false,
3190 | "petsAllowed": false,
3191 | "freeWifi": false,
3192 | "prayerRoom": false,
3193 | "relations": ["Garmdareh","Karaj"]
3194 | },
3195 | "Karaj": {
3196 | "name": "Karaj",
3197 | "translations": {"fa": "کرج"},
3198 | "lines": [5],
3199 | "longitude": "51.0026979",
3200 | "latitude": "35.7870098",
3201 | "address": "کرج , پل فردیس , جنب میدان شهید سلطانی , ابتدای جاده ملارد",
3202 | "colors": ["#007E46"],
3203 | "disabled": false,
3204 | "wc": true,
3205 | "coffeeShop": false,
3206 | "groceryStore": false,
3207 | "fastFood": false,
3208 | "atm": false,
3209 | "elevator": true,
3210 | "bicycleParking": true,
3211 | "waterCooler": null,
3212 | "cleanFood": false,
3213 | "blindPath": true,
3214 | "fireSuppressionSystem": true,
3215 | "fireExtinguisher": true,
3216 | "metroPolice": true,
3217 | "creditTicketSales": true,
3218 | "waitingChair": true,
3219 | "camera": true,
3220 | "trashCan": true,
3221 | "smoking": false,
3222 | "petsAllowed": false,
3223 | "freeWifi": false,
3224 | "prayerRoom": true,
3225 | "relations": ["Atmosphere","Mohammadshahr"]
3226 | },
3227 | "Mohammadshahr": {
3228 | "name": "Mohammadshahr",
3229 | "translations": {"fa": "محمدشهر"},
3230 | "lines": [5],
3231 | "longitude": "50.964729",
3232 | "latitude": "35.800951",
3233 | "address": "اتوبان ( تهران - کرج ) جاده محمد شهر",
3234 | "colors": ["#007E46"],
3235 | "disabled": false,
3236 | "wc": false,
3237 | "coffeeShop": false,
3238 | "groceryStore": false,
3239 | "fastFood": false,
3240 | "atm": false,
3241 | "elevator": false,
3242 | "bicycleParking": true,
3243 | "waterCooler": null,
3244 | "cleanFood": false,
3245 | "blindPath": true,
3246 | "fireSuppressionSystem": true,
3247 | "fireExtinguisher": true,
3248 | "metroPolice": true,
3249 | "creditTicketSales": true,
3250 | "waitingChair": true,
3251 | "camera": true,
3252 | "trashCan": true,
3253 | "smoking": false,
3254 | "petsAllowed": false,
3255 | "freeWifi": false,
3256 | "prayerRoom": false,
3257 | "relations": ["Karaj","Golshahr"]
3258 | },
3259 | "Golshahr": {
3260 | "name": "Golshahr",
3261 | "translations": {"fa": "گلشهر"},
3262 | "lines": [5],
3263 | "longitude": "50.933079",
3264 | "latitude": "35.824877",
3265 | "address": "کرج-45 متری گلشهر- خیابان اختر غربی",
3266 | "colors": ["#007E46"],
3267 | "disabled": false,
3268 | "wc": true,
3269 | "coffeeShop": true,
3270 | "groceryStore": true,
3271 | "fastFood": true,
3272 | "atm": true,
3273 | "elevator": true,
3274 | "bicycleParking": true,
3275 | "waterCooler": null,
3276 | "cleanFood": true,
3277 | "blindPath": true,
3278 | "fireSuppressionSystem": true,
3279 | "fireExtinguisher": true,
3280 | "metroPolice": true,
3281 | "creditTicketSales": true,
3282 | "waitingChair": true,
3283 | "camera": true,
3284 | "trashCan": true,
3285 | "smoking": false,
3286 | "petsAllowed": false,
3287 | "freeWifi": false,
3288 | "prayerRoom": false,
3289 | "relations": ["Mohammadshahr","Shahid Sepahbod Qasem Soleimani"]
3290 | },
3291 | "Shahid Sepahbod Qasem Soleimani": {
3292 | "name": "Shahid Sepahbod Qasem Soleimani",
3293 | "translations": {"fa": "شهید سپهبد قاسم سلیمانی"},
3294 | "lines": [5],
3295 | "longitude": "50.8881",
3296 | "latitude": "35.8261",
3297 | "address": "کرج، مهرشهر، انتهای بلوار ارم",
3298 | "colors": ["#007E46"],
3299 | "disabled": true,
3300 | "wc": false,
3301 | "coffeeShop": false,
3302 | "groceryStore": false,
3303 | "fastFood": false,
3304 | "atm": false,
3305 | "elevator": false,
3306 | "bicycleParking": false,
3307 | "waterCooler": null,
3308 | "cleanFood": false,
3309 | "blindPath": true,
3310 | "fireSuppressionSystem": true,
3311 | "fireExtinguisher": true,
3312 | "metroPolice": true,
3313 | "creditTicketSales": true,
3314 | "waitingChair": true,
3315 | "camera": true,
3316 | "trashCan": true,
3317 | "smoking": false,
3318 | "petsAllowed": false,
3319 | "freeWifi": false,
3320 | "prayerRoom": false,
3321 | "relations": ["Golshahr"]
3322 | },
3323 | "Haram-e Hazrat-e Abdol Azim": {
3324 | "name": "Haram-e Hazrat-e Abdol Azim",
3325 | "translations": {"fa": "حرم حضرت عبدالعظیم"},
3326 | "lines": [6],
3327 | "longitude": "51.4391",
3328 | "latitude": "35.5916",
3329 | "address": "شهر ری، جنب حرم حضرت عبدالعظیم (ع)",
3330 | "colors": ["#EF639F"],
3331 | "disabled": true,
3332 | "wc": true,
3333 | "coffeeShop": false,
3334 | "groceryStore": false,
3335 | "fastFood": false,
3336 | "atm": false,
3337 | "elevator": false,
3338 | "bicycleParking": false,
3339 | "waterCooler": null,
3340 | "cleanFood": false,
3341 | "blindPath": true,
3342 | "fireSuppressionSystem": true,
3343 | "fireExtinguisher": true,
3344 | "metroPolice": true,
3345 | "creditTicketSales": true,
3346 | "waitingChair": true,
3347 | "camera": true,
3348 | "trashCan": true,
3349 | "smoking": false,
3350 | "petsAllowed": false,
3351 | "freeWifi": false,
3352 | "prayerRoom": false,
3353 | "relations": ["Meydan-e Hazrat-e Abdol Azim"]
3354 | },
3355 | "Meydan-e Hazrat-e Abdol Azim": {
3356 | "name": "Meydan-e Hazrat-e Abdol Azim",
3357 | "translations": {"fa": "میدان حضرت عبدالعظیم"},
3358 | "lines": [6],
3359 | "longitude": "51.4406",
3360 | "latitude": "35.5935",
3361 | "address": "شهر ری، میدان حضرت عبدالعظیم (ع)",
3362 | "colors": ["#EF639F"],
3363 | "disabled": true,
3364 | "wc": false,
3365 | "coffeeShop": false,
3366 | "groceryStore": false,
3367 | "fastFood": false,
3368 | "atm": false,
3369 | "elevator": false,
3370 | "bicycleParking": false,
3371 | "waterCooler": null,
3372 | "cleanFood": false,
3373 | "blindPath": true,
3374 | "fireSuppressionSystem": true,
3375 | "fireExtinguisher": true,
3376 | "metroPolice": true,
3377 | "creditTicketSales": true,
3378 | "waitingChair": true,
3379 | "camera": true,
3380 | "trashCan": true,
3381 | "smoking": false,
3382 | "petsAllowed": false,
3383 | "freeWifi": false,
3384 | "prayerRoom": false,
3385 | "relations": ["Haram-e Hazrat-e Abdol Azim","Ebn-e Babviyeh"]
3386 | },
3387 | "Ebn-e Babviyeh": {
3388 | "name": "Ebn-e Babviyeh",
3389 | "translations": {"fa": "ابن بابویه"},
3390 | "lines": [6],
3391 | "longitude": "51.4463",
3392 | "latitude": "35.6037",
3393 | "address": "شهر ری، خیابان ابن بابویه",
3394 | "colors": ["#EF639F"],
3395 | "disabled": true,
3396 | "wc": false,
3397 | "coffeeShop": false,
3398 | "groceryStore": false,
3399 | "fastFood": false,
3400 | "atm": false,
3401 | "elevator": false,
3402 | "bicycleParking": false,
3403 | "waterCooler": null,
3404 | "cleanFood": false,
3405 | "blindPath": true,
3406 | "fireSuppressionSystem": true,
3407 | "fireExtinguisher": true,
3408 | "metroPolice": true,
3409 | "creditTicketSales": true,
3410 | "waitingChair": true,
3411 | "camera": true,
3412 | "trashCan": true,
3413 | "smoking": false,
3414 | "petsAllowed": false,
3415 | "freeWifi": false,
3416 | "prayerRoom": false,
3417 | "relations": ["Meydan-e Hazrat-e Abdol Azim","Cheshmeh Ali"]
3418 | },
3419 | "Cheshmeh Ali": {
3420 | "name": "Cheshmeh Ali",
3421 | "translations": {"fa": "چشمه علی"},
3422 | "lines": [6],
3423 | "longitude": "51.4550",
3424 | "latitude": "35.6099",
3425 | "address": "شهر ری، منطقه چشمه علی",
3426 | "colors": ["#EF639F"],
3427 | "disabled": true,
3428 | "wc": false,
3429 | "coffeeShop": false,
3430 | "groceryStore": false,
3431 | "fastFood": false,
3432 | "atm": false,
3433 | "elevator": false,
3434 | "bicycleParking": false,
3435 | "waterCooler": null,
3436 | "cleanFood": false,
3437 | "blindPath": true,
3438 | "fireSuppressionSystem": true,
3439 | "fireExtinguisher": true,
3440 | "metroPolice": true,
3441 | "creditTicketSales": true,
3442 | "waitingChair": true,
3443 | "camera": true,
3444 | "trashCan": true,
3445 | "smoking": false,
3446 | "petsAllowed": false,
3447 | "freeWifi": false,
3448 | "prayerRoom": false,
3449 | "relations": ["Ebn-e Babviyeh","Shohada-ye Dowlat Abad"]
3450 | },
3451 | "Shohada-ye Dowlat Abad": {
3452 | "name": "Shohada-ye Dowlat Abad",
3453 | "translations": {"fa": "شهدای دولتآباد"},
3454 | "lines": [6],
3455 | "longitude": "51.4639",
3456 | "latitude": "35.6230",
3457 | "address": "دولت آباد، بلوار قدس",
3458 | "colors": ["#EF639F"],
3459 | "disabled": false,
3460 | "wc": true,
3461 | "coffeeShop": false,
3462 | "groceryStore": false,
3463 | "fastFood": false,
3464 | "atm": false,
3465 | "elevator": false,
3466 | "bicycleParking": true,
3467 | "waterCooler": null,
3468 | "cleanFood": false,
3469 | "blindPath": true,
3470 | "fireSuppressionSystem": true,
3471 | "fireExtinguisher": true,
3472 | "metroPolice": true,
3473 | "creditTicketSales": true,
3474 | "waitingChair": true,
3475 | "camera": true,
3476 | "trashCan": true,
3477 | "smoking": false,
3478 | "petsAllowed": false,
3479 | "freeWifi": false,
3480 | "prayerRoom": false,
3481 | "relations": ["Cheshmeh Ali","Kiyan Shahr"]
3482 | },
3483 | "Kiyan Shahr": {
3484 | "name": "Kiyan Shahr",
3485 | "translations": {"fa": "کیان شهر"},
3486 | "lines": [6],
3487 | "longitude": "51.4603",
3488 | "latitude": "35.6392",
3489 | "address": "کیانشهر، میدان امام رضا (ع)",
3490 | "colors": ["#EF639F"],
3491 | "disabled": false,
3492 | "wc": true,
3493 | "coffeeShop": false,
3494 | "groceryStore": false,
3495 | "fastFood": false,
3496 | "atm": false,
3497 | "elevator": false,
3498 | "bicycleParking": true,
3499 | "waterCooler": null,
3500 | "cleanFood": false,
3501 | "blindPath": true,
3502 | "fireSuppressionSystem": true,
3503 | "fireExtinguisher": true,
3504 | "metroPolice": true,
3505 | "creditTicketSales": true,
3506 | "waitingChair": true,
3507 | "camera": true,
3508 | "trashCan": true,
3509 | "smoking": false,
3510 | "petsAllowed": false,
3511 | "freeWifi": false,
3512 | "prayerRoom": false,
3513 | "relations": ["Shohada-ye Dowlat Abad","Be'sat"]
3514 | },
3515 | "Be'sat": {
3516 | "name": "Be'sat",
3517 | "translations": {"fa": "بعثت"},
3518 | "lines": [6],
3519 | "longitude": "51.4498",
3520 | "latitude": "35.6471",
3521 | "address": "بزرگراه بعثت، تقاطع خیابان ۱۷ شهریور",
3522 | "colors": ["#EF639F"],
3523 | "disabled": false,
3524 | "wc": true,
3525 | "coffeeShop": false,
3526 | "groceryStore": false,
3527 | "fastFood": false,
3528 | "atm": true,
3529 | "elevator": false,
3530 | "bicycleParking": false,
3531 | "waterCooler": null,
3532 | "cleanFood": false,
3533 | "blindPath": true,
3534 | "fireSuppressionSystem": true,
3535 | "fireExtinguisher": true,
3536 | "metroPolice": true,
3537 | "creditTicketSales": true,
3538 | "waitingChair": true,
3539 | "camera": true,
3540 | "trashCan": true,
3541 | "smoking": false,
3542 | "petsAllowed": false,
3543 | "freeWifi": false,
3544 | "prayerRoom": false,
3545 | "relations": ["Kiyan Shahr","Shahid Rezaei"]
3546 | },
3547 | "Shahid Rezaei": {
3548 | "name": "Shahid Rezaei",
3549 | "translations": {"fa": "شهید رضایی"},
3550 | "lines": [6],
3551 | "longitude": "51.4514",
3552 | "latitude": "35.6609",
3553 | "address": "خیابان خراسان، خیابان شهید رضایی (منصور)",
3554 | "colors": ["#EF639F"],
3555 | "disabled": false,
3556 | "wc": false,
3557 | "coffeeShop": false,
3558 | "groceryStore": false,
3559 | "fastFood": false,
3560 | "atm": false,
3561 | "elevator": false,
3562 | "bicycleParking": false,
3563 | "waterCooler": null,
3564 | "cleanFood": false,
3565 | "blindPath": true,
3566 | "fireSuppressionSystem": true,
3567 | "fireExtinguisher": true,
3568 | "metroPolice": true,
3569 | "creditTicketSales": true,
3570 | "waitingChair": true,
3571 | "camera": true,
3572 | "trashCan": true,
3573 | "smoking": false,
3574 | "petsAllowed": false,
3575 | "freeWifi": false,
3576 | "prayerRoom": false,
3577 | "relations": ["Be'sat","Meydan-e Khorasan"]
3578 | },
3579 | "Meydan-e Khorasan": {
3580 | "name": "Meydan-e Khorasan",
3581 | "translations": {"fa": "میدان خراسان"},
3582 | "lines": [6],
3583 | "longitude": "51.4478",
3584 | "latitude": "35.6728",
3585 | "address": "میدان خراسان",
3586 | "colors": ["#EF639F"],
3587 | "disabled": true,
3588 | "wc": false,
3589 | "coffeeShop": false,
3590 | "groceryStore": false,
3591 | "fastFood": false,
3592 | "atm": false,
3593 | "elevator": false,
3594 | "bicycleParking": false,
3595 | "waterCooler": null,
3596 | "cleanFood": false,
3597 | "blindPath": true,
3598 | "fireSuppressionSystem": true,
3599 | "fireExtinguisher": true,
3600 | "metroPolice": true,
3601 | "creditTicketSales": true,
3602 | "waitingChair": true,
3603 | "camera": true,
3604 | "trashCan": true,
3605 | "smoking": false,
3606 | "petsAllowed": false,
3607 | "freeWifi": false,
3608 | "prayerRoom": false,
3609 | "relations": ["Shahid Rezaei","Shohada-ye Hefdah-e Shahrivar"]
3610 | },
3611 | "Shohada-ye Hefdah-e Shahrivar": {
3612 | "name": "Shohada-ye Hefdah-e Shahrivar",
3613 | "translations": {"fa": "شهدای هفده شهریور"},
3614 | "lines": [6,7],
3615 | "longitude": "51.4491",
3616 | "latitude": "35.6809",
3617 | "address": "خیابان ۱۷ شهریور، تقاطع خیابان امیرکبیر",
3618 | "colors": ["#EF639F","#7F0B74"],
3619 | "disabled": true,
3620 | "wc": false,
3621 | "coffeeShop": false,
3622 | "groceryStore": false,
3623 | "fastFood": false,
3624 | "atm": false,
3625 | "elevator": false,
3626 | "bicycleParking": false,
3627 | "waterCooler": null,
3628 | "cleanFood": false,
3629 | "blindPath": true,
3630 | "fireSuppressionSystem": true,
3631 | "fireExtinguisher": true,
3632 | "metroPolice": true,
3633 | "creditTicketSales": true,
3634 | "waitingChair": true,
3635 | "camera": true,
3636 | "trashCan": true,
3637 | "smoking": false,
3638 | "petsAllowed": false,
3639 | "freeWifi": false,
3640 | "prayerRoom": false,
3641 | "relations": ["Meydan-e Khorasan","Amirkabir","Chehel Tan-e Doulab","Meydan-e Giyam"]
3642 | },
3643 | "Amirkabir": {
3644 | "name": "Amirkabir",
3645 | "translations": {"fa": "امیرکبیر"},
3646 | "lines": [6],
3647 | "longitude": "51.44802",
3648 | "latitude": "35.6861",
3649 | "address": "خیابان امیرکبیر، نرسیده به میدان شهدا",
3650 | "colors": ["#EF639F"],
3651 | "disabled": false,
3652 | "wc": false,
3653 | "coffeeShop": false,
3654 | "groceryStore": false,
3655 | "fastFood": false,
3656 | "atm": false,
3657 | "elevator": false,
3658 | "bicycleParking": false,
3659 | "waterCooler": null,
3660 | "cleanFood": false,
3661 | "blindPath": true,
3662 | "fireSuppressionSystem": true,
3663 | "fireExtinguisher": true,
3664 | "metroPolice": true,
3665 | "creditTicketSales": true,
3666 | "waitingChair": true,
3667 | "camera": true,
3668 | "trashCan": true,
3669 | "smoking": false,
3670 | "petsAllowed": false,
3671 | "freeWifi": false,
3672 | "prayerRoom": false,
3673 | "relations": ["Shohada-ye Hefdah-e Shahrivar","Meydan-e Shohada"]
3674 | },
3675 | "Meydan-e Shohada": {
3676 | "name": "Meydan-e Shohada",
3677 | "translations": {"fa": "میدان شهدا"},
3678 | "lines": [4,6],
3679 | "longitude": "51.447237",
3680 | "latitude": "35.690381",
3681 | "address": "خیابان پیروزی تقاطع 17 شهریور،نرسیده به میدان شهدا، جنب اداره برق",
3682 | "colors": ["#F8E100","#EF639F"],
3683 | "disabled": false,
3684 | "wc": false,
3685 | "coffeeShop": false,
3686 | "groceryStore": false,
3687 | "fastFood": false,
3688 | "atm": false,
3689 | "elevator": false,
3690 | "bicycleParking": true,
3691 | "waterCooler": null,
3692 | "cleanFood": false,
3693 | "blindPath": true,
3694 | "fireSuppressionSystem": true,
3695 | "fireExtinguisher": true,
3696 | "metroPolice": true,
3697 | "creditTicketSales": true,
3698 | "waitingChair": true,
3699 | "camera": true,
3700 | "trashCan": true,
3701 | "smoking": false,
3702 | "petsAllowed": false,
3703 | "freeWifi": false,
3704 | "prayerRoom": false,
3705 | "relations": ["Amirkabir","Ebn-e Sina","Darvazeh Shemiran","Imam Hossein"]
3706 | },
3707 | "Sarbaz": {
3708 | "name": "Sarbaz",
3709 | "translations": {"fa": "سرباز"},
3710 | "lines": [6],
3711 | "longitude": "51.4402",
3712 | "latitude": "35.7077",
3713 | "address": "خیابان سپاه، میدان سپاه",
3714 | "colors": ["#EF639F"],
3715 | "disabled": true,
3716 | "wc": false,
3717 | "coffeeShop": false,
3718 | "groceryStore": false,
3719 | "fastFood": false,
3720 | "atm": false,
3721 | "elevator": false,
3722 | "bicycleParking": false,
3723 | "waterCooler": null,
3724 | "cleanFood": false,
3725 | "blindPath": true,
3726 | "fireSuppressionSystem": true,
3727 | "fireExtinguisher": true,
3728 | "metroPolice": true,
3729 | "creditTicketSales": true,
3730 | "waitingChair": true,
3731 | "camera": true,
3732 | "trashCan": true,
3733 | "smoking": false,
3734 | "petsAllowed": false,
3735 | "freeWifi": false,
3736 | "prayerRoom": false,
3737 | "relations": ["Imam Hossein","Bahar Shiraz (Khanevadeh Hospital)"]
3738 | },
3739 | "Bahar Shiraz (Khanevadeh Hospital)": {
3740 | "name": "Bahar Shiraz (Khanevadeh Hospital)",
3741 | "translations": {"fa": "بهار شیراز (بیمارستان خانواده)"},
3742 | "lines": [6],
3743 | "longitude": "51.4325",
3744 | "latitude": "35.7122",
3745 | "address": "خیابان بهار شیراز، جنب بیمارستان خانواده",
3746 | "colors": ["#EF639F"],
3747 | "disabled": false,
3748 | "wc": false,
3749 | "coffeeShop": false,
3750 | "groceryStore": false,
3751 | "fastFood": false,
3752 | "atm": false,
3753 | "elevator": false,
3754 | "bicycleParking": false,
3755 | "waterCooler": null,
3756 | "cleanFood": false,
3757 | "blindPath": true,
3758 | "fireSuppressionSystem": true,
3759 | "fireExtinguisher": true,
3760 | "metroPolice": true,
3761 | "creditTicketSales": true,
3762 | "waitingChair": true,
3763 | "camera": true,
3764 | "trashCan": true,
3765 | "smoking": false,
3766 | "petsAllowed": false,
3767 | "freeWifi": false,
3768 | "prayerRoom": false,
3769 | "relations": ["Sarbaz","Shohada-ye Haftom-e Tir"]
3770 | },
3771 |
3772 | "Shohada-ye Haftom-e Tir": {
3773 | "name": "Shohada-ye Haftom-e Tir",
3774 | "translations": {"fa": "شهدای هفتم تیر"},
3775 | "lines": [1,6],
3776 | "longitude": "51.426042",
3777 | "latitude": "35.715986",
3778 | "address": "میدان هفت تیر",
3779 | "colors": ["#E0001F","#EF639F"],
3780 | "disabled": false,
3781 | "wc": false,
3782 | "coffeeShop": false,
3783 | "groceryStore": false,
3784 | "fastFood": true,
3785 | "atm": false,
3786 | "elevator": true,
3787 | "bicycleParking": false,
3788 | "waterCooler": true,
3789 | "cleanFood": true,
3790 | "blindPath": true,
3791 | "fireSuppressionSystem": true,
3792 | "fireExtinguisher": true,
3793 | "metroPolice": true,
3794 | "creditTicketSales": true,
3795 | "waitingChair": true,
3796 | "camera": true,
3797 | "trashCan": true,
3798 | "smoking": false,
3799 | "petsAllowed": false,
3800 | "freeWifi": false,
3801 | "prayerRoom": true,
3802 | "relations": ["Bahar Shiraz (Khanevadeh Hospital)","Maryam-e Moghaddas","Shahid Mofattah","Ayatollah Taleghani"]
3803 | },
3804 | "Maryam-e Moghaddas": {
3805 | "name": "Maryam-e Moghaddas",
3806 | "translations": {"fa": "مریم مقدس (س)"},
3807 | "lines": [6],
3808 | "longitude": "51.4164",
3809 | "latitude": "35.7133",
3810 | "address": "خیابان کریمخان زند، خیابان شهید نجات اللهی (ویلا)",
3811 | "colors": ["#EF639F"],
3812 | "disabled": true,
3813 | "wc": false,
3814 | "coffeeShop": false,
3815 | "groceryStore": false,
3816 | "fastFood": false,
3817 | "atm": false,
3818 | "elevator": false,
3819 | "bicycleParking": false,
3820 | "waterCooler": null,
3821 | "cleanFood": false,
3822 | "blindPath": true,
3823 | "fireSuppressionSystem": true,
3824 | "fireExtinguisher": true,
3825 | "metroPolice": true,
3826 | "creditTicketSales": true,
3827 | "waitingChair": true,
3828 | "camera": true,
3829 | "trashCan": true,
3830 | "smoking": false,
3831 | "petsAllowed": false,
3832 | "freeWifi": false,
3833 | "prayerRoom": false,
3834 | "relations": ["Shohada-ye Haftom-e Tir","Meydan-e Hazrat Vali Asr"]
3835 | },
3836 |
3837 | "Meydan-e Hazrat Vali Asr": {
3838 | "name": "Meydan-e Hazrat Vali Asr",
3839 | "translations": {"fa": "میدان حضرت ولیعصر"},
3840 | "lines": [3,6],
3841 | "longitude": "51.4070255",
3842 | "latitude": "35.7115282",
3843 | "address": "خیابان ولیعصر، میدان ولیعصر",
3844 | "colors": ["#67C5F5","#EF639F"],
3845 | "disabled": false,
3846 | "wc": false,
3847 | "coffeeShop": false,
3848 | "groceryStore": false,
3849 | "fastFood": true,
3850 | "atm": false,
3851 | "elevator": true,
3852 | "bicycleParking": false,
3853 | "waterCooler": true,
3854 | "cleanFood": true,
3855 | "blindPath": true,
3856 | "fireSuppressionSystem": true,
3857 | "fireExtinguisher": true,
3858 | "metroPolice": true,
3859 | "creditTicketSales": true,
3860 | "waitingChair": true,
3861 | "camera": true,
3862 | "trashCan": true,
3863 | "smoking": false,
3864 | "petsAllowed": false,
3865 | "freeWifi": false,
3866 | "prayerRoom": true,
3867 | "relations": ["Maryam-e Moghaddas","Meydan-e Jahad","Teatr-e Shahr","Bustan-e Laleh"]
3868 | },
3869 | "Bustan-e Laleh": {
3870 | "name": "Bustan-e Laleh",
3871 | "translations": {"fa": "بوستان لاله"},
3872 | "lines": [6],
3873 | "longitude": "51.3951",
3874 | "latitude": "35.7106",
3875 | "address": "بلوار کشاورز، ضلع شمالی پارک لاله",
3876 | "colors": ["#EF639F"],
3877 | "disabled": false,
3878 | "wc": true,
3879 | "coffeeShop": false,
3880 | "groceryStore": false,
3881 | "fastFood": false,
3882 | "atm": false,
3883 | "elevator": false,
3884 | "bicycleParking": false,
3885 | "waterCooler": null,
3886 | "cleanFood": false,
3887 | "blindPath": true,
3888 | "fireSuppressionSystem": true,
3889 | "fireExtinguisher": true,
3890 | "metroPolice": true,
3891 | "creditTicketSales": true,
3892 | "waitingChair": true,
3893 | "camera": true,
3894 | "trashCan": true,
3895 | "smoking": false,
3896 | "petsAllowed": false,
3897 | "freeWifi": false,
3898 | "prayerRoom": false,
3899 | "relations": ["Meydan-e Hazrat Vali Asr","Karagar"]
3900 | },
3901 | "Karagar": {
3902 | "name": "Karagar",
3903 | "translations": {"fa": "کارگر"},
3904 | "lines": [6],
3905 | "longitude": "51.3875",
3906 | "latitude": "35.7145",
3907 | "address": "خیابان کارگر شمالی، تقاطع بلوار کشاورز",
3908 | "colors": ["#EF639F"],
3909 | "disabled": false,
3910 | "wc": false,
3911 | "coffeeShop": false,
3912 | "groceryStore": false,
3913 | "fastFood": false,
3914 | "atm": false,
3915 | "elevator": false,
3916 | "bicycleParking": false,
3917 | "waterCooler": null,
3918 | "cleanFood": false,
3919 | "blindPath": true,
3920 | "fireSuppressionSystem": true,
3921 | "fireExtinguisher": true,
3922 | "metroPolice": true,
3923 | "creditTicketSales": true,
3924 | "waitingChair": true,
3925 | "camera": true,
3926 | "trashCan": true,
3927 | "smoking": false,
3928 | "petsAllowed": false,
3929 | "freeWifi": false,
3930 | "prayerRoom": false,
3931 | "relations": ["Bustan-e Laleh","Daneshgah-e Tarbiat Modarres"]
3932 | },
3933 | "Daneshgah-e Tarbiat Modarres": {
3934 | "name": "Daneshgah-e Tarbiat Modarres",
3935 | "translations": {"fa": "دانشگاه تربیت مدرس"},
3936 | "lines": [6,7],
3937 | "longitude": "51.3844",
3938 | "latitude": "35.7271",
3939 | "address": "بزرگراه جلال آل احمد، جنب دانشگاه تربیت مدرس",
3940 | "colors": ["#EF639F","#7F0B74"],
3941 | "disabled": false,
3942 | "wc": true,
3943 | "coffeeShop": false,
3944 | "groceryStore": false,
3945 | "fastFood": false,
3946 | "atm": true,
3947 | "elevator": false,
3948 | "bicycleParking": false,
3949 | "waterCooler": null,
3950 | "cleanFood": false,
3951 | "blindPath": true,
3952 | "fireSuppressionSystem": true,
3953 | "fireExtinguisher": true,
3954 | "metroPolice": true,
3955 | "creditTicketSales": true,
3956 | "waitingChair": true,
3957 | "camera": true,
3958 | "trashCan": true,
3959 | "smoking": false,
3960 | "petsAllowed": false,
3961 | "freeWifi": false,
3962 | "prayerRoom": true,
3963 | "relations": ["Karagar","Boostan-e Goftegou","Modafean-e Salamat","Shahrak-e Azmayesh"]
3964 | },
3965 | "Shahrak-e Azmayesh": {
3966 | "name": "Shahrak-e Azmayesh",
3967 | "translations": {"fa": "شهرک آزمایش"},
3968 | "lines": [6],
3969 | "longitude": "51.3660",
3970 | "latitude": "35.7305",
3971 | "address": "بزرگراه شیخ فضل الله نوری، ورودی شهرک آزمایش",
3972 | "colors": ["#EF639F"],
3973 | "disabled": false,
3974 | "wc": false,
3975 | "coffeeShop": false,
3976 | "groceryStore": false,
3977 | "fastFood": false,
3978 | "atm": false,
3979 | "elevator": false,
3980 | "bicycleParking": false,
3981 | "waterCooler": null,
3982 | "cleanFood": false,
3983 | "blindPath": true,
3984 | "fireSuppressionSystem": true,
3985 | "fireExtinguisher": true,
3986 | "metroPolice": true,
3987 | "creditTicketSales": true,
3988 | "waitingChair": true,
3989 | "camera": true,
3990 | "trashCan": true,
3991 | "smoking": false,
3992 | "petsAllowed": false,
3993 | "freeWifi": false,
3994 | "prayerRoom": false,
3995 | "relations": ["Daneshgah-e Tarbiat Modarres","Marzdaran"]
3996 | },
3997 | "Marzdaran": {
3998 | "name": "Marzdaran",
3999 | "translations": {"fa": "مرزداران"},
4000 | "lines": [6],
4001 | "longitude": "51.3525",
4002 | "latitude": "35.7348",
4003 | "address": "بزرگراه یادگار امام، بلوار مرزداران",
4004 | "colors": ["#EF639F"],
4005 | "disabled": false,
4006 | "wc": true,
4007 | "coffeeShop": false,
4008 | "groceryStore": false,
4009 | "fastFood": false,
4010 | "atm": false,
4011 | "elevator": false,
4012 | "bicycleParking": false,
4013 | "waterCooler": null,
4014 | "cleanFood": false,
4015 | "blindPath": true,
4016 | "fireSuppressionSystem": true,
4017 | "fireExtinguisher": true,
4018 | "metroPolice": true,
4019 | "creditTicketSales": true,
4020 | "waitingChair": true,
4021 | "camera": true,
4022 | "trashCan": true,
4023 | "smoking": false,
4024 | "petsAllowed": false,
4025 | "freeWifi": false,
4026 | "prayerRoom": false,
4027 | "relations": ["Shahrak-e Azmayesh","Yadegar-e Imam"]
4028 | },
4029 | "Yadegar-e Imam": {
4030 | "name": "Yadegar-e Imam",
4031 | "translations": {"fa": "یادگار امام"},
4032 | "lines": [6],
4033 | "longitude": "51.3402",
4034 | "latitude": "35.7401",
4035 | "address": "بزرگراه یادگار امام، تقاطع خیابان سازمان آب",
4036 | "colors": ["#EF639F"],
4037 | "disabled": false,
4038 | "wc": false,
4039 | "coffeeShop": false,
4040 | "groceryStore": false,
4041 | "fastFood": false,
4042 | "atm": false,
4043 | "elevator": false,
4044 | "bicycleParking": false,
4045 | "waterCooler": null,
4046 | "cleanFood": false,
4047 | "blindPath": true,
4048 | "fireSuppressionSystem": true,
4049 | "fireExtinguisher": true,
4050 | "metroPolice": true,
4051 | "creditTicketSales": true,
4052 | "waitingChair": true,
4053 | "camera": true,
4054 | "trashCan": true,
4055 | "smoking": false,
4056 | "petsAllowed": false,
4057 | "freeWifi": false,
4058 | "prayerRoom": false,
4059 | "relations": ["Marzdaran","Shahid Ashrafi Esfahani"]
4060 | },
4061 | "Shahid Ashrafi Esfahani": {
4062 | "name": "Shahid Ashrafi Esfahani",
4063 | "translations": {"fa": "شهید اشرفی اصفهانی"},
4064 | "lines": [6],
4065 | "longitude": "51.3287",
4066 | "latitude": "35.7483",
4067 | "address": "بزرگراه شهید اشرفی اصفهانی، تقاطع بزرگراه حکیم",
4068 | "colors": ["#EF639F"],
4069 | "disabled": false,
4070 | "wc": true,
4071 | "coffeeShop": false,
4072 | "groceryStore": false,
4073 | "fastFood": false,
4074 | "atm": false,
4075 | "elevator": false,
4076 | "bicycleParking": false,
4077 | "waterCooler": null,
4078 | "cleanFood": false,
4079 | "blindPath": true,
4080 | "fireSuppressionSystem": true,
4081 | "fireExtinguisher": true,
4082 | "metroPolice": true,
4083 | "creditTicketSales": true,
4084 | "waitingChair": true,
4085 | "camera": true,
4086 | "trashCan": true,
4087 | "smoking": false,
4088 | "petsAllowed": false,
4089 | "freeWifi": false,
4090 | "prayerRoom": false,
4091 | "relations": ["Yadegar-e Imam","Shahid Sattari"]
4092 | },
4093 | "Shahid Sattari": {
4094 | "name": "Shahid Sattari",
4095 | "translations": {"fa": "شهید ستاری"},
4096 | "lines": [6],
4097 | "longitude": "51.3162",
4098 | "latitude": "35.7512",
4099 | "address": "بزرگراه شهید ستاری، تقاطع بزرگراه حکیم",
4100 | "colors": ["#EF639F"],
4101 | "disabled": false,
4102 | "wc": false,
4103 | "coffeeShop": false,
4104 | "groceryStore": false,
4105 | "fastFood": false,
4106 | "atm": false,
4107 | "elevator": false,
4108 | "bicycleParking": false,
4109 | "waterCooler": null,
4110 | "cleanFood": false,
4111 | "blindPath": true,
4112 | "fireSuppressionSystem": true,
4113 | "fireExtinguisher": true,
4114 | "metroPolice": true,
4115 | "creditTicketSales": true,
4116 | "waitingChair": true,
4117 | "camera": true,
4118 | "trashCan": true,
4119 | "smoking": false,
4120 | "petsAllowed": false,
4121 | "freeWifi": false,
4122 | "prayerRoom": false,
4123 | "relations": ["Shahid Ashrafi Esfahani","Ayatollah Kashani"]
4124 | },
4125 | "Ayatollah Kashani": {
4126 | "name": "Ayatollah Kashani",
4127 | "translations": {"fa": "آیتالله کاشانی"},
4128 | "lines": [6],
4129 | "longitude": "51.301673",
4130 | "latitude": "35.741428",
4131 | "colors": ["#EF639F"],
4132 | "disabled": true,
4133 | "elevator": false,
4134 | "bicycleParking": false,
4135 | "waterCooler": null,
4136 | "cleanFood": false,
4137 | "blindPath": true,
4138 | "fireSuppressionSystem": true,
4139 | "fireExtinguisher": true,
4140 | "metroPolice": true,
4141 | "creditTicketSales": true,
4142 | "waitingChair": true,
4143 | "camera": true,
4144 | "trashCan": true,
4145 | "smoking": false,
4146 | "petsAllowed": false,
4147 | "freeWifi": false,
4148 | "prayerRoom": null,
4149 | "relations": ["Shahid Sattari","Shahr-e Ziba","Allameh Jafari","Chaharbagh"]
4150 | },
4151 | "Shahr-e Ziba": {
4152 | "name": "Shahr-e Ziba",
4153 | "translations": {"fa": "شهر زیبا"},
4154 | "lines": [6],
4155 | "longitude": "51.2843",
4156 | "latitude": "35.7437",
4157 | "address": "شهران، بلوار شهرزیبا",
4158 | "colors": ["#EF639F"],
4159 | "disabled": true,
4160 | "wc": false,
4161 | "coffeeShop": false,
4162 | "groceryStore": false,
4163 | "fastFood": false,
4164 | "atm": false,
4165 | "elevator": true,
4166 | "bicycleParking": false,
4167 | "waterCooler": null,
4168 | "cleanFood": false,
4169 | "blindPath": true,
4170 | "fireSuppressionSystem": true,
4171 | "fireExtinguisher": true,
4172 | "metroPolice": true,
4173 | "creditTicketSales": true,
4174 | "waitingChair": true,
4175 | "camera": true,
4176 | "trashCan": true,
4177 | "smoking": false,
4178 | "petsAllowed": false,
4179 | "freeWifi": false,
4180 | "prayerRoom": false,
4181 | "relations": ["Ayatollah Kashani","Shahran"]
4182 | },
4183 | "Shahran": {
4184 | "name": "Shahran",
4185 | "translations": {"fa": "شهران"},
4186 | "lines": [6],
4187 | "longitude": "51.2701",
4188 | "latitude": "35.7585",
4189 | "address": "شهران، میدان الغدیر",
4190 | "colors": ["#EF639F"],
4191 | "disabled": true,
4192 | "wc": false,
4193 | "coffeeShop": false,
4194 | "groceryStore": false,
4195 | "fastFood": false,
4196 | "atm": false,
4197 | "elevator": true,
4198 | "bicycleParking": false,
4199 | "waterCooler": null,
4200 | "cleanFood": false,
4201 | "blindPath": true,
4202 | "fireSuppressionSystem": true,
4203 | "fireExtinguisher": true,
4204 | "metroPolice": true,
4205 | "creditTicketSales": true,
4206 | "waitingChair": true,
4207 | "camera": true,
4208 | "trashCan": true,
4209 | "smoking": false,
4210 | "petsAllowed": false,
4211 | "freeWifi": false,
4212 | "prayerRoom": false,
4213 | "relations": ["Shahr-e Ziba","Shohada-ye Kan"]
4214 | },
4215 | "Shohada-ye Kan": {
4216 | "name": "Shohada-ye Kan",
4217 | "translations": {"fa": "شهدای کن"},
4218 | "lines": [6],
4219 | "longitude": "51.2588",
4220 | "latitude": "35.7693",
4221 | "address": "بزرگراه همت، ورودی کن",
4222 | "colors": ["#EF639F"],
4223 | "disabled": true,
4224 | "wc": false,
4225 | "coffeeShop": false,
4226 | "groceryStore": false,
4227 | "fastFood": false,
4228 | "atm": false,
4229 | "elevator": false,
4230 | "bicycleParking": false,
4231 | "waterCooler": null,
4232 | "cleanFood": false,
4233 | "blindPath": true,
4234 | "fireSuppressionSystem": true,
4235 | "fireExtinguisher": true,
4236 | "metroPolice": true,
4237 | "creditTicketSales": true,
4238 | "waitingChair": true,
4239 | "camera": true,
4240 | "trashCan": true,
4241 | "smoking": false,
4242 | "petsAllowed": false,
4243 | "freeWifi": false,
4244 | "prayerRoom": false,
4245 | "relations": ["Shahran","Kouhsar"]
4246 | },
4247 | "Kouhsar": {
4248 | "name": "Kouhsar",
4249 | "translations": {"fa": "کوهسار"},
4250 | "lines": [6],
4251 | "longitude": "51.2450",
4252 | "latitude": "35.7800",
4253 | "address": "انتهای بزرگراه آبشناسان، شهران شمالی، بلوار کوهسار",
4254 | "colors": ["#EF639F"],
4255 | "disabled": true,
4256 | "wc": false,
4257 | "coffeeShop": false,
4258 | "groceryStore": false,
4259 | "fastFood": false,
4260 | "atm": false,
4261 | "elevator": true,
4262 | "bicycleParking": false,
4263 | "waterCooler": null,
4264 | "cleanFood": false,
4265 | "blindPath": true,
4266 | "fireSuppressionSystem": true,
4267 | "fireExtinguisher": true,
4268 | "metroPolice": true,
4269 | "creditTicketSales": true,
4270 | "waitingChair": true,
4271 | "camera": true,
4272 | "trashCan": true,
4273 | "smoking": false,
4274 | "petsAllowed": false,
4275 | "freeWifi": false,
4276 | "prayerRoom": false,
4277 | "relations": ["Shohada-ye Kan"]
4278 | },
4279 | "Varzeshgah-e Takhti": {
4280 | "name": "Varzeshgah-e Takhti",
4281 | "translations": {"fa": "ورزشگاه تختی"},
4282 | "lines": [7],
4283 | "longitude": "51.5088",
4284 | "latitude": "35.6706",
4285 | "address": "بزرگراه بسیج، جنب ورزشگاه تختی",
4286 | "colors": ["#7F0B74"],
4287 | "disabled": true,
4288 | "wc": false,
4289 | "coffeeShop": false,
4290 | "groceryStore": false,
4291 | "fastFood": false,
4292 | "atm": false,
4293 | "elevator": false,
4294 | "bicycleParking": false,
4295 | "waterCooler": null,
4296 | "cleanFood": false,
4297 | "blindPath": true,
4298 | "fireSuppressionSystem": true,
4299 | "fireExtinguisher": true,
4300 | "metroPolice": true,
4301 | "creditTicketSales": true,
4302 | "waitingChair": true,
4303 | "camera": true,
4304 | "trashCan": true,
4305 | "smoking": false,
4306 | "petsAllowed": false,
4307 | "freeWifi": false,
4308 | "prayerRoom": false,
4309 | "relations": ["Basij"]
4310 | },
4311 | "Basij": {
4312 | "name": "Basij",
4313 | "translations": {"fa": "بسیج"},
4314 | "lines": [7],
4315 | "longitude": "51.489404",
4316 | "latitude": "35.667159",
4317 | "address": "محدوده بزرگراه بسیج - افسریه",
4318 | "colors": ["#7F0B74"],
4319 | "disabled": false,
4320 | "wc": false,
4321 | "coffeeShop": false,
4322 | "groceryStore": false,
4323 | "fastFood": false,
4324 | "atm": false,
4325 | "elevator": true,
4326 | "bicycleParking": true,
4327 | "waterCooler": null,
4328 | "cleanFood": false,
4329 | "blindPath": true,
4330 | "fireSuppressionSystem": true,
4331 | "fireExtinguisher": true,
4332 | "metroPolice": true,
4333 | "creditTicketSales": true,
4334 | "waitingChair": true,
4335 | "camera": true,
4336 | "trashCan": true,
4337 | "smoking": false,
4338 | "petsAllowed": false,
4339 | "freeWifi": false,
4340 | "prayerRoom": true,
4341 | "relations": ["Varzeshgah-e Takhti","Ahang"]
4342 | },
4343 | "Ahang": {
4344 | "name": "Ahang",
4345 | "translations": {"fa": "آهنگ"},
4346 | "lines": [7],
4347 | "longitude": "51.4769",
4348 | "latitude": "35.6681",
4349 | "address": "بزرگراه شهید محلاتی، خیابان آهنگ",
4350 | "colors": ["#7F0B74"],
4351 | "disabled": false,
4352 | "wc": true,
4353 | "coffeeShop": false,
4354 | "groceryStore": false,
4355 | "fastFood": false,
4356 | "atm": false,
4357 | "elevator": false,
4358 | "bicycleParking": false,
4359 | "waterCooler": null,
4360 | "cleanFood": false,
4361 | "blindPath": true,
4362 | "fireSuppressionSystem": true,
4363 | "fireExtinguisher": true,
4364 | "metroPolice": true,
4365 | "creditTicketSales": true,
4366 | "waitingChair": true,
4367 | "camera": true,
4368 | "trashCan": true,
4369 | "smoking": false,
4370 | "petsAllowed": false,
4371 | "freeWifi": false,
4372 | "prayerRoom": false,
4373 | "relations": ["Basij","Chehel Tan-e Doulab"]
4374 | },
4375 | "Chehel Tan-e Doulab": {
4376 | "name": "Chehel Tan-e Doulab",
4377 | "translations": {"fa": "چهل تن دولاب"},
4378 | "lines": [7],
4379 | "longitude": "51.4654",
4380 | "latitude": "35.6742",
4381 | "address": "خیابان پیروزی، خیابان دولاب",
4382 | "colors": ["#7F0B74"],
4383 | "disabled": false,
4384 | "wc": false,
4385 | "coffeeShop": false,
4386 | "groceryStore": false,
4387 | "fastFood": false,
4388 | "atm": false,
4389 | "elevator": false,
4390 | "bicycleParking": false,
4391 | "waterCooler": null,
4392 | "cleanFood": false,
4393 | "blindPath": true,
4394 | "fireSuppressionSystem": true,
4395 | "fireExtinguisher": true,
4396 | "metroPolice": true,
4397 | "creditTicketSales": true,
4398 | "waitingChair": true,
4399 | "camera": true,
4400 | "trashCan": true,
4401 | "smoking": false,
4402 | "petsAllowed": false,
4403 | "freeWifi": false,
4404 | "prayerRoom": false,
4405 | "relations": ["Ahang","Shohada-ye Hefdah-e Shahrivar"]
4406 | },
4407 | "Meydan-e Giyam": {
4408 | "name": "Meydan-e Giyam",
4409 | "translations": {"fa": "میدان قیام"},
4410 | "lines": [7],
4411 | "longitude": "51.4358",
4412 | "latitude": "35.6717",
4413 | "address": "میدان قیام",
4414 | "colors": ["#7F0B74"],
4415 | "disabled": false,
4416 | "wc": true,
4417 | "coffeeShop": false,
4418 | "groceryStore": false,
4419 | "fastFood": false,
4420 | "atm": true,
4421 | "elevator": false,
4422 | "bicycleParking": false,
4423 | "waterCooler": null,
4424 | "cleanFood": false,
4425 | "blindPath": true,
4426 | "fireSuppressionSystem": true,
4427 | "fireExtinguisher": true,
4428 | "metroPolice": true,
4429 | "creditTicketSales": true,
4430 | "waitingChair": true,
4431 | "camera": true,
4432 | "trashCan": true,
4433 | "smoking": false,
4434 | "petsAllowed": false,
4435 | "freeWifi": false,
4436 | "prayerRoom": false,
4437 | "relations": ["Shohada-ye Hefdah-e Shahrivar","Mowlavi"]
4438 | },
4439 | "Mowlavi": {
4440 | "name": "Mowlavi",
4441 | "translations": {"fa": "مولوی"},
4442 | "lines": [7],
4443 | "longitude": "51.4248",
4444 | "latitude": "35.6683",
4445 | "address": "خیابان مولوی، چهارراه مولوی",
4446 | "colors": ["#7F0B74"],
4447 | "disabled": false,
4448 | "wc": true,
4449 | "coffeeShop": false,
4450 | "groceryStore": false,
4451 | "fastFood": false,
4452 | "atm": false,
4453 | "elevator": false,
4454 | "bicycleParking": false,
4455 | "waterCooler": null,
4456 | "cleanFood": false,
4457 | "blindPath": true,
4458 | "fireSuppressionSystem": true,
4459 | "fireExtinguisher": true,
4460 | "metroPolice": true,
4461 | "creditTicketSales": true,
4462 | "waitingChair": true,
4463 | "camera": true,
4464 | "trashCan": true,
4465 | "smoking": false,
4466 | "petsAllowed": false,
4467 | "freeWifi": false,
4468 | "prayerRoom": false,
4469 | "relations": ["Meydan-e Giyam","Meydan-e Mohammadiyeh"]
4470 | },
4471 | "Helal Ahmar": {
4472 | "name": "Helal Ahmar",
4473 | "translations": {"fa": "هلال احمر"},
4474 | "lines": [7],
4475 | "longitude": "51.3969",
4476 | "latitude": "35.6666",
4477 | "address": "خیابان کارگر جنوبی، میدان رازی (گمرک)، خیابان هلال احمر",
4478 | "colors": ["#7F0B74"],
4479 | "disabled": false,
4480 | "wc": true,
4481 | "coffeeShop": false,
4482 | "groceryStore": false,
4483 | "fastFood": false,
4484 | "atm": true,
4485 | "elevator": false,
4486 | "bicycleParking": false,
4487 | "waterCooler": null,
4488 | "cleanFood": false,
4489 | "blindPath": true,
4490 | "fireSuppressionSystem": true,
4491 | "fireExtinguisher": true,
4492 | "metroPolice": true,
4493 | "creditTicketSales": true,
4494 | "waitingChair": true,
4495 | "camera": true,
4496 | "trashCan": true,
4497 | "smoking": false,
4498 | "petsAllowed": false,
4499 | "freeWifi": false,
4500 | "prayerRoom": false,
4501 | "relations": ["Mahdiyeh","Beryanak"]
4502 | },
4503 | "Beryanak": {
4504 | "name": "Beryanak",
4505 | "translations": {"fa": "بریانک"},
4506 | "lines": [7],
4507 | "longitude": "51.3868",
4508 | "latitude": "35.6755",
4509 | "address": "بزرگراه نواب، خیابان بریانک",
4510 | "colors": ["#7F0B74"],
4511 | "disabled": false,
4512 | "wc": true,
4513 | "coffeeShop": false,
4514 | "groceryStore": false,
4515 | "fastFood": false,
4516 | "atm": false,
4517 | "elevator": true,
4518 | "bicycleParking": false,
4519 | "waterCooler": null,
4520 | "cleanFood": false,
4521 | "blindPath": true,
4522 | "fireSuppressionSystem": true,
4523 | "fireExtinguisher": true,
4524 | "metroPolice": true,
4525 | "creditTicketSales": true,
4526 | "waitingChair": true,
4527 | "camera": true,
4528 | "trashCan": true,
4529 | "smoking": false,
4530 | "petsAllowed": false,
4531 | "freeWifi": false,
4532 | "prayerRoom": false,
4533 | "relations": ["Helal Ahmar","Komeyl"]
4534 | },
4535 | "Komeyl": {
4536 | "name": "Komeyl",
4537 | "translations": {"fa": "کمیل"},
4538 | "lines": [7],
4539 | "longitude": "51.380143",
4540 | "latitude": "35.682491",
4541 | "address": "محدوده بزرگراه شهیدنواب صفوی با جنوب خیابان کمیل",
4542 | "colors": ["#7F0B74"],
4543 | "disabled": false,
4544 | "wc": false,
4545 | "coffeeShop": false,
4546 | "groceryStore": false,
4547 | "fastFood": false,
4548 | "atm": false,
4549 | "elevator": false,
4550 | "bicycleParking": true,
4551 | "waterCooler": null,
4552 | "cleanFood": false,
4553 | "blindPath": true,
4554 | "fireSuppressionSystem": true,
4555 | "fireExtinguisher": true,
4556 | "metroPolice": true,
4557 | "creditTicketSales": true,
4558 | "waitingChair": true,
4559 | "camera": true,
4560 | "trashCan": true,
4561 | "smoking": false,
4562 | "petsAllowed": false,
4563 | "freeWifi": false,
4564 | "prayerRoom": false,
4565 | "relations": ["Beryanak","Roudaki"]
4566 | },
4567 | "Roudaki": {
4568 | "name": "Roudaki",
4569 | "translations": {"fa": "رودکی"},
4570 | "lines": [7],
4571 | "longitude": "51.3788",
4572 | "latitude": "35.6897",
4573 | "address": "بزرگراه نواب، تقاطع خیابان رودکی (سلسبیل)",
4574 | "colors": ["#7F0B74"],
4575 | "disabled": false,
4576 | "wc": true,
4577 | "coffeeShop": false,
4578 | "groceryStore": false,
4579 | "fastFood": false,
4580 | "atm": false,
4581 | "elevator": false,
4582 | "bicycleParking": false,
4583 | "waterCooler": null,
4584 | "cleanFood": false,
4585 | "blindPath": true,
4586 | "fireSuppressionSystem": true,
4587 | "fireExtinguisher": true,
4588 | "metroPolice": true,
4589 | "creditTicketSales": true,
4590 | "waitingChair": true,
4591 | "camera": true,
4592 | "trashCan": true,
4593 | "smoking": false,
4594 | "petsAllowed": false,
4595 | "freeWifi": false,
4596 | "prayerRoom": false,
4597 | "relations": ["Komeyl","Shahid Navab-e Safavi"]
4598 | },
4599 | "Modafean-e Salamat": {
4600 | "name": "Modafean-e Salamat",
4601 | "translations": {"fa": "مدافعان سلامت"},
4602 | "lines": [7],
4603 | "longitude": "51.3811",
4604 | "latitude": "35.7134",
4605 | "address": "خیابان ستارخان، جنب بیمارستان امام خمینی",
4606 | "colors": ["#7F0B74"],
4607 | "disabled": false,
4608 | "wc": true,
4609 | "coffeeShop": false,
4610 | "groceryStore": false,
4611 | "fastFood": false,
4612 | "atm": false,
4613 | "elevator": false,
4614 | "bicycleParking": false,
4615 | "waterCooler": null,
4616 | "cleanFood": false,
4617 | "blindPath": true,
4618 | "fireSuppressionSystem": true,
4619 | "fireExtinguisher": true,
4620 | "metroPolice": true,
4621 | "creditTicketSales": true,
4622 | "waitingChair": true,
4623 | "camera": true,
4624 | "trashCan": true,
4625 | "smoking": false,
4626 | "petsAllowed": false,
4627 | "freeWifi": false,
4628 | "prayerRoom": false,
4629 | "relations": ["Towhid","Daneshgah-e Tarbiat Modarres"]
4630 | },
4631 | "Boostan-e Goftegou": {
4632 | "name": "Boostan-e Goftegou",
4633 | "translations": {"fa": "بوستان گفتگو"},
4634 | "lines": [7],
4635 | "longitude": "51.3755",
4636 | "latitude": "35.7388",
4637 | "address": "بزرگراه شهید چمران، جنب بوستان گفتگو",
4638 | "colors": ["#7F0B74"],
4639 | "disabled": false,
4640 | "wc": true,
4641 | "coffeeShop": false,
4642 | "groceryStore": false,
4643 | "fastFood": false,
4644 | "atm": false,
4645 | "elevator": false,
4646 | "bicycleParking": false,
4647 | "waterCooler": null,
4648 | "cleanFood": false,
4649 | "blindPath": true,
4650 | "fireSuppressionSystem": true,
4651 | "fireExtinguisher": true,
4652 | "metroPolice": true,
4653 | "creditTicketSales": true,
4654 | "waitingChair": true,
4655 | "camera": true,
4656 | "trashCan": true,
4657 | "smoking": false,
4658 | "petsAllowed": false,
4659 | "freeWifi": false,
4660 | "prayerRoom": false,
4661 | "relations": ["Daneshgah-e Tarbiat Modarres","Milad Tower"]
4662 | },
4663 | "Milad Tower": {
4664 | "name": "Milad Tower",
4665 | "translations": {"fa": "برج میلاد"},
4666 | "lines": [7],
4667 | "longitude": "51.3750",
4668 | "latitude": "35.7446",
4669 | "address": "بزرگراه شهید حکیم، ورودی برج میلاد",
4670 | "colors": ["#7F0B74"],
4671 | "disabled": false,
4672 | "wc": true,
4673 | "coffeeShop": false,
4674 | "groceryStore": false,
4675 | "fastFood": false,
4676 | "atm": true,
4677 | "elevator": true,
4678 | "bicycleParking": false,
4679 | "waterCooler": null,
4680 | "cleanFood": false,
4681 | "blindPath": true,
4682 | "fireSuppressionSystem": true,
4683 | "fireExtinguisher": true,
4684 | "metroPolice": true,
4685 | "creditTicketSales": true,
4686 | "waitingChair": true,
4687 | "camera": true,
4688 | "trashCan": true,
4689 | "smoking": false,
4690 | "petsAllowed": false,
4691 | "freeWifi": false,
4692 | "prayerRoom": false,
4693 | "relations": ["Boostan-e Goftegou","Meydan-e San'at"]
4694 | },
4695 | "Meydan-e San'at": {
4696 | "name": "Meydan-e San'at",
4697 | "translations": {"fa": "میدان صنعت"},
4698 | "lines": [7],
4699 | "longitude": "51.367808",
4700 | "latitude": "35.754386",
4701 | "address": "محدوده ضلع شمالی میدان صنعت",
4702 | "colors": ["#7F0B74"],
4703 | "disabled": false,
4704 | "wc": false,
4705 | "coffeeShop": false,
4706 | "groceryStore": false,
4707 | "fastFood": true,
4708 | "atm": false,
4709 | "elevator": false,
4710 | "bicycleParking": true,
4711 | "waterCooler": null,
4712 | "cleanFood": true,
4713 | "blindPath": true,
4714 | "fireSuppressionSystem": true,
4715 | "fireExtinguisher": true,
4716 | "metroPolice": true,
4717 | "creditTicketSales": true,
4718 | "waitingChair": true,
4719 | "camera": true,
4720 | "trashCan": true,
4721 | "smoking": false,
4722 | "petsAllowed": false,
4723 | "freeWifi": false,
4724 | "prayerRoom": true,
4725 | "relations": ["Milad Tower","Shahid Dadman"]
4726 | },
4727 | "Shahid Dadman": {
4728 | "name": "Shahid Dadman",
4729 | "translations": {"fa": "شهید دادمان"},
4730 | "lines": [7],
4731 | "longitude": "51.3600",
4732 | "latitude": "35.7653",
4733 | "address": "شهرک غرب، بلوار شهید دادمان",
4734 | "colors": ["#7F0B74"],
4735 | "disabled": false,
4736 | "wc": true,
4737 | "coffeeShop": false,
4738 | "groceryStore": false,
4739 | "fastFood": false,
4740 | "atm": false,
4741 | "elevator": false,
4742 | "bicycleParking": false,
4743 | "waterCooler": null,
4744 | "cleanFood": false,
4745 | "blindPath": true,
4746 | "fireSuppressionSystem": true,
4747 | "fireExtinguisher": true,
4748 | "metroPolice": true,
4749 | "creditTicketSales": true,
4750 | "waitingChair": true,
4751 | "camera": true,
4752 | "trashCan": true,
4753 | "smoking": false,
4754 | "petsAllowed": false,
4755 | "freeWifi": false,
4756 | "prayerRoom": false,
4757 | "relations": ["Meydan-e San'at","Meydan-e Ketab"]
4758 | },
4759 | "Meydan-e Ketab": {
4760 | "name": "Meydan-e Ketab",
4761 | "translations": {"fa": "میدان کتاب"},
4762 | "lines": [7],
4763 | "longitude": "51.3493",
4764 | "latitude": "35.7777",
4765 | "address": "سعادت آباد، میدان کتاب",
4766 | "colors": ["#7F0B74"],
4767 | "disabled": false,
4768 | "wc": true,
4769 | "coffeeShop": false,
4770 | "groceryStore": false,
4771 | "fastFood": true,
4772 | "atm": true,
4773 | "elevator": false,
4774 | "bicycleParking": false,
4775 | "waterCooler": null,
4776 | "cleanFood": true,
4777 | "blindPath": true,
4778 | "fireSuppressionSystem": true,
4779 | "fireExtinguisher": true,
4780 | "metroPolice": true,
4781 | "creditTicketSales": true,
4782 | "waitingChair": true,
4783 | "camera": true,
4784 | "trashCan": true,
4785 | "smoking": false,
4786 | "petsAllowed": false,
4787 | "freeWifi": false,
4788 | "prayerRoom": false,
4789 | "relations": ["Shahid Dadman"]
4790 | }
4791 | }
4792 |
--------------------------------------------------------------------------------