├── .gitignore
├── README.md
└── sample_data
├── task1_explore_data
├── natural_earth
│ ├── ne_10m_admin_0_countries.README.html
│ ├── ne_10m_admin_0_countries.VERSION.txt
│ ├── ne_10m_admin_0_countries.dbf
│ ├── ne_10m_admin_0_countries.prj
│ ├── ne_10m_admin_0_countries.shp
│ └── ne_10m_admin_0_countries.shx
└── readme.md
├── task2_join_data
├── 2018_22_gebieden_1_09.xlsx
├── GEBIEDEN22_EXWATER.json
├── GEBIEDEN22_EXWATER.json.tmp
├── amsterdam.gpkg
├── nationalities_cleaned.csv
└── readme.md
└── task3_analyze_data
├── TRAMMETRO_LIJNEN_2019.json
├── TRAMMETRO_PUNTEN_2019.json
├── osm_bars.geojson
├── osm_pubs.geojson
└── readme.md
/.gitignore:
--------------------------------------------------------------------------------
1 | # Byte-compiled / optimized / DLL files
2 | __pycache__/
3 | *.py[cod]
4 | *$py.class
5 |
6 | # C extensions
7 | *.so
8 |
9 | # Distribution / packaging
10 | .Python
11 | build/
12 | develop-eggs/
13 | dist/
14 | downloads/
15 | eggs/
16 | .eggs/
17 | lib/
18 | lib64/
19 | parts/
20 | sdist/
21 | var/
22 | wheels/
23 | *.egg-info/
24 | .installed.cfg
25 | *.egg
26 | MANIFEST
27 |
28 | # PyInstaller
29 | # Usually these files are written by a python script from a template
30 | # before PyInstaller builds the exe, so as to inject date/other infos into it.
31 | *.manifest
32 | *.spec
33 |
34 | # Installer logs
35 | pip-log.txt
36 | pip-delete-this-directory.txt
37 |
38 | # Unit test / coverage reports
39 | htmlcov/
40 | .tox/
41 | .coverage
42 | .coverage.*
43 | .cache
44 | nosetests.xml
45 | coverage.xml
46 | *.cover
47 | .hypothesis/
48 | .pytest_cache/
49 |
50 | # Translations
51 | *.mo
52 | *.pot
53 |
54 | # Django stuff:
55 | *.log
56 | local_settings.py
57 | db.sqlite3
58 |
59 | # Flask stuff:
60 | instance/
61 | .webassets-cache
62 |
63 | # Scrapy stuff:
64 | .scrapy
65 |
66 | # Sphinx documentation
67 | docs/_build/
68 |
69 | # PyBuilder
70 | target/
71 |
72 | # Jupyter Notebook
73 | .ipynb_checkpoints
74 |
75 | # pyenv
76 | .python-version
77 |
78 | # celery beat schedule file
79 | celerybeat-schedule
80 |
81 | # SageMath parsed files
82 | *.sage.py
83 |
84 | # Environments
85 | .env
86 | .venv
87 | env/
88 | venv/
89 | ENV/
90 | env.bak/
91 | venv.bak/
92 |
93 | # Spyder project settings
94 | .spyderproject
95 | .spyproject
96 |
97 | # Rope project settings
98 | .ropeproject
99 |
100 | # mkdocs documentation
101 | /site
102 |
103 | # mypy
104 | .mypy_cache/
105 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # QGIS tutorial
2 | Want to get started with QGIS, but have no clue what to do?? You're in the right place!
3 |
4 | Originally created for a QGIS workshop held for students in Amsterdam in December 2019, but the materials are open for everyone to use/copy/improve.
5 |
6 | There are three basic tasks with instructions and sample data in the sample_data folder. They do not contain step by step instructions for each, but will give you the necessary input data and a brief description of steps you need to take to do the tasks.
7 |
8 | ## Download QGIS
9 | Before you can find QGIS installers for your OS here:
10 | https://qgis.org/en/site/forusers/download.html
11 |
12 | ## Learn the basics
13 |
14 | Learn the absolute basics with this excellent video:
15 | https://www.youtube.com/watch?v=kCnNWyl9qSE
16 |
17 | Excellent source of basic QGIS tutorials:
18 | https://www.qgistutorials.com/en/
19 |
20 | Another QGIS tutorial from GitHub. Also contains materials for QGIS 3.x:
21 | https://github.com/mltConsEcol/QGIS-Tutorial
22 |
23 | ## Download data
24 | Basic data for administrative areas, borders and topography can be found easily from Natural Earth:
25 | https://www.naturalearthdata.com/
26 |
27 | Data for Amsterdam can be found here:
28 | https://maps.amsterdam.nl/open_geodata/
29 |
30 | Free GIS datasets (What a name, eh?):
31 | https://freegisdata.rtwilson.com/
32 |
33 | OpenStreetMap can be downloaded using a QGIS plugin of your choice (e.g. QuickOSM) or for example from GeoFabrik:
34 | https://download.geofabrik.de/
35 |
36 |
37 |
38 | ## Other useful materials
39 | Need to do some geocoding? Check this site also for other useful materials:
40 | https://github.com/toddmotto/public-apis#geocoding
41 |
42 | Does your data look ugly and incorrect in EPSG:4326? Check this site for an optimal projection:
43 | http://projectionwizard.org/
44 |
45 | Why do I need to care about coordinate systems? This is why:
46 | https://thetruesize.com/
47 |
48 | Watch this video if you want to get a better idea about the possibilities of data analysis and visualisation in QGIS:
49 | https://www.youtube.com/watch?v=a0cVLzbEOig
50 |
51 | For a more advanced user, here's a blog explaining how to do animations using the Time Manager plugin:
52 | https://medium.com/@tjukanov/geogiffery-in-a-nutshell-introduction-to-qgis-time-manager-31bb79f2af19
53 |
54 | ## Ok, but WTF is this GIS thing?
55 | Mapschool.io
56 | https://mapschool.io/
57 |
--------------------------------------------------------------------------------
/sample_data/task1_explore_data/natural_earth/ne_10m_admin_0_countries.README.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
82 |
107 |
108 |
118 |
119 |
120 |
121 |
122 |
123 | «
1:10m Cultural Vectors
124 |
125 |
Admin 0 – Countries
126 |
127 |
138 |
139 |
About
140 |
Countries distinguish between metropolitan (homeland) and independent and semi-independent portions of sovereign states. If you want to see the dependent overseas regions broken out (like in ISO codes, see France for example), use map units instead.
141 |
Each country is coded with a world region that roughly follows the United Nations setup.
142 |
Countries are coded with standard ISO and FIPS codes. French INSEE codes are also included.
143 |
Includes some thematic data from the United Nations (1), U.S. Central Intelligence Agency, and elsewhere.
144 |

145 |
Disclaimer
146 |
Natural Earth Vector draws boundaries of countries according to defacto status. We show who actually controls the situation on the ground. Please feel free to mashup our disputed area themes to match your particular political outlook.
147 |
Known Problems
148 |
None.
149 |
Version History
150 |
151 | -
152 | 2.0.0
153 |
154 | -
155 | 1.4.0
156 |
157 | -
158 | 1.3.0
159 |
160 | -
161 | 1.3
162 |
163 | -
164 | 1.0.0
165 |
166 |
167 |
168 |
The master changelog is available on Github »
169 |
170 |
171 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
214 |
215 |
216 |
217 |
218 |
280 |
281 |
282 |
286 |
291 |
292 |
298 |
299 |
300 |
301 |
--------------------------------------------------------------------------------
/sample_data/task1_explore_data/natural_earth/ne_10m_admin_0_countries.VERSION.txt:
--------------------------------------------------------------------------------
1 | 2.0.0
--------------------------------------------------------------------------------
/sample_data/task1_explore_data/natural_earth/ne_10m_admin_0_countries.dbf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tjukanovt/QGIS-tutorial/0604645f08e31ff1e1ab0d0a343ee229dd25df7b/sample_data/task1_explore_data/natural_earth/ne_10m_admin_0_countries.dbf
--------------------------------------------------------------------------------
/sample_data/task1_explore_data/natural_earth/ne_10m_admin_0_countries.prj:
--------------------------------------------------------------------------------
1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]]
--------------------------------------------------------------------------------
/sample_data/task1_explore_data/natural_earth/ne_10m_admin_0_countries.shp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tjukanovt/QGIS-tutorial/0604645f08e31ff1e1ab0d0a343ee229dd25df7b/sample_data/task1_explore_data/natural_earth/ne_10m_admin_0_countries.shp
--------------------------------------------------------------------------------
/sample_data/task1_explore_data/natural_earth/ne_10m_admin_0_countries.shx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tjukanovt/QGIS-tutorial/0604645f08e31ff1e1ab0d0a343ee229dd25df7b/sample_data/task1_explore_data/natural_earth/ne_10m_admin_0_countries.shx
--------------------------------------------------------------------------------
/sample_data/task1_explore_data/readme.md:
--------------------------------------------------------------------------------
1 | # Task description
2 | Purpose of this task is to get familiar with basic functionalities of QGIS and the user interface. You should add the Natural Earth Shapefile containing countries to the QGIS canvas using Data Source Manager. You should also explore the attributes of the file and change the style of the file.
3 |
4 | You can find instructions for basic vector styling [here](https://www.qgistutorials.com/en/docs/3/basic_vector_styling.html).
5 |
6 | What is a Shapefile and what are the other files that come with it? It's probably the most established vector format in GIS. It has some obvious drwabacks (size limit, NULL handling etc.), but it is very important to know how to handle themm. You can read more about it from [Mapschool.io](https://mapschool.io/).
7 |
--------------------------------------------------------------------------------
/sample_data/task2_join_data/2018_22_gebieden_1_09.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tjukanovt/QGIS-tutorial/0604645f08e31ff1e1ab0d0a343ee229dd25df7b/sample_data/task2_join_data/2018_22_gebieden_1_09.xlsx
--------------------------------------------------------------------------------
/sample_data/task2_join_data/amsterdam.gpkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tjukanovt/QGIS-tutorial/0604645f08e31ff1e1ab0d0a343ee229dd25df7b/sample_data/task2_join_data/amsterdam.gpkg
--------------------------------------------------------------------------------
/sample_data/task2_join_data/nationalities_cleaned.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tjukanovt/QGIS-tutorial/0604645f08e31ff1e1ab0d0a343ee229dd25df7b/sample_data/task2_join_data/nationalities_cleaned.csv
--------------------------------------------------------------------------------
/sample_data/task2_join_data/readme.md:
--------------------------------------------------------------------------------
1 | # Task description
2 | Ability to join data from different sources is one of the basic operations in GIS. You can do table joins and spatial joins. In this task you can join population data with city districts. The GEBIEDEN22_EXWATER.json GeoJSON file contains 22 city ditrict boundaries and the xlsx file contains number of foreign nationalities living in those districts. The file has been cleaned for easier joining to a csv file.
3 |
4 | You should add the districts to QGIS and join it with the cleaned csv file. Then you should normalize a population field of your choice with the total population of the districts using Field Calculator to get the exact percentage share of that nationality in each districts. From these results you should create a coropleth map.
5 |
6 | Data originated from [here](https://maps.amsterdam.nl/open_geodata/).
7 |
8 | A lengthy and detailed step-by-step guide on how to do a table join can be found [here](https://www.qgistutorials.com/en/docs/3/performing_table_joins.html)
9 |
--------------------------------------------------------------------------------
/sample_data/task3_analyze_data/TRAMMETRO_LIJNEN_2019.json:
--------------------------------------------------------------------------------
1 | {"type":"FeatureCollection","features":[{"id":1,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.854874,52.380557],[4.855436,52.380224],[4.85591,52.379889],[4.856322,52.379557],[4.85665,52.37923],[4.857095,52.378679],[4.857384,52.378252],[4.857455,52.378118],[4.857551,52.377932],[4.857684,52.377585],[4.858539,52.374848],[4.858565,52.374684],[4.858603,52.374512],[4.859065,52.373036],[4.859247,52.372457],[4.859319,52.372268],[4.859483,52.371764],[4.859521,52.371696],[4.859587,52.371631],[4.859669,52.371581],[4.859767,52.371538],[4.859972,52.371493]]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19}},{"id":2,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.877704,52.368726],[4.877826,52.368741],[4.877913,52.368737],[4.878002,52.368723],[4.878097,52.36868],[4.878181,52.368617]]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07"}},{"id":3,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.878628,52.378388],[4.877977,52.378543]]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 5","Lijn_select":"03|05"}},{"id":4,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.902182,52.377592],[4.902224,52.377569],[4.902265,52.377527],[4.902298,52.377484],[4.902308,52.377423],[4.902296,52.377357],[4.90225,52.377257]]},"properties":{"Modaliteit":"Tram","Lijn":"4 | 14 | 24","Lijn_select":"04|14|24"}},{"id":5,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.914325,52.362481],[4.914471,52.36248],[4.914581,52.362458],[4.914686,52.362403],[4.914742,52.362346],[4.91528,52.361381],[4.915919,52.360253],[4.916135,52.359912],[4.916468,52.359445],[4.916648,52.359173]]},"properties":{"Modaliteit":"Tram","Lijn":1,"Lijn_select":"01"}},{"id":6,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.932211,52.361204],[4.932326,52.361156],[4.932398,52.361078],[4.932489,52.360918],[4.932868,52.36049],[4.933007,52.360372],[4.933181,52.360219],[4.93331,52.360177],[4.933385,52.360173],[4.933442,52.360177],[4.933552,52.360203],[4.93393,52.360378],[4.93401,52.360425],[4.934055,52.360474],[4.934078,52.360541],[4.934091,52.360971],[4.934064,52.361039],[4.934014,52.361095],[4.933922,52.361141],[4.933724,52.361186]]},"properties":{"Modaliteit":"Tram","Lijn":1,"Lijn_select":"01"}},{"id":7,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.933724,52.361186],[4.936061,52.361163],[4.936244,52.361169],[4.936535,52.361195],[4.940099,52.361691]]},"properties":{"Modaliteit":"Tram","Lijn":3,"Lijn_select":"03"}},{"id":8,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.890974,52.359805],[4.891025,52.360066],[4.891154,52.360466],[4.891332,52.36097],[4.891543,52.361572],[4.891634,52.361832],[4.891693,52.361982],[4.891778,52.362178],[4.891857,52.362409],[4.892417,52.364021],[4.892874,52.365323],[4.893119,52.366058],[4.89322,52.366482],[4.893264,52.366687],[4.893314,52.366785],[4.893489,52.367008],[4.893544,52.367103]]},"properties":{"Modaliteit":"Tram","Lijn":24,"Lijn_select":24}},{"id":9,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.902182,52.377592],[4.902728,52.377395],[4.902948,52.377336]]},"properties":{"Modaliteit":"Tram","Lijn":26,"Lijn_select":26}},{"id":10,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.902948,52.377336],[4.902718,52.377363],[4.902551,52.377355],[4.902376,52.37732],[4.90225,52.377257]]},"properties":{"Modaliteit":"Tram","Lijn":26,"Lijn_select":26}},{"id":11,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.875857,52.37202],[4.875871,52.372103],[4.87594,52.372187],[4.876004,52.372235]]},"properties":{"Modaliteit":"Tram","Lijn":17,"Lijn_select":17}},{"id":12,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.875857,52.37202],[4.87587,52.371902],[4.875925,52.371814],[4.876926,52.370408],[4.877213,52.369999],[4.877447,52.369643],[4.877884,52.369034]]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 17 | 19","Lijn_select":"05|17|19"}},{"id":13,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.877884,52.369034],[4.878181,52.368617]]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 19","Lijn_select":"05|19"}},{"id":14,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.877884,52.369034],[4.87791,52.368969],[4.877912,52.368918],[4.877899,52.368866],[4.877847,52.368805],[4.877799,52.368767],[4.877704,52.368726]]},"properties":{"Modaliteit":"Tram","Lijn":17,"Lijn_select":17}},{"id":15,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.878725,52.357929],[4.878692,52.358013],[4.878698,52.358067],[4.87873,52.35813],[4.878791,52.358181],[4.878895,52.358231]]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 12","Lijn_select":"05|12"}},{"id":16,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.880846,52.363057],[4.880752,52.36298],[4.880696,52.362909],[4.880664,52.362823],[4.880664,52.36273],[4.880704,52.362646],[4.880887,52.362419],[4.880977,52.362335],[4.881092,52.362261],[4.882115,52.361771],[4.882219,52.361694],[4.882309,52.361596],[4.88322,52.360333],[4.883302,52.360148],[4.883599,52.359737],[4.883624,52.359656],[4.883618,52.359588],[4.883568,52.359524],[4.883499,52.359473],[4.88337,52.359428],[4.878895,52.358231]]},"properties":{"Modaliteit":"Tram","Lijn":"2 | 5 | 12","Lijn_select":"02|05|12"}},{"id":17,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.859972,52.371493],[4.860661,52.371357],[4.861528,52.371202],[4.862966,52.370929],[4.863212,52.370864],[4.86338,52.370795],[4.86393,52.370531],[4.864104,52.37045],[4.865263,52.370051],[4.865413,52.37002],[4.865627,52.369991],[4.865867,52.369983],[4.866084,52.369998],[4.866297,52.370037],[4.866931,52.370178],[4.867395,52.37027],[4.868107,52.370432],[4.868657,52.370557],[4.869194,52.37069],[4.869873,52.370839],[4.870007,52.370867]]},"properties":{"Modaliteit":"Tram","Lijn":"13 | 19","Lijn_select":"13|19"}},{"id":18,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.818906,52.375985],[4.818938,52.375993],[4.818973,52.376],[4.819058,52.37601],[4.819153,52.376005],[4.819249,52.375984],[4.819318,52.375953],[4.819383,52.375909]]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13}},{"id":19,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.819383,52.375909],[4.819309,52.375986],[4.819278,52.376025],[4.819259,52.376069],[4.819252,52.376111],[4.819261,52.376169],[4.819262,52.37624]]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07"}},{"id":20,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.853346,52.35898],[4.853237,52.358794],[4.853144,52.3587],[4.852949,52.358548],[4.852441,52.358167],[4.852318,52.358105],[4.852076,52.358062]]},"properties":{"Modaliteit":"Tram","Lijn":17,"Lijn_select":17}},{"id":21,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.876907,52.347091],[4.877187,52.348886],[4.877219,52.348988],[4.877281,52.349093],[4.877375,52.349193],[4.878564,52.350277],[4.878657,52.350381],[4.87872,52.350486],[4.879104,52.351298],[4.879155,52.351363],[4.879206,52.351412],[4.879278,52.351465],[4.879359,52.351511],[4.882159,52.352689]]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 24","Lijn_select":"05|24"}},{"id":22,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.890818,52.352743],[4.890944,52.352779],[4.891011,52.352816],[4.891053,52.352858],[4.891073,52.352916],[4.89107,52.352995],[4.890994,52.353206],[4.890899,52.353466],[4.890806,52.353668],[4.890723,52.353905],[4.890628,52.354132],[4.890509,52.354408],[4.890407,52.35467],[4.890344,52.354842],[4.890328,52.354926],[4.890336,52.35501],[4.890335,52.355081],[4.890376,52.35527],[4.890457,52.355489],[4.890478,52.355595],[4.890706,52.357066],[4.890753,52.357369],[4.890854,52.358027],[4.890895,52.358705]]},"properties":{"Modaliteit":"Tram","Lijn":24,"Lijn_select":24}},{"id":23,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.882729,52.35278],[4.883013,52.352679],[4.883385,52.352554],[4.883636,52.352488],[4.884027,52.352405],[4.884411,52.352356],[4.886158,52.352237],[4.886763,52.352225],[4.887016,52.352233],[4.890818,52.352743]]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 12 | 24","Lijn_select":"03|12|24"}},{"id":24,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.90491,52.346239],[4.904163,52.346131]]},"properties":{"Modaliteit":"Tram","Lijn":"4 | 12","Lijn_select":"04|12"}},{"id":25,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.893544,52.367103],[4.893584,52.367025],[4.893613,52.366972],[4.893692,52.366906],[4.893794,52.366858],[4.895758,52.36629],[4.895942,52.366254],[4.896111,52.366238],[4.896578,52.366238],[4.897097,52.36624]]},"properties":{"Modaliteit":"Tram","Lijn":"4 | 14","Lijn_select":"04|14"}},{"id":26,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.89858,52.37696],[4.898541,52.376995],[4.898509,52.377026],[4.898485,52.377063],[4.898473,52.377106],[4.898473,52.377142],[4.898486,52.377187],[4.898507,52.377227]]},"properties":{"Modaliteit":"Tram","Lijn":26,"Lijn_select":26}},{"id":27,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.898507,52.377227],[4.898105,52.376918]]},"properties":{"Modaliteit":"Tram","Lijn":"4 | 14 | 24","Lijn_select":"04|14|24"}},{"id":28,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.90225,52.377257],[4.90219,52.377167],[4.90214,52.377075],[4.902091,52.377027],[4.902039,52.376992],[4.901974,52.376966],[4.901903,52.376946],[4.901778,52.376934],[4.901497,52.376918],[4.900401,52.376802],[4.899157,52.376741],[4.899042,52.376747],[4.898936,52.376771],[4.898849,52.376806],[4.898579,52.376961]]},"properties":{"Modaliteit":"Tram","Lijn":"4 | 14 | 24 | 26","Lijn_select":"04|14|24|26"}},{"id":29,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.89858,52.37696],[4.898477,52.376981],[4.898404,52.376987],[4.898328,52.376984],[4.898259,52.376971],[4.898211,52.376957],[4.898105,52.376918]]},"properties":{"Modaliteit":"Tram","Lijn":"4 | 14 | 24","Lijn_select":"04|14|24"}},{"id":30,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.922897,52.363112],[4.922977,52.363113],[4.923037,52.363119],[4.923089,52.363127],[4.923135,52.36314],[4.923177,52.363157],[4.923216,52.363177],[4.923251,52.3632],[4.923278,52.363226],[4.92331,52.363274],[4.923319,52.363308],[4.923319,52.363353],[4.923313,52.363383]]},"properties":{"Modaliteit":"Tram","Lijn":14,"Lijn_select":14}},{"id":31,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.923267,52.363472],[4.923215,52.363528],[4.923119,52.363583],[4.923007,52.363609],[4.922871,52.363611],[4.922766,52.363588],[4.922671,52.363546]]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19}},{"id":32,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.923267,52.363472],[4.923313,52.363383]]},"properties":{"Modaliteit":"Tram","Lijn":"14 | 19","Lijn_select":"14|19"}},{"id":33,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.923296,52.363969],[4.923186,52.363921],[4.923109,52.363866],[4.923027,52.363792],[4.922897,52.363692],[4.922671,52.363546]]},"properties":{"Modaliteit":"Tram","Lijn":14,"Lijn_select":14}},{"id":34,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.923549,52.362861],[4.923473,52.362927],[4.923406,52.362983],[4.923326,52.363028],[4.923237,52.363064],[4.923134,52.363091],[4.923019,52.363107],[4.922897,52.363112]]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19}},{"id":35,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.922897,52.363112],[4.921632,52.363072],[4.921432,52.363079]]},"properties":{"Modaliteit":"Tram","Lijn":"14 | 19","Lijn_select":"14|19"}},{"id":36,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.902182,52.377592],[4.90201,52.377658],[4.901866,52.377685],[4.900792,52.377819],[4.900624,52.37783],[4.900401,52.377848],[4.899936,52.377886],[4.899829,52.377889],[4.89972,52.377885],[4.899604,52.377868],[4.899514,52.377843],[4.899394,52.377795],[4.899251,52.37772],[4.899049,52.377612],[4.898917,52.377522],[4.898683,52.37736],[4.898507,52.377227]]},"properties":{"Modaliteit":"Tram","Lijn":"4 | 14 | 24 | 26","Lijn_select":"04|14|24|26"}},{"id":37,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.896943,52.378003],[4.897086,52.378075],[4.897223,52.378186],[4.897933,52.378805],[4.898003,52.378845],[4.898117,52.378875],[4.898246,52.378875],[4.898405,52.378829],[4.898563,52.378758],[4.898831,52.378595],[4.899025,52.37845],[4.899146,52.378334],[4.899259,52.378191],[4.8993,52.378106],[4.899297,52.378021],[4.899214,52.377909],[4.898862,52.37766],[4.898789,52.37762],[4.898721,52.377596],[4.898639,52.377581],[4.898565,52.377578],[4.898489,52.377584],[4.898421,52.377599],[4.898327,52.377636],[4.898105,52.377754],[4.897905,52.377891],[4.897733,52.377978],[4.897588,52.378015],[4.897441,52.378028],[4.897265,52.378032],[4.897115,52.378029],[4.896946,52.378003]]},"properties":{"Modaliteit":"Tram","Lijn":"2 | 11 | 12 | 13 | 17","Lijn_select":"02|11|12|13|17"}},{"id":38,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.890974,52.359805],[4.890954,52.359746],[4.890907,52.359696],[4.890845,52.359647],[4.890711,52.359573],[4.890691,52.359562],[4.890592,52.359507],[4.890501,52.359456],[4.890464,52.359426],[4.890423,52.359375],[4.890405,52.359319],[4.890402,52.359252],[4.890425,52.359187],[4.89047,52.359133],[4.890554,52.359072],[4.890591,52.359047],[4.890767,52.358929],[4.890824,52.358875],[4.890864,52.358808],[4.890876,52.35875],[4.890895,52.358705]]},"properties":{"Modaliteit":"Tram","Lijn":24,"Lijn_select":24}},{"id":39,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.890895,52.358705],[4.890919,52.35875],[4.890952,52.358828],[4.890985,52.358868],[4.891042,52.358913],[4.891247,52.359034],[4.891345,52.359092],[4.8914,52.359137],[4.891439,52.359193],[4.891452,52.359243],[4.891441,52.359309],[4.891389,52.35938],[4.891222,52.359494],[4.891164,52.359533],[4.89115,52.359544],[4.891053,52.359613],[4.891007,52.35967],[4.890983,52.359735],[4.890974,52.359805]]},"properties":{"Modaliteit":"Tram","Lijn":24,"Lijn_select":24}},{"id":40,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.875857,52.37202],[4.875856,52.372196],[4.87587,52.372554],[4.876317,52.374069],[4.876393,52.374241],[4.876562,52.374504],[4.876734,52.374724],[4.877756,52.376345],[4.878553,52.377608],[4.878863,52.378084],[4.878889,52.378166],[4.878868,52.378228],[4.878841,52.378275],[4.878764,52.378335],[4.878628,52.378388]]},"properties":{"Modaliteit":"Tram","Lijn":5,"Lijn_select":"05"}},{"id":41,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.933724,52.361186],[4.933198,52.361192],[4.932211,52.361204],[4.930442,52.361217],[4.930213,52.361202],[4.929987,52.361167],[4.929373,52.361013],[4.925703,52.36009],[4.925426,52.360033],[4.9253,52.360012],[4.924944,52.359936],[4.923648,52.359606],[4.917918,52.358173],[4.917725,52.358124],[4.917605,52.358105],[4.917473,52.358123],[4.91736,52.358163],[4.917282,52.358236],[4.917045,52.358583],[4.916648,52.359173]]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 3","Lijn_select":"01|03"}},{"id":42,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.940099,52.361691],[4.939931,52.361684],[4.939849,52.361698],[4.939747,52.361744],[4.939682,52.361814],[4.939617,52.361978],[4.939593,52.362064],[4.939582,52.362181],[4.93955,52.363551],[4.939539,52.363632],[4.939496,52.363716],[4.939414,52.363791],[4.939281,52.363855],[4.937672,52.364321],[4.937306,52.364427],[4.933582,52.365522],[4.932802,52.365758],[4.932681,52.365806],[4.932576,52.365848],[4.932282,52.365989],[4.932188,52.366024],[4.932094,52.366047],[4.932006,52.366055],[4.929548,52.365982],[4.928602,52.365955],[4.927677,52.365919],[4.927025,52.365893],[4.926887,52.365878],[4.926749,52.365849],[4.926599,52.365799],[4.925788,52.36537],[4.924827,52.364904],[4.924612,52.364778],[4.923296,52.363969],[4.923246,52.36392],[4.923195,52.363879],[4.923165,52.363842],[4.923147,52.363809],[4.923137,52.363766],[4.923144,52.363722],[4.923163,52.363666],[4.923211,52.363576],[4.923267,52.363472]]},"properties":{"Modaliteit":"Tram","Lijn":14,"Lijn_select":14}},{"id":43,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.969162,52.336646],[4.969346,52.336654],[4.969485,52.336634],[4.970191,52.336432],[4.970273,52.336405],[4.970373,52.336387],[4.97047,52.336389],[4.97059,52.336419],[4.970658,52.336469],[4.970729,52.336548],[4.970776,52.336628],[4.970792,52.336695],[4.970781,52.336765],[4.970739,52.336818],[4.970679,52.336855],[4.970606,52.336886],[4.970521,52.336907],[4.970417,52.336922],[4.970308,52.336913],[4.970117,52.336873],[4.969582,52.336757],[4.969407,52.336718],[4.969162,52.336646],[4.968967,52.336628],[4.968757,52.336666],[4.966413,52.337355],[4.966031,52.337448],[4.965745,52.337491],[4.963875,52.337772],[4.963358,52.337862],[4.962195,52.338084],[4.961808,52.338165],[4.960457,52.338484],[4.960215,52.338533],[4.959982,52.338565],[4.959327,52.338631],[4.958757,52.338735],[4.958641,52.338756],[4.957648,52.338937],[4.955788,52.339297],[4.955485,52.339371],[4.954913,52.339537],[4.954538,52.339604],[4.954353,52.339638],[4.953915,52.339733],[4.953559,52.339831],[4.953181,52.339968],[4.952725,52.340153],[4.95219,52.340419],[4.950859,52.341157],[4.949731,52.341772],[4.948891,52.34229],[4.947654,52.343068],[4.940195,52.347752],[4.938981,52.348489],[4.938006,52.349089],[4.935169,52.350853],[4.933356,52.35198],[4.930968,52.353483],[4.930576,52.353729],[4.92945,52.354453],[4.928539,52.35505],[4.928436,52.355126],[4.928304,52.355249],[4.928228,52.355334],[4.928135,52.355467],[4.927732,52.356106],[4.927544,52.35641],[4.927373,52.356726],[4.927082,52.357207],[4.926598,52.357964],[4.926288,52.358462],[4.925463,52.359767],[4.9253,52.360012],[4.925094,52.360285],[4.924193,52.361512],[4.924077,52.361714],[4.923985,52.361913],[4.923549,52.362861],[4.923518,52.362991],[4.923395,52.363224],[4.923313,52.363383]]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19}},{"id":44,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.884533,52.386251],[4.884525,52.38631],[4.884505,52.386353],[4.884473,52.38639],[4.884436,52.386419],[4.884383,52.386443],[4.884323,52.386461],[4.884236,52.386479],[4.884162,52.386494],[4.884099,52.386516],[4.884052,52.386544],[4.884009,52.386584],[4.883987,52.386633],[4.883988,52.386671],[4.884004,52.386721],[4.884316,52.387186],[4.884394,52.387322],[4.884724,52.387973],[4.884757,52.388014],[4.884819,52.388055],[4.884896,52.388081],[4.884974,52.388092],[4.885066,52.388091],[4.885244,52.388061],[4.885382,52.388037],[4.885486,52.388005],[4.885567,52.387945],[4.885605,52.387875],[4.8856,52.387808],[4.884863,52.386704],[4.884762,52.386555],[4.884616,52.386339],[4.884533,52.386251],[4.884367,52.385997],[4.884223,52.385837],[4.883964,52.385446],[4.883762,52.385257],[4.883593,52.385038],[4.883421,52.384815],[4.883278,52.384671],[4.883117,52.38453],[4.882995,52.384388],[4.882852,52.384176],[4.88277,52.38404],[4.88268,52.383955],[4.882512,52.3838],[4.882435,52.383706],[4.882271,52.383407],[4.881063,52.381492],[4.880685,52.380893],[4.879162,52.378497],[4.879062,52.378419],[4.878981,52.378386],[4.878889,52.378368],[4.878764,52.378365],[4.878628,52.378388]]},"properties":{"Modaliteit":"Tram","Lijn":3,"Lijn_select":"03"}},{"id":45,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.95264,52.365291],[4.952759,52.365341],[4.952831,52.365386],[4.952877,52.365435],[4.952905,52.365493],[4.952936,52.365638],[4.952967,52.36569],[4.953009,52.365737],[4.953074,52.365778],[4.953141,52.365802],[4.953227,52.365822],[4.953488,52.365857],[4.953572,52.36586],[4.95365,52.365853],[4.953741,52.365831],[4.953803,52.365809],[4.953848,52.365785],[4.95389,52.365751],[4.953917,52.365709],[4.953928,52.365658],[4.95392,52.365605],[4.953901,52.365564],[4.953871,52.365522],[4.953824,52.365482],[4.953763,52.365447],[4.953696,52.365426],[4.953608,52.365408],[4.952916,52.365314],[4.95264,52.365291],[4.951976,52.3652],[4.951403,52.365166],[4.950956,52.365139],[4.948327,52.365168],[4.948244,52.365158],[4.948161,52.365139],[4.948028,52.365072],[4.947848,52.364949],[4.947766,52.364864],[4.94767,52.364766],[4.947561,52.364584],[4.946981,52.363018],[4.946898,52.362842],[4.946792,52.362735],[4.94666,52.362653],[4.946498,52.362595],[4.946342,52.362566],[4.943732,52.362201],[4.940099,52.361691]]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 14","Lijn_select":"03|14"}},{"id":46,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.916648,52.359173],[4.916588,52.359228],[4.916492,52.359273],[4.916358,52.359295],[4.916198,52.359277],[4.91566,52.359141],[4.915529,52.359085],[4.915442,52.35902],[4.915241,52.358826],[4.915156,52.358768],[4.915062,52.358726],[4.91377,52.358394],[4.913607,52.35835],[4.912928,52.358168],[4.911427,52.357793],[4.909563,52.357317],[4.909048,52.357185],[4.908023,52.356924],[4.907204,52.356723],[4.90708,52.356687],[4.90701,52.356641],[4.90696,52.356583],[4.90694,52.356485],[4.906915,52.356385],[4.906884,52.356336],[4.906808,52.356291],[4.906711,52.356258],[4.904968,52.35597],[4.904721,52.355914],[4.903144,52.35541],[4.901248,52.354817],[4.900935,52.354718],[4.899443,52.354255],[4.899107,52.354171],[4.898791,52.354106],[4.895882,52.353525],[4.895586,52.353456],[4.89526,52.353382],[4.894586,52.353249],[4.89148,52.352832],[4.890818,52.352743]]},"properties":{"Modaliteit":"Tram","Lijn":3,"Lijn_select":"03"}},{"id":47,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.904163,52.346131],[4.903964,52.346138],[4.903826,52.34616],[4.903674,52.346201],[4.903176,52.346402],[4.902832,52.346504],[4.902552,52.346552],[4.902235,52.346584],[4.899977,52.346691],[4.895131,52.346933],[4.891326,52.347126],[4.891228,52.34715],[4.891177,52.347195],[4.891163,52.347234],[4.891167,52.347339],[4.891448,52.349447],[4.891548,52.350191],[4.891597,52.350552],[4.891581,52.35072],[4.89138,52.351317],[4.891359,52.351439],[4.891384,52.352017],[4.891353,52.35214],[4.8912,52.352579],[4.891165,52.352638],[4.891125,52.352681],[4.89107,52.352712],[4.891009,52.352734],[4.890929,52.352744],[4.890818,52.352743]]},"properties":{"Modaliteit":"Tram","Lijn":12,"Lijn_select":12}},{"id":48,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.90491,52.346239],[4.910983,52.34709],[4.917352,52.347981],[4.917581,52.347988],[4.918454,52.347847],[4.918614,52.347804],[4.918703,52.347747],[4.918762,52.347688],[4.919201,52.346971],[4.919508,52.346472],[4.919556,52.346292],[4.919607,52.346163],[4.919641,52.346006],[4.91966,52.345954],[4.919709,52.345906],[4.919748,52.345879],[4.919813,52.345851],[4.919887,52.345833],[4.919962,52.345827],[4.92005,52.345831],[4.920197,52.345881],[4.920276,52.345952],[4.920295,52.346037],[4.920285,52.346087],[4.920221,52.346161],[4.920166,52.346191],[4.919803,52.346335],[4.919508,52.346472]]},"properties":{"Modaliteit":"Tram","Lijn":12,"Lijn_select":12}},{"id":49,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.90491,52.346239],[4.905066,52.346286],[4.905134,52.346345],[4.90517,52.346405],[4.905159,52.346491],[4.904198,52.349062],[4.903971,52.349669],[4.903214,52.351682],[4.903141,52.351878],[4.902841,52.352731],[4.902731,52.352947],[4.902607,52.353166],[4.902525,52.353286],[4.901884,52.354044],[4.901658,52.354288],[4.90146,52.354525],[4.901248,52.354817],[4.901111,52.355007],[4.900784,52.35543],[4.900602,52.355633],[4.900054,52.356323],[4.899831,52.356608],[4.89977,52.356704],[4.899357,52.357629],[4.899304,52.357772],[4.899207,52.358274],[4.899192,52.35835],[4.899152,52.358488],[4.89881,52.35927],[4.898767,52.359376],[4.898752,52.359459],[4.898761,52.359518],[4.898807,52.359631],[4.898963,52.35981],[4.899461,52.360385],[4.899526,52.360468],[4.899558,52.36054],[4.899567,52.360597],[4.899553,52.360685],[4.899411,52.360981],[4.899063,52.361862],[4.899042,52.361976],[4.898988,52.362116],[4.898922,52.362285],[4.898857,52.362386],[4.898667,52.362866],[4.898421,52.363509],[4.898365,52.363658],[4.898301,52.363833],[4.898258,52.363949],[4.898204,52.364077],[4.897862,52.364957],[4.8978,52.365116],[4.89777,52.365193],[4.897763,52.365275],[4.897756,52.365356],[4.89748,52.366072],[4.897403,52.366151],[4.897309,52.366201],[4.897203,52.366228],[4.897097,52.36624]]},"properties":{"Modaliteit":"Tram","Lijn":4,"Lijn_select":"04"}},{"id":50,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.904163,52.346131],[4.904053,52.346097],[4.903926,52.346043],[4.903788,52.345947],[4.903399,52.345553],[4.90331,52.345475],[4.903195,52.345401],[4.903056,52.345335],[4.900816,52.344523],[4.896595,52.342993],[4.893815,52.341985],[4.893657,52.341936],[4.893475,52.341908],[4.893233,52.341895],[4.893045,52.341904],[4.892855,52.341912],[4.892695,52.341907],[4.892585,52.341881],[4.892517,52.341846],[4.892457,52.341797],[4.892423,52.341743],[4.892408,52.341666],[4.892231,52.340244],[4.891929,52.33776],[4.891892,52.33768],[4.89182,52.337608],[4.891703,52.33754],[4.891188,52.337316],[4.890965,52.337173],[4.890896,52.337123],[4.890729,52.337],[4.890167,52.336589],[4.889749,52.336194],[4.889677,52.336151],[4.889586,52.336124],[4.889453,52.336117],[4.889327,52.336143],[4.889229,52.336199],[4.889176,52.336274],[4.889179,52.336356],[4.889216,52.336413],[4.889307,52.336473],[4.889391,52.336498],[4.889503,52.336507],[4.889747,52.336487],[4.889856,52.336487],[4.889947,52.336499],[4.890038,52.33653],[4.890167,52.336589]]},"properties":{"Modaliteit":"Tram","Lijn":4,"Lijn_select":"04"}},{"id":51,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.882167,52.353049],[4.88222,52.352967],[4.882254,52.352909],[4.882265,52.352862],[4.88226,52.352819],[4.882233,52.352765],[4.882204,52.352728],[4.882159,52.352689]]},"properties":{"Modaliteit":"Tram","Lijn":5,"Lijn_select":"05"}},{"id":52,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.882159,52.352689],[4.882302,52.352746],[4.882383,52.352774],[4.882454,52.352791],[4.88254,52.352798],[4.882636,52.352797],[4.882729,52.35278]]},"properties":{"Modaliteit":"Tram","Lijn":24,"Lijn_select":24}},{"id":53,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.882167,52.353049],[4.882266,52.352979],[4.882359,52.352924],[4.882453,52.352884],[4.882729,52.35278]]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 12","Lijn_select":"03|12"}},{"id":54,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.882167,52.353049],[4.881569,52.353898],[4.881206,52.354413],[4.880906,52.354839],[4.88066,52.355189],[4.880324,52.355606],[4.880194,52.355797],[4.880093,52.355963],[4.879994,52.356133],[4.879826,52.356409],[4.87973,52.356541],[4.878725,52.357929]]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 5 | 12","Lijn_select":"03|05|12"}},{"id":55,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.880846,52.363057],[4.880628,52.36296],[4.880537,52.362926],[4.880461,52.362909],[4.880388,52.362896],[4.8803,52.362898],[4.880162,52.362923],[4.880096,52.362944],[4.880039,52.362974],[4.879488,52.363374],[4.879236,52.363522],[4.878991,52.363646],[4.87886,52.363681],[4.87877,52.363697],[4.878626,52.363696],[4.878477,52.363677],[4.876455,52.363051],[4.875292,52.362746],[4.873522,52.362289],[4.870669,52.36154],[4.868531,52.360974],[4.868161,52.360883],[4.86625,52.360448],[4.863646,52.359855],[4.861837,52.35942],[4.860101,52.358962],[4.857878,52.358378],[4.856875,52.358111],[4.855654,52.35776],[4.855484,52.357736],[4.855323,52.357737],[4.855145,52.357769],[4.853702,52.358209],[4.853594,52.358225],[4.853513,52.358227],[4.853414,52.358217]]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 11","Lijn_select":"01|11"}},{"id":56,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.878725,52.357929],[4.878568,52.358143],[4.878433,52.358324],[4.877634,52.359451],[4.877155,52.360109],[4.87696,52.360378],[4.876657,52.360835],[4.876394,52.361197],[4.8759,52.361878],[4.875731,52.3621],[4.875292,52.362746],[4.873128,52.365858],[4.872888,52.366199],[4.872169,52.36724],[4.871419,52.368319],[4.870881,52.369101],[4.870723,52.369331],[4.8706,52.369544],[4.870512,52.369753],[4.870436,52.369985],[4.87039,52.370178],[4.870375,52.370388],[4.870373,52.370538],[4.870382,52.37069]]},"properties":{"Modaliteit":"Tram","Lijn":3,"Lijn_select":"03"}},{"id":57,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.877977,52.378543],[4.877333,52.378735],[4.876836,52.378868],[4.876609,52.378931],[4.876505,52.378945],[4.87641,52.378946],[4.876335,52.378941],[4.876226,52.378921],[4.875751,52.378819],[4.875673,52.378799],[4.875596,52.378769],[4.87553,52.378731],[4.875465,52.378679],[4.875412,52.378615],[4.875346,52.378536],[4.875279,52.378455],[4.875126,52.378254],[4.872753,52.374652],[4.871357,52.372531],[4.870963,52.371933],[4.870831,52.371684],[4.870668,52.37143],[4.870558,52.371186],[4.870471,52.370966],[4.870421,52.370841],[4.870382,52.37069]]},"properties":{"Modaliteit":"Tram","Lijn":3,"Lijn_select":"03"}},{"id":58,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.87195,52.384355],[4.871644,52.384296],[4.870357,52.384072],[4.870212,52.384046],[4.870153,52.384042],[4.870091,52.384048],[4.870031,52.384062],[4.869985,52.384081],[4.869943,52.384108],[4.869908,52.384146],[4.869887,52.384186],[4.86987,52.384231],[4.869811,52.384382],[4.869801,52.384425],[4.869804,52.384466],[4.869826,52.384508],[4.869868,52.384545],[4.869921,52.384572],[4.869983,52.384591],[4.870128,52.384617],[4.871154,52.384796],[4.871253,52.384814],[4.871325,52.384819],[4.871386,52.384813],[4.871442,52.384799],[4.871492,52.384778],[4.871544,52.384749],[4.871567,52.384719],[4.871665,52.384504],[4.871688,52.384464],[4.871727,52.384425],[4.871772,52.384401],[4.871844,52.384377],[4.87195,52.384355],[4.872255,52.384386],[4.872635,52.384404],[4.873492,52.384421],[4.874628,52.38444],[4.874775,52.384427],[4.874919,52.3844],[4.875046,52.384356],[4.87517,52.384287],[4.876857,52.383294],[4.877052,52.38318],[4.877818,52.38273],[4.878873,52.382106],[4.878984,52.382016],[4.879031,52.381926],[4.879108,52.381689],[4.879185,52.381366],[4.879199,52.381227],[4.879194,52.381134],[4.879169,52.381001],[4.879115,52.380872],[4.879043,52.380749],[4.878149,52.379327],[4.877854,52.378892],[4.8778,52.378806],[4.877782,52.378733],[4.877822,52.378654],[4.877854,52.378618],[4.8779,52.378586],[4.877977,52.378543]]},"properties":{"Modaliteit":"Tram","Lijn":5,"Lijn_select":"05"}},{"id":59,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.878895,52.358231],[4.878568,52.358143],[4.871326,52.356181],[4.870705,52.356012],[4.868219,52.355336],[4.868099,52.355298],[4.868003,52.355242],[4.86795,52.355181],[4.867921,52.355113],[4.867919,52.354913],[4.867915,52.354769],[4.867877,52.354668],[4.867807,52.354569],[4.867708,52.354484],[4.86763,52.354431],[4.867495,52.354367],[4.867304,52.354301],[4.866866,52.354194],[4.866272,52.354077],[4.866092,52.354029],[4.865291,52.353767],[4.865026,52.353691],[4.86473,52.353623],[4.864364,52.35357],[4.864144,52.353539],[4.864028,52.353501],[4.863948,52.353454],[4.863758,52.353315],[4.863651,52.353263],[4.86355,52.353229],[4.863509,52.35322],[4.863455,52.353209],[4.863326,52.353196],[4.862932,52.353203],[4.862799,52.353183],[4.862309,52.353004],[4.862012,52.352906],[4.861731,52.352827],[4.861508,52.352773],[4.860898,52.352648],[4.860705,52.352592],[4.860153,52.352408],[4.85989,52.35233],[4.859167,52.352152],[4.858526,52.35201],[4.856601,52.351504],[4.855861,52.351302],[4.854404,52.350888],[4.854222,52.350841],[4.853769,52.350802],[4.853568,52.350794],[4.853407,52.350807],[4.85181,52.351014],[4.85163,52.351029],[4.85062,52.351028],[4.850494,52.351066],[4.850413,52.351101],[4.850377,52.351134],[4.850347,52.351189],[4.850328,52.351257],[4.850323,52.351383],[4.850298,52.351433],[4.850245,52.351488],[4.850175,52.351523],[4.850058,52.351546],[4.849824,52.351543],[4.849451,52.351565]]},"properties":{"Modaliteit":"Tram","Lijn":2,"Lijn_select":"02"}},{"id":60,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.85062,52.351028],[4.85027,52.351052],[4.849865,52.35106],[4.849732,52.351084],[4.849621,52.351139],[4.849562,52.351202],[4.84954,52.351275],[4.849544,52.35138],[4.849495,52.351507],[4.849451,52.351565],[4.849328,52.351595],[4.849216,52.351607],[4.846189,52.351586],[4.845334,52.351578],[4.842873,52.351556],[4.840882,52.351545],[4.837001,52.351524],[4.834339,52.351499],[4.82969,52.351447],[4.827822,52.351425],[4.8277,52.351418],[4.8276,52.351382],[4.827516,52.351338],[4.827457,52.351285],[4.827423,52.351225],[4.827422,52.351158],[4.827482,52.349158],[4.827544,52.347082],[4.827513,52.347007],[4.827452,52.346949],[4.827378,52.346902],[4.827311,52.346877],[4.827191,52.346853],[4.825188,52.346722],[4.824631,52.346688],[4.823737,52.346632],[4.82342,52.34665],[4.823104,52.346658],[4.822791,52.346643],[4.821333,52.346553],[4.820616,52.346514],[4.816064,52.346457],[4.812076,52.346413],[4.811475,52.346394],[4.81116,52.346377],[4.810925,52.346354],[4.810572,52.34631],[4.810166,52.346235],[4.806795,52.345556],[4.804191,52.345028],[4.803956,52.344994],[4.803499,52.344984],[4.803408,52.344988],[4.803311,52.34501],[4.803239,52.345039],[4.803185,52.345078],[4.803141,52.345125],[4.803026,52.345267],[4.802972,52.345304],[4.802912,52.345331],[4.802849,52.345349],[4.802768,52.345357],[4.802703,52.345355],[4.80263,52.345345],[4.802573,52.345326],[4.802523,52.345303],[4.802479,52.345273],[4.80244,52.345235],[4.802423,52.345195],[4.802415,52.345153],[4.802425,52.345107],[4.802454,52.345062],[4.80249,52.345029],[4.802544,52.344996],[4.802628,52.344965],[4.802873,52.344918],[4.803008,52.344908],[4.803236,52.344916],[4.803956,52.344994]]},"properties":{"Modaliteit":"Tram","Lijn":2,"Lijn_select":"02"}},{"id":61,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.853414,52.358217],[4.85266,52.358091],[4.852383,52.358063],[4.852069,52.358057],[4.850343,52.358048],[4.846924,52.358026],[4.843925,52.357992],[4.843693,52.358014],[4.843455,52.358037],[4.843201,52.358079],[4.842861,52.358144],[4.842629,52.358169],[4.842422,52.35817],[4.842188,52.358148],[4.84196,52.358107],[4.841621,52.358032],[4.841365,52.357997],[4.84101,52.357961]]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 17","Lijn_select":"01|17"}},{"id":62,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.843925,52.357992],[4.843601,52.357945],[4.842911,52.357823],[4.842658,52.35779],[4.842495,52.357785],[4.842325,52.357788],[4.842142,52.357808],[4.841264,52.357934],[4.84101,52.357961],[4.840037,52.357951],[4.833909,52.357883],[4.82733,52.35781],[4.825558,52.35779],[4.818849,52.357713],[4.817784,52.357691],[4.817224,52.357661],[4.816659,52.357613],[4.81609,52.357546],[4.815603,52.357476],[4.815158,52.357401],[4.814775,52.357328],[4.812059,52.35678],[4.810142,52.356395],[4.809892,52.356344]]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 17","Lijn_select":"01|17"}},{"id":63,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.845753,52.377871],[4.84514,52.377752],[4.845037,52.377749],[4.844932,52.377763],[4.843684,52.377954],[4.842001,52.378188],[4.838875,52.37868],[4.837885,52.378831],[4.832248,52.379715],[4.826829,52.380565],[4.821743,52.381362],[4.821579,52.381354],[4.821464,52.381319],[4.821381,52.381262],[4.821339,52.3812],[4.819262,52.37624],[4.819206,52.37617],[4.819167,52.376115],[4.819123,52.376079],[4.819067,52.376048],[4.819001,52.37602],[4.818906,52.375985]]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07"}},{"id":64,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.818709,52.375479],[4.818747,52.375454],[4.81879,52.375432],[4.818846,52.375413],[4.818917,52.375398],[4.818962,52.375393],[4.819036,52.375392],[4.819099,52.375399],[4.819157,52.37541]]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13}},{"id":65,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.819383,52.375909],[4.819512,52.375775]]},"properties":{"Modaliteit":"Tram","Lijn":"7 | 13","Lijn_select":"07|13"}},{"id":66,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.819392,52.375495],[4.819438,52.37552],[4.819479,52.375551],[4.81951,52.375586],[4.819532,52.375623],[4.819542,52.375656],[4.819543,52.375697],[4.819531,52.375741],[4.819512,52.375775]]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07"}},{"id":67,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.818557,52.375636],[4.818709,52.375479]]},"properties":{"Modaliteit":"Tram","Lijn":"7 | 13","Lijn_select":"07|13"}},{"id":68,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.818906,52.375985],[4.818697,52.375911]]},"properties":{"Modaliteit":"Tram","Lijn":"7 | 13","Lijn_select":"07|13"}},{"id":69,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.818697,52.375911],[4.818636,52.375878],[4.818601,52.375851],[4.818569,52.375816],[4.818552,52.37579],[4.818538,52.37575],[4.818535,52.375704],[4.818543,52.37567],[4.818557,52.375636]]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07"}},{"id":70,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.819157,52.37541],[4.819392,52.375495]]},"properties":{"Modaliteit":"Tram","Lijn":"7 | 13","Lijn_select":"07|13"}},{"id":71,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.818697,52.375911],[4.818541,52.375856],[4.818462,52.375837],[4.818388,52.375829],[4.818229,52.375826]]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13}},{"id":72,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.818709,52.375479],[4.81878,52.375403],[4.818815,52.375342],[4.818827,52.375291],[4.818823,52.375239],[4.818835,52.375207]]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07"}},{"id":73,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.819392,52.375495],[4.819504,52.375534],[4.819595,52.375557],[4.819671,52.375566],[4.819752,52.375566],[4.819829,52.375579]]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13}},{"id":74,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.850609,52.370092],[4.849464,52.369897],[4.848931,52.369811],[4.847381,52.36954],[4.846739,52.36945],[4.846152,52.369395],[4.845549,52.369364],[4.845273,52.369357],[4.845123,52.369367],[4.844967,52.369395],[4.844836,52.369424],[4.844684,52.369435],[4.844122,52.369428],[4.841937,52.369401],[4.841004,52.369397],[4.840298,52.36942],[4.839556,52.369474],[4.839028,52.369527],[4.838209,52.369642],[4.837748,52.369707],[4.837617,52.36975],[4.837524,52.369815],[4.83748,52.369874],[4.837471,52.369938],[4.837494,52.370019],[4.83811,52.371482],[4.838498,52.372403],[4.838504,52.372494],[4.83846,52.372576],[4.838356,52.372649],[4.838181,52.372701],[4.835829,52.37307],[4.835503,52.373121],[4.827318,52.374405],[4.819829,52.375579],[4.819772,52.375608],[4.819688,52.375638],[4.819643,52.375661],[4.81959,52.3757],[4.819512,52.375775]]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13}},{"id":75,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.819157,52.37541],[4.819032,52.375363],[4.81896,52.375326],[4.818903,52.375279],[4.81887,52.375233],[4.818835,52.375207],[4.818171,52.373617],[4.81812,52.373544],[4.817828,52.372846],[4.817812,52.372791],[4.817817,52.372751],[4.817831,52.372716],[4.817864,52.372679],[4.817902,52.37265],[4.817955,52.372626],[4.818026,52.372606],[4.818218,52.372574],[4.818379,52.37255],[4.818445,52.372546],[4.818505,52.372546],[4.818586,52.372559],[4.818659,52.372581],[4.818728,52.372611],[4.818778,52.372653],[4.818816,52.372702],[4.818878,52.372843],[4.818891,52.372887],[4.818894,52.372935],[4.818888,52.372981],[4.818869,52.373023],[4.81883,52.373064],[4.818786,52.373097],[4.818686,52.373159],[4.818294,52.373396],[4.818248,52.373431],[4.818219,52.373464],[4.818198,52.373503],[4.818186,52.373541],[4.818171,52.373617]]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07"}},{"id":76,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.818557,52.375636],[4.818485,52.375706],[4.818439,52.375743],[4.818377,52.375775],[4.818314,52.375796],[4.818229,52.375826],[4.817864,52.375885],[4.812453,52.376423],[4.811652,52.376502],[4.81145,52.376514],[4.811248,52.37651],[4.811053,52.3765],[4.81083,52.376507],[4.806468,52.376939],[4.803274,52.377255],[4.803155,52.3773],[4.803097,52.377328],[4.803051,52.377359],[4.803008,52.377401],[4.802984,52.377449],[4.802975,52.377494],[4.802968,52.377624],[4.802949,52.377673],[4.802908,52.377714],[4.802862,52.377745],[4.802791,52.377771],[4.802727,52.377782],[4.802671,52.377785],[4.802274,52.37778],[4.802195,52.377769],[4.802125,52.37775],[4.802059,52.377722],[4.802003,52.377682],[4.801967,52.377637],[4.801948,52.37759],[4.801944,52.377541],[4.801958,52.377492],[4.801995,52.377445],[4.802049,52.377402],[4.802136,52.377363],[4.802223,52.377343],[4.803135,52.377253],[4.803274,52.377255]]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13}},{"id":77,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.774391,52.353895],[4.774237,52.353937],[4.773705,52.35415],[4.773647,52.354183],[4.773597,52.354226],[4.773562,52.354282],[4.773556,52.354332],[4.773571,52.35439],[4.773604,52.354439],[4.774142,52.354945],[4.774217,52.354989],[4.774305,52.355013],[4.774405,52.355025],[4.77451,52.35502],[4.77463,52.35499],[4.774713,52.354941],[4.774769,52.354887],[4.77479,52.354829],[4.774791,52.35477],[4.774766,52.354712],[4.774332,52.3543],[4.774247,52.354221],[4.774211,52.354163],[4.774203,52.354114],[4.774209,52.354062],[4.77424,52.354011],[4.774283,52.353974],[4.774391,52.353895],[4.77478,52.353739],[4.776851,52.352911],[4.781519,52.351043],[4.783292,52.350332],[4.785931,52.349271],[4.78606,52.34924],[4.786192,52.349241],[4.786714,52.349346],[4.787066,52.349424],[4.787526,52.349552],[4.788602,52.34977],[4.793829,52.350827],[4.794257,52.350879],[4.794752,52.350979],[4.802261,52.352499],[4.802566,52.352561],[4.803099,52.352679],[4.807484,52.353573],[4.808033,52.353714],[4.808438,52.353808],[4.808848,52.353891],[4.810138,52.35415],[4.810258,52.354196],[4.810326,52.354253],[4.810374,52.354327],[4.810367,52.354411],[4.809507,52.356001],[4.809499,52.356081],[4.809511,52.356135],[4.809555,52.356204],[4.809628,52.35626],[4.809736,52.356306],[4.809892,52.356344]]},"properties":{"Modaliteit":"Tram","Lijn":1,"Lijn_select":"01"}},{"id":78,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.809892,52.356344],[4.809744,52.356329],[4.809626,52.356333],[4.809499,52.356356],[4.809385,52.3564],[4.809289,52.35646],[4.809218,52.356539],[4.808206,52.358423],[4.807562,52.359616],[4.807186,52.360312],[4.807122,52.360388],[4.807026,52.360447],[4.806913,52.360486],[4.806776,52.360504],[4.806646,52.360499],[4.803646,52.359893],[4.803491,52.359857],[4.803374,52.359815],[4.803303,52.359771],[4.80324,52.359709],[4.803196,52.359648],[4.803186,52.359554],[4.803208,52.359412],[4.803263,52.359055],[4.803239,52.358953],[4.803162,52.358865],[4.803047,52.358799],[4.802915,52.358761],[4.800468,52.358269],[4.7991,52.357998],[4.79707,52.357595],[4.791589,52.356486],[4.786916,52.355542],[4.786748,52.355531],[4.786671,52.355534],[4.786586,52.355549],[4.786507,52.355576],[4.786459,52.3556],[4.786414,52.355633],[4.786372,52.35568],[4.786312,52.35579],[4.786277,52.355829],[4.786222,52.35587],[4.786148,52.355903],[4.786067,52.355923],[4.785997,52.355931],[4.785933,52.35593],[4.78587,52.355924],[4.785802,52.355907],[4.785745,52.355885],[4.785694,52.355856],[4.785654,52.355824],[4.785622,52.355784],[4.785604,52.355744],[4.785599,52.3557],[4.785605,52.355666],[4.785638,52.355601],[4.785689,52.355505],[4.785723,52.355457],[4.785766,52.355421],[4.785805,52.355397],[4.785859,52.355377],[4.785921,52.355363],[4.785988,52.355355],[4.786063,52.355357],[4.786157,52.355373],[4.786762,52.355496],[4.786916,52.355542]]},"properties":{"Modaliteit":"Tram","Lijn":17,"Lijn_select":17}},{"id":79,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.876907,52.347091],[4.876878,52.347026],[4.876825,52.346974],[4.876757,52.346931],[4.876676,52.346902],[4.876563,52.346888],[4.874733,52.346818],[4.872716,52.346738],[4.872533,52.34673],[4.870746,52.346652],[4.868183,52.346552],[4.867901,52.34654],[4.867647,52.346517],[4.867267,52.346469],[4.866262,52.346334],[4.865451,52.346224],[4.861784,52.345706],[4.860405,52.345518],[4.858529,52.345266],[4.857501,52.345129],[4.856966,52.345056],[4.856849,52.345031],[4.856769,52.344998],[4.856669,52.344934],[4.856622,52.344862],[4.856605,52.344789],[4.856622,52.34471],[4.856897,52.343952],[4.8577,52.341737],[4.857735,52.341585],[4.857742,52.341408],[4.857725,52.341234],[4.857702,52.34112],[4.857606,52.340661],[4.857588,52.340513],[4.857578,52.340326],[4.857579,52.339324],[4.85755,52.339227],[4.857485,52.339131],[4.857355,52.339008],[4.857295,52.338915],[4.857274,52.33883],[4.857276,52.338388],[4.857288,52.33758],[4.857287,52.335468],[4.857294,52.335391],[4.857315,52.335323],[4.857376,52.335262],[4.857474,52.335212],[4.857619,52.335185],[4.859711,52.33518],[4.861564,52.335153],[4.862545,52.33515],[4.865143,52.335158],[4.865329,52.335161],[4.865576,52.335184],[4.865728,52.3352],[4.865889,52.335207],[4.866528,52.335208],[4.866649,52.335192],[4.867091,52.335194],[4.867416,52.335195],[4.86744,52.335195],[4.867581,52.335198],[4.867645,52.335208],[4.867676,52.335215],[4.867718,52.335231],[4.867768,52.335258],[4.867792,52.335278],[4.867813,52.3353],[4.86783,52.335328],[4.867839,52.335352],[4.867841,52.335388],[4.867836,52.335415],[4.867823,52.335448],[4.867806,52.335473],[4.867769,52.33551],[4.86772,52.335542],[4.86767,52.335565],[4.867631,52.335577],[4.867564,52.33559],[4.86752,52.335595],[4.86744,52.335593],[4.867378,52.335584],[4.867343,52.335576],[4.867279,52.335553],[4.867088,52.33545],[4.866806,52.335296],[4.866768,52.335277],[4.866703,52.335251],[4.86664,52.335237],[4.866528,52.335208]]},"properties":{"Modaliteit":"Tram","Lijn":24,"Lijn_select":24}},{"id":80,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.989232,52.296341],[4.985584,52.296324],[4.980061,52.296307],[4.979453,52.2963],[4.978833,52.296271],[4.97824,52.296231],[4.977403,52.296141],[4.976485,52.296003],[4.974169,52.295613],[4.971137,52.295091],[4.970198,52.294912],[4.968981,52.294698],[4.967385,52.29443],[4.96673,52.294342],[4.966278,52.294312],[4.96574,52.294321],[4.965332,52.294352],[4.96496,52.294399],[4.964615,52.294464],[4.96428,52.294545],[4.963987,52.294632],[4.963686,52.294741],[4.963417,52.294854],[4.963151,52.294985],[4.962911,52.29512],[4.962634,52.295305],[4.962399,52.295502],[4.96218,52.295709],[4.962008,52.295897],[4.961606,52.296363],[4.961312,52.296707],[4.960927,52.297144],[4.960365,52.297759],[4.959985,52.298176],[4.958921,52.299345],[4.958109,52.300232],[4.957375,52.301036],[4.956726,52.301728],[4.955835,52.302713],[4.955117,52.303486],[4.954278,52.304401],[4.953389,52.305387],[4.952371,52.306508],[4.952107,52.306794],[4.951089,52.307906],[4.950051,52.309037],[4.948974,52.31019],[4.947591,52.311691],[4.947196,52.312126],[4.945927,52.313492],[4.944688,52.314861],[4.94363,52.316051],[4.942679,52.317091],[4.941473,52.318418],[4.939989,52.32004],[4.93884,52.321292],[4.938352,52.321802],[4.9379,52.322257],[4.937498,52.322649],[4.936943,52.323175],[4.936492,52.323601],[4.935632,52.324402],[4.935097,52.324909]]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 54","Lijn_select":"50|54"}},{"id":81,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.935097,52.324909],[4.934741,52.325204],[4.93429,52.32561],[4.933793,52.326072],[4.933124,52.3267],[4.932711,52.32711],[4.9323,52.327548],[4.931459,52.32841],[4.930734,52.32921],[4.930305,52.329672],[4.929691,52.330349],[4.929182,52.330906],[4.928732,52.331375],[4.928423,52.331689],[4.928063,52.332006],[4.927744,52.332354],[4.927236,52.332894]]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 53 | 54","Lijn_select":"50|53|54"}},{"id":82,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.921943,52.332995],[4.922647,52.33324],[4.923192,52.333392],[4.923497,52.333465],[4.92389,52.333525],[4.924318,52.333572],[4.924713,52.333576],[4.925166,52.333541],[4.925675,52.33346],[4.926079,52.333368],[4.926573,52.333204],[4.927236,52.332894]]},"properties":{"Modaliteit":"Metro","Lijn":50,"Lijn_select":50}},{"id":83,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.921943,52.332995],[4.922401,52.333248],[4.922682,52.333439],[4.922827,52.33355],[4.923014,52.33372],[4.923153,52.333865],[4.923297,52.33404],[4.923368,52.334139],[4.923475,52.33432],[4.923583,52.334552],[4.923646,52.334761],[4.923687,52.334976],[4.923694,52.335124],[4.9237,52.335491],[4.923675,52.335865],[4.9236,52.336336],[4.923438,52.336851],[4.923259,52.337262]]},"properties":{"Modaliteit":"Metro","Lijn":51,"Lijn_select":51}},{"id":84,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.923259,52.337262],[4.924065,52.336362],[4.927236,52.332894]]},"properties":{"Modaliteit":"Metro","Lijn":"53 | 54","Lijn_select":"53|54"}},{"id":85,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.886993,52.338651],[4.885132,52.339092],[4.883877,52.339285],[4.882959,52.339385],[4.881565,52.33942],[4.87995,52.339391],[4.876672,52.339273],[4.874404,52.339184],[4.872537,52.339111]]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 51 | 52","Lijn_select":"50|51|52"}},{"id":86,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.921943,52.332995],[4.92128,52.332767],[4.920305,52.332469],[4.9194,52.33222],[4.917807,52.331748],[4.915966,52.33119],[4.915587,52.331076],[4.915165,52.330962],[4.914795,52.330861],[4.914473,52.330785],[4.914142,52.330714],[4.913902,52.330671],[4.91361,52.330629],[4.913148,52.330571],[4.912153,52.330466],[4.911111,52.330357],[4.909397,52.330184],[4.908442,52.330084],[4.907378,52.329976],[4.906951,52.329944],[4.906641,52.329927],[4.906327,52.329926],[4.906021,52.329941],[4.905575,52.329984],[4.905256,52.330029],[4.904923,52.330102],[4.904639,52.330178],[4.904323,52.330271],[4.903977,52.3304],[4.903486,52.330604],[4.902529,52.331031],[4.900875,52.331813],[4.899738,52.332368],[4.897793,52.333325],[4.896872,52.333773],[4.895467,52.334471],[4.894799,52.334824],[4.892273,52.33621],[4.890729,52.337],[4.889392,52.337682],[4.888506,52.338096],[4.887265,52.338564],[4.886993,52.338651]]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 51","Lijn_select":"50|51"}},{"id":87,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.872537,52.339111],[4.868908,52.338929],[4.865216,52.338792],[4.861059,52.33861],[4.857629,52.338408],[4.857276,52.338388],[4.855923,52.338309],[4.85472,52.338213],[4.853389,52.338131],[4.851324,52.338028],[4.849406,52.337966],[4.848597,52.33793],[4.847524,52.337876],[4.846283,52.337809],[4.845148,52.337755],[4.844614,52.337743],[4.844018,52.337755],[4.843487,52.337785],[4.842844,52.337841],[4.841675,52.33798],[4.840294,52.3382],[4.839267,52.338431],[4.838532,52.338643],[4.837759,52.338918],[4.837191,52.33919],[4.836709,52.339461],[4.836334,52.339725],[4.836092,52.339932],[4.835879,52.340132],[4.835681,52.34034],[4.835444,52.340645],[4.83527,52.34092],[4.835152,52.341142],[4.835056,52.341375],[4.834969,52.341639],[4.83491,52.34189],[4.834854,52.342175],[4.834782,52.34268],[4.834636,52.343756],[4.834546,52.34473],[4.834507,52.345821],[4.834486,52.346537],[4.834423,52.347399],[4.834377,52.348039],[4.834351,52.348937],[4.834318,52.350317],[4.834331,52.350784],[4.834339,52.351499],[4.834309,52.352813],[4.83425,52.353529],[4.834229,52.354208],[4.834275,52.355311],[4.834321,52.35633],[4.834368,52.357497],[4.834378,52.357888],[4.834379,52.357908],[4.834314,52.358664],[4.834238,52.359234],[4.834147,52.360093],[4.834066,52.361085],[4.834032,52.362104],[4.833988,52.3634],[4.833956,52.364427],[4.833954,52.36486],[4.833959,52.365982],[4.833964,52.36652],[4.833975,52.366883],[4.833999,52.367222],[4.834033,52.367515],[4.834083,52.367931],[4.83415,52.368321],[4.834213,52.368719],[4.834298,52.369183],[4.834382,52.369662],[4.834521,52.370452],[4.834636,52.370926],[4.834801,52.371404],[4.834972,52.371867],[4.83512,52.372213],[4.835332,52.372705],[4.835503,52.373121],[4.835582,52.373312],[4.835801,52.373908],[4.835924,52.374265],[4.836153,52.37483],[4.836334,52.375257],[4.836539,52.375754],[4.836832,52.376451],[4.837028,52.376914],[4.837203,52.377345],[4.837378,52.37775],[4.837629,52.378282],[4.837885,52.378831],[4.83827,52.379733],[4.838616,52.380646],[4.838838,52.381244],[4.83902,52.381676],[4.839261,52.382261],[4.83946,52.382752],[4.839574,52.383051],[4.839646,52.383285],[4.839687,52.383498],[4.839717,52.383789],[4.839722,52.38394],[4.83971,52.384153],[4.839695,52.384362],[4.839665,52.384538],[4.839616,52.384719],[4.839538,52.384977],[4.839325,52.385626],[4.839157,52.386173],[4.839027,52.386841],[4.838958,52.387404],[4.8389,52.388092],[4.83889,52.388597],[4.838882,52.389029],[4.838876,52.390534],[4.838907,52.391078],[4.83897,52.391463],[4.839075,52.391801],[4.839168,52.392011],[4.839336,52.392314],[4.839571,52.392627],[4.839773,52.392848],[4.839948,52.393026],[4.840176,52.393221],[4.840416,52.39341],[4.840647,52.393565],[4.841002,52.393782],[4.841412,52.394012],[4.841767,52.394211],[4.842193,52.394449],[4.842558,52.394631],[4.842873,52.394768],[4.843244,52.394899],[4.843597,52.394999],[4.843904,52.395063],[4.84422,52.395116],[4.844596,52.395159],[4.844984,52.395178],[4.84563,52.395187],[4.846877,52.395187],[4.84852,52.395194],[4.850835,52.395176]]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 51","Lijn_select":"50|51"}},{"id":88,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.923259,52.337262],[4.922646,52.33796],[4.922047,52.338651],[4.921363,52.339481],[4.920971,52.340036],[4.920338,52.341009],[4.919825,52.341922],[4.919364,52.342782],[4.919144,52.343224],[4.91901,52.343546],[4.918892,52.343944],[4.918765,52.344358],[4.918635,52.344657],[4.918484,52.344939],[4.918119,52.345537],[4.917732,52.346175],[4.917556,52.346474],[4.917051,52.347283],[4.916793,52.347722],[4.916572,52.34807],[4.916286,52.348541],[4.916178,52.348688],[4.916082,52.34882],[4.915894,52.349034],[4.915746,52.34919],[4.915505,52.349437],[4.915061,52.349891],[4.914679,52.350284],[4.914335,52.350637],[4.91416,52.350827],[4.913956,52.351074],[4.9138,52.351279],[4.913643,52.351515],[4.913521,52.351712],[4.91343,52.351882],[4.913294,52.352161],[4.913175,52.35243],[4.91305,52.352706],[4.912843,52.353119],[4.912703,52.35337],[4.912475,52.353753],[4.912128,52.354327],[4.911724,52.354991],[4.911354,52.355602],[4.911021,52.356159],[4.910675,52.356735],[4.910315,52.357339],[4.909952,52.357941],[4.909612,52.358504],[4.909201,52.359186],[4.908861,52.359754],[4.908479,52.36038],[4.908107,52.360969],[4.907983,52.361167],[4.907835,52.3614],[4.907261,52.362301],[4.906955,52.362849],[4.906746,52.363196],[4.906303,52.363961],[4.905887,52.364721],[4.905745,52.364955],[4.905534,52.365271],[4.905386,52.365458],[4.905258,52.365606],[4.905106,52.365753],[4.904964,52.365881],[4.904768,52.366028],[4.90455,52.366176],[4.904289,52.366329],[4.903876,52.366556],[4.903511,52.366756],[4.903057,52.366999],[4.902406,52.367343],[4.902195,52.367463],[4.901774,52.36772],[4.901497,52.367905],[4.901327,52.368034],[4.901101,52.368242],[4.90093,52.368423],[4.900754,52.36865],[4.900586,52.368915],[4.900491,52.369143],[4.900421,52.369354],[4.900389,52.369561],[4.900365,52.369833],[4.900388,52.370019],[4.900441,52.370242],[4.900519,52.370446],[4.90068,52.370773],[4.901306,52.371914],[4.901472,52.37216],[4.901702,52.372415],[4.902015,52.372706],[4.90246,52.373049],[4.902707,52.373251],[4.902945,52.373471],[4.903087,52.373628],[4.903233,52.373817],[4.903331,52.373972],[4.903414,52.374142],[4.903479,52.374314],[4.903542,52.374542],[4.903566,52.374727],[4.903575,52.37488],[4.903562,52.375036],[4.903529,52.375221],[4.903487,52.37537],[4.903402,52.375584],[4.903307,52.37576],[4.903215,52.375898],[4.903041,52.376105],[4.90287,52.376278],[4.902708,52.376422],[4.902399,52.376651],[4.902029,52.376895],[4.90171,52.377069],[4.900798,52.377503],[4.900219,52.377757]]},"properties":{"Modaliteit":"Metro","Lijn":"51 | 53 | 54","Lijn_select":"51|53|54"}},{"id":89,"type":"Feature","geometry":{"type":"LineString","coordinates":[[5.001427,52.351932],[5.001634,52.351807],[5.003196,52.35097],[5.003384,52.350891],[5.003565,52.350846],[5.003749,52.350832],[5.003903,52.350838],[5.004092,52.350876],[5.004306,52.350944],[5.004577,52.35103],[5.004853,52.351117],[5.004927,52.351146],[5.004999,52.351188],[5.005076,52.351292],[5.005091,52.351351],[5.005076,52.351417],[5.005038,52.351478],[5.004973,52.351537],[5.003363,52.352396],[5.003306,52.352422],[5.003218,52.352444],[5.00312,52.352454],[5.003031,52.352447],[5.002895,52.352408],[5.002148,52.35189],[5.002087,52.351857],[5.001997,52.351827],[5.001902,52.351813],[5.001813,52.351811],[5.001728,52.351821],[5.001629,52.351849],[5.001427,52.351932],[4.999645,52.35288],[4.995227,52.355231],[4.990814,52.357578],[4.987942,52.359105],[4.987674,52.359224],[4.987098,52.359462],[4.986882,52.359565],[4.98044,52.362987],[4.979228,52.36363],[4.978454,52.364052],[4.97795,52.364337],[4.975411,52.365685],[4.975025,52.365864],[4.974258,52.366182],[4.973903,52.366341],[4.973611,52.366488],[4.973375,52.366623],[4.9725,52.367168],[4.972164,52.367356],[4.971698,52.367579],[4.970754,52.367994],[4.970395,52.368171],[4.968966,52.368933],[4.96764,52.369641],[4.965797,52.370614],[4.964952,52.371057],[4.964497,52.37126],[4.964142,52.371379],[4.963777,52.371486],[4.963324,52.371601],[4.961519,52.372019],[4.957959,52.372861],[4.957131,52.373037],[4.956444,52.373152],[4.955897,52.373225],[4.955376,52.373278],[4.954611,52.373329],[4.953896,52.373345],[4.953282,52.373333],[4.952538,52.373299],[4.951783,52.373234],[4.947902,52.372802],[4.941934,52.372139],[4.940844,52.372026],[4.940007,52.37197],[4.939066,52.371955],[4.938221,52.371989],[4.937587,52.372036],[4.937061,52.372094],[4.936616,52.372174],[4.936254,52.372258],[4.935806,52.372393],[4.935016,52.372672],[4.934366,52.372893],[4.931945,52.373739],[4.931508,52.373907],[4.930481,52.374384],[4.929802,52.374659],[4.929072,52.374893],[4.928347,52.375066],[4.927706,52.375178],[4.92568,52.375506],[4.923959,52.375766],[4.921583,52.376116],[4.919702,52.376384],[4.918154,52.376588],[4.917583,52.376654],[4.915773,52.376901],[4.914372,52.377082],[4.913026,52.377241],[4.912425,52.377302],[4.911923,52.377345],[4.910358,52.377451],[4.909893,52.377486],[4.90946,52.377529],[4.904525,52.37819],[4.904366,52.378193],[4.904248,52.378174],[4.904118,52.378125],[4.904031,52.378066],[4.903503,52.377506],[4.903421,52.377439],[4.903312,52.37738],[4.903129,52.377339],[4.902948,52.377336]]},"properties":{"Modaliteit":"Tram","Lijn":26,"Lijn_select":26}},{"id":90,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.867284,52.301249],[4.86745,52.301206],[4.869607,52.300662],[4.869814,52.300636],[4.869927,52.300641],[4.870014,52.300654],[4.870148,52.300703],[4.870348,52.300854],[4.870491,52.301015],[4.870747,52.301317],[4.871317,52.302188],[4.871687,52.302719],[4.871977,52.303248],[4.872221,52.303828],[4.872309,52.304126],[4.872359,52.304406],[4.872403,52.304762],[4.872439,52.305377],[4.872476,52.306944],[4.872498,52.307659],[4.872513,52.308278],[4.872556,52.309299],[4.872565,52.309812],[4.872549,52.310526],[4.87249,52.311136],[4.872411,52.311647],[4.872327,52.312005],[4.872233,52.312366],[4.872078,52.312772],[4.870617,52.315876],[4.870291,52.316559],[4.870094,52.31697],[4.869845,52.31755],[4.86974,52.317836],[4.869596,52.318302],[4.869488,52.318652],[4.869409,52.319034],[4.869303,52.319537],[4.869249,52.319951],[4.869154,52.321625],[4.869068,52.323597],[4.869013,52.324598],[4.868971,52.325399],[4.868919,52.326396],[4.868867,52.327802],[4.868869,52.329111],[4.868842,52.331424],[4.868838,52.334256],[4.868825,52.335957],[4.868796,52.336194]]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 6","Lijn_select":"05|06"}},{"id":91,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.854874,52.380557],[4.854638,52.380693],[4.854357,52.380828],[4.853689,52.381217],[4.85175,52.382337],[4.851314,52.382568],[4.850593,52.38289],[4.847711,52.384134],[4.847594,52.384204],[4.847531,52.384286],[4.8475,52.384377],[4.847482,52.384821],[4.847511,52.385084],[4.847478,52.385617],[4.847469,52.385678],[4.847451,52.385717],[4.847433,52.385744],[4.84739,52.385784],[4.847336,52.385824],[4.847253,52.38586],[4.847155,52.385886],[4.84702,52.385895],[4.846421,52.385882],[4.845793,52.385859],[4.845713,52.385859],[4.845636,52.385862],[4.845554,52.385877],[4.845487,52.385898],[4.845437,52.385926],[4.845334,52.385987],[4.845279,52.386032],[4.845222,52.386075],[4.845155,52.386106],[4.845082,52.386131],[4.845008,52.386149],[4.844918,52.386153],[4.844818,52.386145],[4.844121,52.386081],[4.843793,52.386067],[4.839664,52.386036],[4.839495,52.38602],[4.838933,52.386016],[4.838864,52.38602],[4.838807,52.386028],[4.838727,52.386044],[4.838655,52.38607],[4.838597,52.386102],[4.838555,52.386133],[4.83852,52.386171],[4.838492,52.386212],[4.838296,52.38661],[4.838201,52.386802],[4.838167,52.386875],[4.838146,52.386935],[4.837843,52.388313],[4.837835,52.388342],[4.837833,52.388375],[4.837838,52.388411],[4.837845,52.388437],[4.837862,52.388466],[4.837886,52.388495],[4.837915,52.388519],[4.837971,52.388554],[4.838012,52.388571],[4.838076,52.38859],[4.838129,52.388598],[4.838186,52.388603],[4.838797,52.388605],[4.838867,52.3886],[4.83889,52.388597],[4.838928,52.388592],[4.838971,52.388581],[4.839007,52.388571],[4.839061,52.38855],[4.8391,52.388527],[4.83914,52.388497],[4.839175,52.388462],[4.8392,52.388425],[4.839208,52.388398],[4.839215,52.388366],[4.839219,52.388343],[4.839222,52.388079],[4.839227,52.387677],[4.83922,52.387648],[4.839215,52.387616],[4.839186,52.387552],[4.839151,52.387502],[4.839132,52.38747],[4.839119,52.387434],[4.839112,52.387389],[4.839117,52.38714],[4.83912,52.387063],[4.839127,52.386991],[4.839139,52.386913],[4.83923,52.386284],[4.839258,52.386203],[4.839305,52.386149],[4.839391,52.386095],[4.839497,52.386064],[4.839664,52.386036]]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19}},{"id":92,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.853414,52.358217],[4.853482,52.358269],[4.853522,52.358335],[4.853518,52.35841],[4.853399,52.358834],[4.853346,52.35898],[4.853344,52.359511],[4.853329,52.360101],[4.853284,52.361466],[4.853225,52.363271],[4.853188,52.363563],[4.853184,52.363669],[4.853173,52.364027],[4.853183,52.364085],[4.853224,52.364147],[4.853285,52.364192],[4.853326,52.36421],[4.853403,52.364235],[4.853442,52.364241]]},"properties":{"Modaliteit":"Tram","Lijn":17,"Lijn_select":17}},{"id":93,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.853442,52.364241],[4.853437,52.364241],[4.853383,52.36425],[4.853352,52.364257],[4.853306,52.364274],[4.85327,52.364291],[4.853233,52.364313],[4.853202,52.36434],[4.85318,52.364362],[4.853166,52.36439],[4.853164,52.364431],[4.853158,52.364647],[4.853153,52.364897],[4.85314,52.365259],[4.853128,52.365627],[4.853121,52.365747],[4.853109,52.365806],[4.853093,52.365863],[4.853049,52.365968],[4.853003,52.366063],[4.852867,52.366355],[4.852761,52.366587],[4.852572,52.366997],[4.852428,52.367309],[4.852158,52.367896],[4.852001,52.368237],[4.851826,52.368618],[4.851665,52.368971],[4.851623,52.369051],[4.851578,52.369096],[4.851528,52.369126],[4.85147,52.369146],[4.851397,52.369163],[4.85134,52.369169],[4.851277,52.36917],[4.851149,52.369153],[4.85102,52.369132],[4.850937,52.369127],[4.850856,52.369132],[4.850799,52.369144],[4.850729,52.369171],[4.85067,52.369207],[4.850627,52.369249],[4.850593,52.369311],[4.850433,52.369659],[4.850345,52.369849],[4.850266,52.370033],[4.850178,52.370234],[4.849912,52.370768],[4.848882,52.372732],[4.848647,52.373175],[4.848138,52.374138],[4.847355,52.375584],[4.846197,52.37773],[4.846101,52.377819],[4.845982,52.37786],[4.845888,52.37787],[4.845753,52.377871]]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07"}},{"id":94,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.877704,52.368726],[4.874023,52.367772],[4.873604,52.367653],[4.873155,52.367514],[4.872468,52.36732],[4.872169,52.36724],[4.871544,52.36707],[4.871058,52.36692],[4.870613,52.366786],[4.868079,52.366105],[4.867549,52.365969],[4.867377,52.365924],[4.862706,52.364805],[4.86105,52.364408],[4.860913,52.364387],[4.860751,52.364389],[4.860585,52.36442],[4.859681,52.364719],[4.859492,52.364781],[4.859404,52.364802],[4.859293,52.364811],[4.859172,52.364809],[4.856885,52.364646],[4.856715,52.364627],[4.856554,52.364589],[4.855777,52.364329],[4.855648,52.364293],[4.855482,52.364273],[4.853472,52.364245],[4.853442,52.364241]]},"properties":{"Modaliteit":"Tram","Lijn":"7 | 17","Lijn_select":"07|17"}},{"id":95,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.937298,52.376903],[4.937336,52.376737],[4.937373,52.376523],[4.937405,52.376442],[4.937465,52.37637],[4.937635,52.376207],[4.939422,52.37459],[4.939727,52.374337],[4.940117,52.374059],[4.940193,52.373996],[4.940234,52.373929],[4.940233,52.373862],[4.940208,52.373805],[4.940166,52.373755],[4.940095,52.373711],[4.940023,52.373684],[4.939853,52.373656],[4.93846,52.3735],[4.935489,52.373167],[4.935258,52.373123],[4.934938,52.373052],[4.934366,52.372893],[4.934024,52.372784],[4.93372,52.372666],[4.933413,52.372522],[4.932698,52.372095],[4.930691,52.370869],[4.929696,52.370252],[4.928697,52.369641],[4.926464,52.368267],[4.925728,52.367813],[4.925649,52.367751],[4.925595,52.367682],[4.925544,52.367572],[4.925493,52.367423],[4.92544,52.36735],[4.925155,52.367067],[4.925006,52.366969],[4.924564,52.366766],[4.924122,52.366575],[4.923967,52.366498],[4.920775,52.364539],[4.920508,52.36439],[4.920213,52.364253],[4.919255,52.363865],[4.919114,52.363786],[4.919015,52.363697],[4.918934,52.3636]]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07"}},{"id":96,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.918934,52.3636],[4.918862,52.363524],[4.918748,52.363451],[4.918549,52.363369],[4.918339,52.363313],[4.914325,52.362481]]},"properties":{"Modaliteit":"Tram","Lijn":"7 | 19","Lijn_select":"07|19"}},{"id":97,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.922671,52.363546],[4.922312,52.36333],[4.9221,52.363241],[4.921912,52.363177],[4.921667,52.363125],[4.921432,52.363079],[4.920542,52.362995],[4.920418,52.363001],[4.92034,52.363021],[4.920276,52.36304],[4.920192,52.363086],[4.919956,52.363308],[4.919851,52.363378],[4.91972,52.363421],[4.919131,52.363532],[4.919008,52.363562],[4.918934,52.3636]]},"properties":{"Modaliteit":"Tram","Lijn":"14 | 19","Lijn_select":"14|19"}},{"id":98,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.937298,52.376903],[4.93734,52.377057],[4.937399,52.377396],[4.937383,52.377476],[4.937329,52.377535],[4.937268,52.37757],[4.937203,52.377601],[4.937108,52.377627],[4.937004,52.377643],[4.936894,52.377648],[4.936793,52.377639],[4.936705,52.377618],[4.936624,52.377577],[4.936559,52.377521],[4.936528,52.377455],[4.936526,52.377398],[4.936556,52.377334],[4.936623,52.377269],[4.936712,52.377218],[4.937092,52.377108],[4.937183,52.377063],[4.937241,52.377015],[4.937284,52.376959],[4.937298,52.376903]]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07"}},{"id":99,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.918934,52.3636],[4.918827,52.363688],[4.918493,52.36404],[4.918395,52.364104],[4.918302,52.364151],[4.918185,52.3642],[4.916169,52.3649],[4.915418,52.365156],[4.911789,52.366411],[4.911175,52.366622],[4.909496,52.367197],[4.909115,52.36733],[4.908919,52.367367],[4.90869,52.367392],[4.908446,52.36739],[4.90824,52.367367],[4.907674,52.367243],[4.907534,52.367233],[4.907418,52.367246],[4.907304,52.36727],[4.905706,52.367817],[4.904938,52.36808],[4.904812,52.36811],[4.904683,52.36812],[4.904564,52.368113],[4.903305,52.367953],[4.903119,52.367907],[4.902997,52.367856],[4.902918,52.367809],[4.902406,52.367343],[4.901588,52.366599],[4.901471,52.366527],[4.901408,52.366494],[4.901309,52.366458],[4.9005,52.366258],[4.900354,52.366228],[4.900207,52.36621],[4.899845,52.366176],[4.899665,52.366171],[4.899377,52.366186],[4.899144,52.366203],[4.898375,52.366234],[4.898071,52.366234],[4.897882,52.366238],[4.897097,52.36624]]},"properties":{"Modaliteit":"Tram","Lijn":14,"Lijn_select":14}},{"id":100,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.859972,52.371493],[4.859759,52.37151],[4.859593,52.371506],[4.859436,52.371491],[4.859243,52.37147],[4.859074,52.371451],[4.858902,52.37144],[4.858662,52.371413],[4.858049,52.371342],[4.856878,52.371176],[4.855368,52.370915],[4.850609,52.370092]]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13}},{"id":101,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.882353,52.363769],[4.880846,52.363057]]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 2 | 5 | 11 | 12","Lijn_select":"01|02|05|11|12"}},{"id":102,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.914325,52.362481],[4.911346,52.361861],[4.910921,52.361773],[4.909474,52.361474],[4.908198,52.361217],[4.907983,52.361167],[4.907626,52.361084],[4.905222,52.360591],[4.90348,52.360255],[4.902724,52.36011],[4.901566,52.359921],[4.900917,52.359816],[4.898761,52.359518],[4.898313,52.359456],[4.897643,52.359365],[4.897354,52.359335],[4.896757,52.359299],[4.896382,52.359305],[4.893008,52.359489],[4.892213,52.359483],[4.89115,52.359544],[4.891097,52.359548],[4.890938,52.359558],[4.890792,52.359568],[4.890711,52.359573],[4.890396,52.3596],[4.890172,52.359644],[4.889921,52.359703],[4.889698,52.359761],[4.889466,52.359838],[4.889241,52.359942],[4.888322,52.360379],[4.887856,52.360613],[4.887262,52.360883],[4.886714,52.361134],[4.886299,52.361343],[4.88478,52.362059],[4.883826,52.362509],[4.883719,52.362585],[4.883644,52.362668],[4.883591,52.362755],[4.883295,52.363226],[4.8832,52.363369],[4.883101,52.363465],[4.882958,52.363575],[4.882822,52.363677],[4.882745,52.363711],[4.882634,52.363741],[4.882353,52.363769]]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 7 | 19","Lijn_select":"01|07|19"}},{"id":103,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.882353,52.363769],[4.882353,52.363769],[4.882061,52.363805],[4.881949,52.363831],[4.881867,52.363866],[4.881805,52.363904],[4.881573,52.364099],[4.881349,52.364265],[4.881011,52.364481],[4.880703,52.36469],[4.880532,52.364841],[4.880385,52.36501],[4.880247,52.36518],[4.880142,52.36535],[4.879973,52.365721],[4.879826,52.366197],[4.87974,52.366394],[4.879627,52.366598],[4.878869,52.36767],[4.878181,52.368617]]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 7 | 19","Lijn_select":"05|07|19"}},{"id":104,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.875379,52.372085],[4.874363,52.371848],[4.872129,52.37134],[4.871919,52.371289],[4.871548,52.371194],[4.870907,52.37105],[4.870471,52.370966],[4.870007,52.370867]]},"properties":{"Modaliteit":"Tram","Lijn":"13 | 19","Lijn_select":"13|19"}},{"id":105,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.87587,52.371902],[4.875804,52.371985],[4.875748,52.372029],[4.875691,52.372058],[4.875614,52.372081],[4.875509,52.372094],[4.875417,52.372088],[4.875379,52.372085]]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19}},{"id":106,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.876004,52.372235],[4.875856,52.372196],[4.875379,52.372085]]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13}},{"id":107,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.898105,52.376918],[4.896487,52.375715],[4.895954,52.375302],[4.894597,52.374212],[4.894055,52.37381],[4.893422,52.37334],[4.893264,52.373168],[4.893165,52.373014],[4.892993,52.37273],[4.892938,52.372612],[4.892902,52.37248],[4.892884,52.37236],[4.892844,52.371739],[4.892794,52.371433],[4.892567,52.370548],[4.892485,52.370279],[4.892027,52.369139],[4.892011,52.369034],[4.892017,52.368976],[4.892063,52.368822],[4.892165,52.368647],[4.892263,52.368501],[4.892454,52.3683],[4.893152,52.367745],[4.893397,52.367543],[4.893504,52.367408],[4.893535,52.367202],[4.893544,52.367103]]},"properties":{"Modaliteit":"Tram","Lijn":"4 | 14 | 24","Lijn_select":"04|14|24"}},{"id":108,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.896943,52.378003],[4.895951,52.377784],[4.895826,52.377741],[4.895732,52.377698],[4.895618,52.377624],[4.895122,52.377156],[4.895002,52.377059],[4.894853,52.376958],[4.894678,52.376856],[4.894433,52.37673],[4.894118,52.376557],[4.893721,52.376302],[4.893349,52.376065],[4.89313,52.375915],[4.892139,52.37524],[4.891972,52.375103],[4.890988,52.37399],[4.89091,52.373861],[4.890713,52.373432],[4.890649,52.373301]]},"properties":{"Modaliteit":"Tram","Lijn":"2 | 11 | 12 | 13 | 17","Lijn_select":"02|11|12|13|17"}},{"id":109,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.984554,52.311029],[4.983346,52.312371],[4.982487,52.31328],[4.981554,52.3143],[4.980039,52.315984],[4.979459,52.316612],[4.977731,52.318503],[4.976756,52.319584],[4.97581,52.320612],[4.974418,52.322134],[4.973049,52.323625],[4.971998,52.324772],[4.971668,52.325148],[4.971302,52.325551],[4.971018,52.325821],[4.970659,52.326126],[4.970109,52.326589],[4.969837,52.326816],[4.969525,52.327037],[4.969161,52.327268],[4.968716,52.327516],[4.966764,52.328618],[4.964961,52.329835],[4.964311,52.330266],[4.963928,52.330512],[4.963549,52.330714],[4.963278,52.33084],[4.962866,52.330987],[4.962719,52.331034],[4.962104,52.331164],[4.961573,52.331241],[4.961146,52.331278],[4.960766,52.331292],[4.960359,52.331279],[4.95989,52.331246],[4.959511,52.331187],[4.95908,52.331093],[4.958666,52.330973],[4.956452,52.330264],[4.954548,52.329664],[4.953697,52.329399],[4.95283,52.3291],[4.951603,52.328683],[4.949939,52.328113],[4.947989,52.327356],[4.946413,52.326787],[4.945239,52.326387],[4.944481,52.326094],[4.944067,52.325916],[4.943101,52.325452],[4.942264,52.325034],[4.941757,52.324804],[4.941486,52.324677],[4.941027,52.324495],[4.940665,52.324363],[4.940257,52.324253],[4.93997,52.32419],[4.939588,52.324125],[4.939211,52.324081],[4.938726,52.324056],[4.938338,52.324062],[4.937881,52.324092],[4.937593,52.324124],[4.937285,52.324175],[4.93694,52.324251],[4.936573,52.324354],[4.936194,52.324485],[4.935097,52.324909]]},"properties":{"Modaliteit":"Metro","Lijn":53,"Lijn_select":53}},{"id":110,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.937518,52.40604],[4.936402,52.405158],[4.935486,52.404439],[4.934825,52.403926],[4.934011,52.403283],[4.932934,52.402437],[4.932004,52.40169],[4.931196,52.40107],[4.930542,52.400554],[4.929363,52.399632],[4.928844,52.399231],[4.928061,52.398631],[4.927568,52.398234],[4.927209,52.397948],[4.92669,52.397499],[4.926351,52.397197],[4.925999,52.396872],[4.925647,52.396519],[4.925455,52.396316],[4.925295,52.39615],[4.925123,52.395963],[4.924944,52.395757],[4.92474,52.395523],[4.924567,52.395317],[4.924363,52.395075],[4.924121,52.394754],[4.924,52.394595],[4.923847,52.394381],[4.923739,52.394222],[4.923592,52.394001],[4.923497,52.39385],[4.923395,52.393703],[4.923224,52.393438],[4.923065,52.393192],[4.922791,52.392776],[4.92246,52.392265],[4.922295,52.392007],[4.922168,52.391841],[4.922028,52.391642],[4.921881,52.391472],[4.921721,52.391274],[4.921523,52.391067],[4.92121,52.390754],[4.9208,52.390388],[4.920441,52.390106],[4.919961,52.389741],[4.919492,52.389415],[4.918838,52.389001],[4.918318,52.388695],[4.917785,52.388392],[4.917393,52.388185],[4.916975,52.387962],[4.916622,52.387783],[4.916249,52.387595],[4.915934,52.38744],[4.915632,52.387285],[4.915092,52.38701],[4.914623,52.386771],[4.91416,52.386536],[4.913691,52.386301],[4.913319,52.386109],[4.91303,52.385962],[4.912753,52.385818],[4.911417,52.385149],[4.910716,52.384814],[4.910022,52.384483],[4.909565,52.384268],[4.908794,52.383905],[4.908107,52.383574],[4.907541,52.383307],[4.906943,52.383032],[4.906461,52.382813],[4.905908,52.382549],[4.90533,52.382262],[4.904835,52.382039],[4.904392,52.38182],[4.904026,52.381621],[4.903724,52.381438],[4.903467,52.381278],[4.903281,52.381147],[4.903095,52.381012],[4.902878,52.380857],[4.902705,52.380722],[4.9025,52.380571],[4.902288,52.380416],[4.90207,52.380253],[4.901865,52.380094],[4.901705,52.379955],[4.901513,52.379788],[4.90136,52.379645],[4.901168,52.379459],[4.901047,52.379328],[4.900887,52.379165],[4.900644,52.378923],[4.900478,52.378748],[4.900344,52.378609],[4.900146,52.378403],[4.899852,52.378097],[4.899778,52.378021],[4.899482,52.377716],[4.899271,52.37749],[4.899111,52.377335],[4.898779,52.377026],[4.898484,52.376799],[4.898196,52.376612],[4.897843,52.376413],[4.897489,52.376238],[4.897264,52.376134],[4.897007,52.376014],[4.896622,52.375811],[4.896295,52.375604],[4.895699,52.375135],[4.894873,52.374487],[4.894515,52.374205],[4.894131,52.373915],[4.893734,52.373597],[4.893497,52.373387],[4.893299,52.373208],[4.893184,52.373069],[4.893121,52.372962],[4.893045,52.372823],[4.892982,52.372677],[4.892932,52.37253],[4.892901,52.37238],[4.892871,52.37219],[4.89286,52.372012],[4.892849,52.371838],[4.892845,52.371641],[4.892834,52.371435],[4.892827,52.371475],[4.892792,52.37113],[4.892744,52.370826],[4.892651,52.370474],[4.89254,52.369991],[4.892491,52.369769],[4.892461,52.369552],[4.89245,52.369382],[4.892471,52.369224],[4.892525,52.369062],[4.892611,52.368849],[4.892743,52.36862],[4.892848,52.368486],[4.893024,52.368281],[4.893136,52.368143],[4.893228,52.367994],[4.893294,52.367852],[4.893347,52.367721],[4.893374,52.367579],[4.893402,52.367405],[4.893423,52.367291],[4.893399,52.367133],[4.893368,52.366982],[4.893325,52.366788],[4.893282,52.36663],[4.893226,52.366432],[4.893188,52.36629],[4.893114,52.366028],[4.892614,52.364528],[4.892283,52.363562],[4.892088,52.363016],[4.892001,52.362763],[4.891919,52.362541],[4.891762,52.362176],[4.891567,52.361737],[4.891409,52.361361],[4.891296,52.361091],[4.89119,52.360798],[4.891077,52.36047],[4.890946,52.360078],[4.890735,52.359294],[4.890669,52.358903],[4.890596,52.358432],[4.890549,52.358037],[4.890533,52.357708],[4.890479,52.3574],[4.890388,52.35683],[4.890285,52.356217],[4.890251,52.355841],[4.890255,52.35549],[4.890285,52.355082],[4.89034,52.354798],[4.890454,52.354455],[4.890646,52.353969],[4.890865,52.353433],[4.891045,52.352959],[4.891204,52.352548],[4.891325,52.35215],[4.891359,52.351972],[4.89141,52.351506],[4.891471,52.350636],[4.891466,52.349893],[4.891421,52.349347],[4.89138,52.348948],[4.891296,52.348382],[4.890998,52.346159],[4.890819,52.34487],[4.890795,52.344688],[4.890796,52.344577],[4.890798,52.344459],[4.890826,52.344241],[4.890894,52.343878],[4.890962,52.34359],[4.891151,52.342859],[4.891273,52.342322],[4.891382,52.34186],[4.89155,52.341197],[4.891632,52.340802],[4.891687,52.340574],[4.891721,52.340384],[4.891742,52.340222],[4.891737,52.340095],[4.891713,52.339949],[4.891676,52.339803],[4.891613,52.339632],[4.891499,52.339454],[4.891378,52.339295],[4.891206,52.339125],[4.891014,52.33897],[4.890796,52.338838],[4.890584,52.338723],[4.890391,52.338647],[4.890211,52.338579],[4.890019,52.338515],[4.88978,52.338459],[4.889458,52.338402],[4.889201,52.338365],[4.888981,52.338352],[4.888626,52.338351],[4.888368,52.338366],[4.888,52.338408],[4.887612,52.338485],[4.886993,52.338651]]},"properties":{"Modaliteit":"Metro","Lijn":52,"Lijn_select":52}},{"id":111,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.882353,52.363769],[4.882531,52.363852],[4.882619,52.363918],[4.882875,52.364148],[4.883064,52.364332],[4.88322,52.364425],[4.884471,52.365018],[4.886451,52.365957],[4.887839,52.366616],[4.888117,52.366724],[4.888507,52.36685],[4.888961,52.366999],[4.889464,52.367163],[4.889579,52.367241],[4.88964,52.367325],[4.889656,52.367402],[4.889641,52.367469],[4.889583,52.367551],[4.888838,52.368124],[4.888783,52.368197],[4.888764,52.36828],[4.888787,52.368351],[4.888836,52.368418],[4.889042,52.368564],[4.889175,52.368682],[4.889239,52.368778],[4.889264,52.368853],[4.889295,52.369255],[4.889336,52.36943],[4.889395,52.369577],[4.889807,52.370243],[4.889881,52.370352],[4.889969,52.370448],[4.89017,52.370631],[4.890258,52.370723],[4.89031,52.370803],[4.89062,52.371293],[4.890651,52.371361],[4.890679,52.371455],[4.890686,52.37154],[4.890604,52.372822],[4.890595,52.372971],[4.890587,52.37311],[4.890607,52.373185],[4.890649,52.373301]]},"properties":{"Modaliteit":"Tram","Lijn":"2 | 11 | 12","Lijn_select":"02|11|12"}},{"id":112,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.890649,52.373301],[4.890587,52.373253],[4.890514,52.373219],[4.890425,52.373195],[4.890326,52.373187],[4.889581,52.373216],[4.888347,52.37328],[4.886899,52.373428],[4.886606,52.373472],[4.88644,52.373509],[4.88625,52.373579],[4.88603,52.373705],[4.885786,52.373843],[4.885628,52.373905],[4.885457,52.373951],[4.88531,52.373975],[4.885172,52.37399],[4.884111,52.374029],[4.883441,52.374049],[4.883306,52.374036],[4.883198,52.374017],[4.879969,52.373215],[4.877283,52.372546],[4.876004,52.372235]]},"properties":{"Modaliteit":"Tram","Lijn":"13 | 17","Lijn_select":"13|17"}},{"id":113,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.873102,52.340796],[4.872176,52.340759],[4.870961,52.340715],[4.8697,52.340656],[4.868875,52.340624],[4.868734,52.340598],[4.868612,52.340545],[4.868527,52.340471],[4.868487,52.340398],[4.868475,52.340299],[4.868646,52.338754],[4.868695,52.338217],[4.868701,52.338097],[4.868721,52.337674],[4.868731,52.337036],[4.868735,52.336696],[4.868796,52.336194]]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 6","Lijn_select":"05|06"}},{"id":114,"type":"Feature","geometry":{"type":"LineString","coordinates":[[4.876907,52.347091],[4.87659,52.345019],[4.876581,52.344862],[4.876745,52.343202],[4.876776,52.342898],[4.876945,52.341216],[4.876933,52.341137],[4.876884,52.341065],[4.876826,52.341017],[4.876752,52.340975],[4.876669,52.340947],[4.876559,52.34093],[4.876419,52.340921],[4.875916,52.340903],[4.874765,52.34086],[4.873946,52.340829],[4.873417,52.340808],[4.873102,52.340796]]},"properties":{"Modaliteit":"Tram","Lijn":5,"Lijn_select":"05"}}]}
--------------------------------------------------------------------------------
/sample_data/task3_analyze_data/TRAMMETRO_PUNTEN_2019.json:
--------------------------------------------------------------------------------
1 | {"type":"FeatureCollection","features":[{"id":1,"type":"Feature","geometry":{"type":"Point","coordinates":[4.893349,52.376064]},"properties":{"Modaliteit":"Tram","Lijn":"2 | 11 | 12 | 13 | 17","Lijn_select":"02|11|12|13|17","RADIUS":3}},{"id":2,"type":"Feature","geometry":{"type":"Point","coordinates":[4.853122,52.358377]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 11 | 17","Lijn_select":"01|11|17","RADIUS":3}},{"id":3,"type":"Feature","geometry":{"type":"Point","coordinates":[4.82733,52.357809]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 17","Lijn_select":"01|17","RADIUS":3}},{"id":4,"type":"Feature","geometry":{"type":"Point","coordinates":[4.889295,52.369254]},"properties":{"Modaliteit":"Tram","Lijn":"2 | 11 | 12","Lijn_select":"02|11|12","RADIUS":3}},{"id":5,"type":"Feature","geometry":{"type":"Point","coordinates":[4.884471,52.365017]},"properties":{"Modaliteit":"Tram","Lijn":"2 | 11 | 12","Lijn_select":"02|11|12","RADIUS":3}},{"id":6,"type":"Feature","geometry":{"type":"Point","coordinates":[4.886451,52.365956]},"properties":{"Modaliteit":"Tram","Lijn":"2 | 11 | 12","Lijn_select":"02|11|12","RADIUS":3}},{"id":7,"type":"Feature","geometry":{"type":"Point","coordinates":[4.888961,52.366998]},"properties":{"Modaliteit":"Tram","Lijn":"2 | 11 | 12","Lijn_select":"02|11|12","RADIUS":3}},{"id":8,"type":"Feature","geometry":{"type":"Point","coordinates":[4.77478,52.353738]},"properties":{"Modaliteit":"Tram","Lijn":1,"Lijn_select":"01","RADIUS":3}},{"id":9,"type":"Feature","geometry":{"type":"Point","coordinates":[4.776851,52.35291]},"properties":{"Modaliteit":"Tram","Lijn":1,"Lijn_select":"01","RADIUS":3}},{"id":10,"type":"Feature","geometry":{"type":"Point","coordinates":[4.783292,52.350331]},"properties":{"Modaliteit":"Tram","Lijn":1,"Lijn_select":"01","RADIUS":3}},{"id":11,"type":"Feature","geometry":{"type":"Point","coordinates":[4.794752,52.350978]},"properties":{"Modaliteit":"Tram","Lijn":1,"Lijn_select":"01","RADIUS":3}},{"id":12,"type":"Feature","geometry":{"type":"Point","coordinates":[4.802261,52.352498]},"properties":{"Modaliteit":"Tram","Lijn":1,"Lijn_select":"01","RADIUS":3}},{"id":13,"type":"Feature","geometry":{"type":"Point","coordinates":[4.808848,52.35389]},"properties":{"Modaliteit":"Tram","Lijn":1,"Lijn_select":"01","RADIUS":3}},{"id":14,"type":"Feature","geometry":{"type":"Point","coordinates":[4.875292,52.362745]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 3 | 11","Lijn_select":"01|03|11","RADIUS":3}},{"id":15,"type":"Feature","geometry":{"type":"Point","coordinates":[4.860101,52.358961]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 11","Lijn_select":"01|11","RADIUS":3}},{"id":16,"type":"Feature","geometry":{"type":"Point","coordinates":[4.940195,52.347751]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19,"RADIUS":3}},{"id":17,"type":"Feature","geometry":{"type":"Point","coordinates":[4.947654,52.343067]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19,"RADIUS":3}},{"id":18,"type":"Feature","geometry":{"type":"Point","coordinates":[4.954538,52.339603]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19,"RADIUS":3}},{"id":19,"type":"Feature","geometry":{"type":"Point","coordinates":[4.95864,52.338752]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19,"RADIUS":3}},{"id":20,"type":"Feature","geometry":{"type":"Point","coordinates":[4.965745,52.33749]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19,"RADIUS":3}},{"id":21,"type":"Feature","geometry":{"type":"Point","coordinates":[4.969582,52.336756]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19,"RADIUS":3}},{"id":22,"type":"Feature","geometry":{"type":"Point","coordinates":[4.929373,52.361012]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 3","Lijn_select":"01|03","RADIUS":3}},{"id":23,"type":"Feature","geometry":{"type":"Point","coordinates":[4.810142,52.356394]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 17","Lijn_select":"01|17","RADIUS":3}},{"id":24,"type":"Feature","geometry":{"type":"Point","coordinates":[4.840037,52.35795]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 17","Lijn_select":"01|17","RADIUS":3}},{"id":25,"type":"Feature","geometry":{"type":"Point","coordinates":[4.853284,52.361465]},"properties":{"Modaliteit":"Tram","Lijn":17,"Lijn_select":17,"RADIUS":3}},{"id":26,"type":"Feature","geometry":{"type":"Point","coordinates":[4.853184,52.363668]},"properties":{"Modaliteit":"Tram","Lijn":17,"Lijn_select":17,"RADIUS":3}},{"id":27,"type":"Feature","geometry":{"type":"Point","coordinates":[4.867549,52.365968]},"properties":{"Modaliteit":"Tram","Lijn":"7 | 17","Lijn_select":"07|17","RADIUS":3}},{"id":28,"type":"Feature","geometry":{"type":"Point","coordinates":[4.872169,52.367239]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 7 | 17","Lijn_select":"03|07|17","RADIUS":3}},{"id":29,"type":"Feature","geometry":{"type":"Point","coordinates":[4.882353,52.363768]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 2 | 5 | 7 | 11 | 12 | 19","Lijn_select":"01|02|05|07|11|12|19","RADIUS":3}},{"id":30,"type":"Feature","geometry":{"type":"Point","coordinates":[4.788602,52.349769]},"properties":{"Modaliteit":"Tram","Lijn":1,"Lijn_select":"01","RADIUS":3}},{"id":31,"type":"Feature","geometry":{"type":"Point","coordinates":[4.86625,52.360447]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 11","Lijn_select":"01|11","RADIUS":3}},{"id":32,"type":"Feature","geometry":{"type":"Point","coordinates":[4.86987,52.38423]},"properties":{"Modaliteit":"Tram","Lijn":5,"Lijn_select":"05","RADIUS":3}},{"id":33,"type":"Feature","geometry":{"type":"Point","coordinates":[4.881063,52.381491]},"properties":{"Modaliteit":"Tram","Lijn":3,"Lijn_select":"03","RADIUS":3}},{"id":34,"type":"Feature","geometry":{"type":"Point","coordinates":[4.937336,52.376736]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07","RADIUS":3}},{"id":35,"type":"Feature","geometry":{"type":"Point","coordinates":[4.821464,52.381318]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07","RADIUS":3}},{"id":36,"type":"Feature","geometry":{"type":"Point","coordinates":[4.875046,52.384355]},"properties":{"Modaliteit":"Tram","Lijn":5,"Lijn_select":"05","RADIUS":3}},{"id":37,"type":"Feature","geometry":{"type":"Point","coordinates":[4.926464,52.368266]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07","RADIUS":3}},{"id":38,"type":"Feature","geometry":{"type":"Point","coordinates":[4.93846,52.373499]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07","RADIUS":3}},{"id":39,"type":"Feature","geometry":{"type":"Point","coordinates":[4.914325,52.36248]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 7 | 19","Lijn_select":"01|07|19","RADIUS":3}},{"id":40,"type":"Feature","geometry":{"type":"Point","coordinates":[4.890948,52.359625]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 7 | 19 | 24 | 52","Lijn_select":"01|07|19|24|52","RADIUS":3}},{"id":41,"type":"Feature","geometry":{"type":"Point","coordinates":[4.887262,52.360882]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 7 | 19","Lijn_select":"01|07|19","RADIUS":3}},{"id":42,"type":"Feature","geometry":{"type":"Point","coordinates":[4.883593,52.385037]},"properties":{"Modaliteit":"Tram","Lijn":3,"Lijn_select":"03","RADIUS":3}},{"id":43,"type":"Feature","geometry":{"type":"Point","coordinates":[4.877053,52.383178]},"properties":{"Modaliteit":"Tram","Lijn":5,"Lijn_select":"05","RADIUS":3}},{"id":44,"type":"Feature","geometry":{"type":"Point","coordinates":[4.879194,52.381133]},"properties":{"Modaliteit":"Tram","Lijn":5,"Lijn_select":"05","RADIUS":3}},{"id":45,"type":"Feature","geometry":{"type":"Point","coordinates":[4.918934,52.363599]},"properties":{"Modaliteit":"Tram","Lijn":"7 | 14 | 19","Lijn_select":"07|14|19","RADIUS":3}},{"id":46,"type":"Feature","geometry":{"type":"Point","coordinates":[4.924564,52.366765]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07","RADIUS":3}},{"id":47,"type":"Feature","geometry":{"type":"Point","coordinates":[4.929696,52.370251]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07","RADIUS":3}},{"id":48,"type":"Feature","geometry":{"type":"Point","coordinates":[4.934366,52.372892]},"properties":{"Modaliteit":"Tram","Lijn":"7 | 26","Lijn_select":"07|26","RADIUS":3}},{"id":49,"type":"Feature","geometry":{"type":"Point","coordinates":[4.86393,52.37053]},"properties":{"Modaliteit":"Tram","Lijn":"13 | 19","Lijn_select":"13|19","RADIUS":3}},{"id":50,"type":"Feature","geometry":{"type":"Point","coordinates":[4.857454,52.378117]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19,"RADIUS":3}},{"id":51,"type":"Feature","geometry":{"type":"Point","coordinates":[4.891112,52.352783]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 12 | 24 | 52","Lijn_select":"03|12|24|52","RADIUS":3}},{"id":52,"type":"Feature","geometry":{"type":"Point","coordinates":[4.851314,52.382567]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19,"RADIUS":3}},{"id":53,"type":"Feature","geometry":{"type":"Point","coordinates":[4.846421,52.385881]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19,"RADIUS":3}},{"id":54,"type":"Feature","geometry":{"type":"Point","coordinates":[4.891167,52.347338]},"properties":{"Modaliteit":"Tram","Lijn":12,"Lijn_select":12,"RADIUS":3}},{"id":55,"type":"Feature","geometry":{"type":"Point","coordinates":[4.891992,52.340211]},"properties":{"Modaliteit":"Tram","Lijn":"4 | 52","Lijn_select":"04|52","RADIUS":3}},{"id":56,"type":"Feature","geometry":{"type":"Point","coordinates":[4.900816,52.344522]},"properties":{"Modaliteit":"Tram","Lijn":4,"Lijn_select":"04","RADIUS":3}},{"id":57,"type":"Feature","geometry":{"type":"Point","coordinates":[4.896595,52.342992]},"properties":{"Modaliteit":"Tram","Lijn":4,"Lijn_select":"04","RADIUS":3}},{"id":58,"type":"Feature","geometry":{"type":"Point","coordinates":[4.893045,52.341903]},"properties":{"Modaliteit":"Tram","Lijn":4,"Lijn_select":"04","RADIUS":3}},{"id":59,"type":"Feature","geometry":{"type":"Point","coordinates":[4.867284,52.301248]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 6","Lijn_select":"05|06","RADIUS":3}},{"id":60,"type":"Feature","geometry":{"type":"Point","coordinates":[4.855365,52.370913]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13,"RADIUS":3}},{"id":61,"type":"Feature","geometry":{"type":"Point","coordinates":[4.858565,52.374683]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19,"RADIUS":3}},{"id":62,"type":"Feature","geometry":{"type":"Point","coordinates":[4.875889,52.372173]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 13 | 17 | 19","Lijn_select":"05|13|17|19","RADIUS":3}},{"id":63,"type":"Feature","geometry":{"type":"Point","coordinates":[4.88236,52.352851]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 5 | 12 | 24","Lijn_select":"03|05|12|24","RADIUS":3}},{"id":64,"type":"Feature","geometry":{"type":"Point","coordinates":[4.854874,52.380556]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19,"RADIUS":3}},{"id":65,"type":"Feature","geometry":{"type":"Point","coordinates":[4.895131,52.346932]},"properties":{"Modaliteit":"Tram","Lijn":12,"Lijn_select":12,"RADIUS":3}},{"id":66,"type":"Feature","geometry":{"type":"Point","coordinates":[4.899977,52.34669]},"properties":{"Modaliteit":"Tram","Lijn":12,"Lijn_select":12,"RADIUS":3}},{"id":67,"type":"Feature","geometry":{"type":"Point","coordinates":[4.891548,52.35019]},"properties":{"Modaliteit":"Tram","Lijn":12,"Lijn_select":12,"RADIUS":3}},{"id":68,"type":"Feature","geometry":{"type":"Point","coordinates":[4.890517,52.373154]},"properties":{"Modaliteit":"Tram","Lijn":"2 | 11 | 12 | 13 | 17","Lijn_select":"02|11|12|13|17","RADIUS":3}},{"id":69,"type":"Feature","geometry":{"type":"Point","coordinates":[4.812453,52.376422]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13,"RADIUS":3}},{"id":70,"type":"Feature","geometry":{"type":"Point","coordinates":[4.832248,52.379714]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07","RADIUS":3}},{"id":71,"type":"Feature","geometry":{"type":"Point","coordinates":[4.826829,52.380564]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07","RADIUS":3}},{"id":72,"type":"Feature","geometry":{"type":"Point","coordinates":[4.827318,52.374404]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13,"RADIUS":3}},{"id":73,"type":"Feature","geometry":{"type":"Point","coordinates":[4.844122,52.369427]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13,"RADIUS":3}},{"id":74,"type":"Feature","geometry":{"type":"Point","coordinates":[4.848647,52.373174]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07","RADIUS":3}},{"id":75,"type":"Feature","geometry":{"type":"Point","coordinates":[4.806468,52.376938]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13,"RADIUS":3}},{"id":76,"type":"Feature","geometry":{"type":"Point","coordinates":[4.803274,52.377254]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13,"RADIUS":3}},{"id":77,"type":"Feature","geometry":{"type":"Point","coordinates":[4.850266,52.370032]},"properties":{"Modaliteit":"Tram","Lijn":"7 | 13","Lijn_select":"07|13","RADIUS":3}},{"id":78,"type":"Feature","geometry":{"type":"Point","coordinates":[4.838209,52.369641]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13,"RADIUS":3}},{"id":79,"type":"Feature","geometry":{"type":"Point","coordinates":[4.818878,52.372842]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07","RADIUS":3}},{"id":80,"type":"Feature","geometry":{"type":"Point","coordinates":[4.896578,52.366237]},"properties":{"Modaliteit":"Tram","Lijn":"4 | 14","Lijn_select":"04|14","RADIUS":3}},{"id":81,"type":"Feature","geometry":{"type":"Point","coordinates":[4.911175,52.366621]},"properties":{"Modaliteit":"Tram","Lijn":14,"Lijn_select":14,"RADIUS":3}},{"id":82,"type":"Feature","geometry":{"type":"Point","coordinates":[4.915418,52.365155]},"properties":{"Modaliteit":"Tram","Lijn":14,"Lijn_select":14,"RADIUS":3}},{"id":83,"type":"Feature","geometry":{"type":"Point","coordinates":[4.819025,52.375688]},"properties":{"Modaliteit":"Tram","Lijn":"7 | 13","Lijn_select":"07|13","RADIUS":3}},{"id":84,"type":"Feature","geometry":{"type":"Point","coordinates":[4.951403,52.365165]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 14","Lijn_select":"03|14","RADIUS":3}},{"id":85,"type":"Feature","geometry":{"type":"Point","coordinates":[4.905703,52.367815]},"properties":{"Modaliteit":"Tram","Lijn":14,"Lijn_select":14,"RADIUS":3}},{"id":86,"type":"Feature","geometry":{"type":"Point","coordinates":[4.923985,52.361912]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19,"RADIUS":3}},{"id":87,"type":"Feature","geometry":{"type":"Point","coordinates":[4.9253,52.360011]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 3 | 19","Lijn_select":"01|03|19","RADIUS":3}},{"id":88,"type":"Feature","geometry":{"type":"Point","coordinates":[4.947757,52.364866]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 14","Lijn_select":"03|14","RADIUS":3}},{"id":89,"type":"Feature","geometry":{"type":"Point","coordinates":[4.83811,52.371481]},"properties":{"Modaliteit":"Tram","Lijn":13,"Lijn_select":13,"RADIUS":3}},{"id":90,"type":"Feature","geometry":{"type":"Point","coordinates":[4.845753,52.37787]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07|14","RADIUS":3}},{"id":91,"type":"Feature","geometry":{"type":"Point","coordinates":[4.943728,52.362206]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 14","Lijn_select":"03|14","RADIUS":3}},{"id":92,"type":"Feature","geometry":{"type":"Point","coordinates":[4.940099,52.36169]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 14","Lijn_select":"03|14","RADIUS":3}},{"id":93,"type":"Feature","geometry":{"type":"Point","coordinates":[4.930968,52.353482]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19,"RADIUS":3}},{"id":94,"type":"Feature","geometry":{"type":"Point","coordinates":[4.935169,52.350852]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19,"RADIUS":3}},{"id":95,"type":"Feature","geometry":{"type":"Point","coordinates":[4.927677,52.365918]},"properties":{"Modaliteit":"Tram","Lijn":14,"Lijn_select":14,"RADIUS":3}},{"id":96,"type":"Feature","geometry":{"type":"Point","coordinates":[4.932681,52.365805]},"properties":{"Modaliteit":"Tram","Lijn":14,"Lijn_select":14,"RADIUS":3}},{"id":97,"type":"Feature","geometry":{"type":"Point","coordinates":[4.937672,52.36432]},"properties":{"Modaliteit":"Tram","Lijn":14,"Lijn_select":14,"RADIUS":3}},{"id":98,"type":"Feature","geometry":{"type":"Point","coordinates":[4.894056,52.373809]},"properties":{"Modaliteit":"Tram","Lijn":"4 | 14 | 24","Lijn_select":"04|14|24","RADIUS":3}},{"id":99,"type":"Feature","geometry":{"type":"Point","coordinates":[4.892383,52.369793]},"properties":{"Modaliteit":"Tram","Lijn":"4 | 14 | 24 | 52","Lijn_select":"04|14|24|52","RADIUS":3}},{"id":100,"type":"Feature","geometry":{"type":"Point","coordinates":[4.89322,52.366481]},"properties":{"Modaliteit":"Tram","Lijn":24,"Lijn_select":24,"RADIUS":3}},{"id":101,"type":"Feature","geometry":{"type":"Point","coordinates":[4.890706,52.357065]},"properties":{"Modaliteit":"Tram","Lijn":24,"Lijn_select":24,"RADIUS":3}},{"id":102,"type":"Feature","geometry":{"type":"Point","coordinates":[4.857702,52.341119]},"properties":{"Modaliteit":"Tram","Lijn":24,"Lijn_select":24,"RADIUS":3}},{"id":103,"type":"Feature","geometry":{"type":"Point","coordinates":[4.87973,52.35654]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 5 | 12","Lijn_select":"03|05|12","RADIUS":3}},{"id":104,"type":"Feature","geometry":{"type":"Point","coordinates":[4.786916,52.355541]},"properties":{"Modaliteit":"Tram","Lijn":17,"Lijn_select":17,"RADIUS":3}},{"id":105,"type":"Feature","geometry":{"type":"Point","coordinates":[4.791589,52.356485]},"properties":{"Modaliteit":"Tram","Lijn":17,"Lijn_select":17,"RADIUS":3}},{"id":106,"type":"Feature","geometry":{"type":"Point","coordinates":[4.7991,52.357997]},"properties":{"Modaliteit":"Tram","Lijn":17,"Lijn_select":17,"RADIUS":3}},{"id":107,"type":"Feature","geometry":{"type":"Point","coordinates":[4.803208,52.359411]},"properties":{"Modaliteit":"Tram","Lijn":17,"Lijn_select":17,"RADIUS":3}},{"id":108,"type":"Feature","geometry":{"type":"Point","coordinates":[4.807562,52.359615]},"properties":{"Modaliteit":"Tram","Lijn":17,"Lijn_select":17,"RADIUS":3}},{"id":109,"type":"Feature","geometry":{"type":"Point","coordinates":[4.877957,52.3688]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 7 | 17 | 19","Lijn_select":"05|07|17|19","RADIUS":3}},{"id":110,"type":"Feature","geometry":{"type":"Point","coordinates":[4.870338,52.370879]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 13 | 19","Lijn_select":"03|13|19","RADIUS":3}},{"id":111,"type":"Feature","geometry":{"type":"Point","coordinates":[4.856601,52.351503]},"properties":{"Modaliteit":"Tram","Lijn":2,"Lijn_select":"02","RADIUS":3}},{"id":112,"type":"Feature","geometry":{"type":"Point","coordinates":[4.845334,52.351577]},"properties":{"Modaliteit":"Tram","Lijn":2,"Lijn_select":"02","RADIUS":3}},{"id":113,"type":"Feature","geometry":{"type":"Point","coordinates":[4.816064,52.346456]},"properties":{"Modaliteit":"Tram","Lijn":2,"Lijn_select":"02","RADIUS":3}},{"id":114,"type":"Feature","geometry":{"type":"Point","coordinates":[4.810925,52.346353]},"properties":{"Modaliteit":"Tram","Lijn":2,"Lijn_select":"02","RADIUS":3}},{"id":115,"type":"Feature","geometry":{"type":"Point","coordinates":[4.803959,52.344989]},"properties":{"Modaliteit":"Tram","Lijn":2,"Lijn_select":"02","RADIUS":3}},{"id":116,"type":"Feature","geometry":{"type":"Point","coordinates":[4.870705,52.356011]},"properties":{"Modaliteit":"Tram","Lijn":2,"Lijn_select":"02","RADIUS":3}},{"id":117,"type":"Feature","geometry":{"type":"Point","coordinates":[4.863509,52.353219]},"properties":{"Modaliteit":"Tram","Lijn":2,"Lijn_select":"02","RADIUS":3}},{"id":118,"type":"Feature","geometry":{"type":"Point","coordinates":[4.840882,52.351544]},"properties":{"Modaliteit":"Tram","Lijn":2,"Lijn_select":"02","RADIUS":3}},{"id":119,"type":"Feature","geometry":{"type":"Point","coordinates":[4.824631,52.346687]},"properties":{"Modaliteit":"Tram","Lijn":2,"Lijn_select":"02","RADIUS":3}},{"id":120,"type":"Feature","geometry":{"type":"Point","coordinates":[4.827482,52.349157]},"properties":{"Modaliteit":"Tram","Lijn":2,"Lijn_select":"02","RADIUS":3}},{"id":121,"type":"Feature","geometry":{"type":"Point","coordinates":[4.84994,52.351302]},"properties":{"Modaliteit":"Tram","Lijn":2,"Lijn_select":"02","RADIUS":3}},{"id":122,"type":"Feature","geometry":{"type":"Point","coordinates":[4.878568,52.358142]},"properties":{"Modaliteit":"Tram","Lijn":"2 | 3 | 5 | 12","Lijn_select":"02|03|05|12","RADIUS":3}},{"id":123,"type":"Feature","geometry":{"type":"Point","coordinates":[4.876776,52.342897]},"properties":{"Modaliteit":"Tram","Lijn":5,"Lijn_select":"05","RADIUS":3}},{"id":124,"type":"Feature","geometry":{"type":"Point","coordinates":[4.876907,52.34709]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 24","Lijn_select":"05|24","RADIUS":3}},{"id":125,"type":"Feature","geometry":{"type":"Point","coordinates":[4.872533,52.346729]},"properties":{"Modaliteit":"Tram","Lijn":24,"Lijn_select":24,"RADIUS":3}},{"id":126,"type":"Feature","geometry":{"type":"Point","coordinates":[5.004306,52.350943]},"properties":{"Modaliteit":"Tram","Lijn":26,"Lijn_select":26,"RADIUS":3}},{"id":127,"type":"Feature","geometry":{"type":"Point","coordinates":[4.927082,52.357206]},"properties":{"Modaliteit":"Tram","Lijn":19,"Lijn_select":19,"RADIUS":3}},{"id":128,"type":"Feature","geometry":{"type":"Point","coordinates":[4.913026,52.37724]},"properties":{"Modaliteit":"Tram","Lijn":26,"Lijn_select":26,"RADIUS":3}},{"id":129,"type":"Feature","geometry":{"type":"Point","coordinates":[4.921583,52.376115]},"properties":{"Modaliteit":"Tram","Lijn":26,"Lijn_select":26,"RADIUS":3}},{"id":130,"type":"Feature","geometry":{"type":"Point","coordinates":[4.961515,52.372019]},"properties":{"Modaliteit":"Tram","Lijn":26,"Lijn_select":26,"RADIUS":3}},{"id":131,"type":"Feature","geometry":{"type":"Point","coordinates":[4.98044,52.362986]},"properties":{"Modaliteit":"Tram","Lijn":26,"Lijn_select":26,"RADIUS":3}},{"id":132,"type":"Feature","geometry":{"type":"Point","coordinates":[4.990814,52.357577]},"properties":{"Modaliteit":"Tram","Lijn":26,"Lijn_select":26,"RADIUS":3}},{"id":133,"type":"Feature","geometry":{"type":"Point","coordinates":[4.995227,52.35523]},"properties":{"Modaliteit":"Tram","Lijn":26,"Lijn_select":26,"RADIUS":3}},{"id":134,"type":"Feature","geometry":{"type":"Point","coordinates":[4.999645,52.352879]},"properties":{"Modaliteit":"Tram","Lijn":26,"Lijn_select":26,"RADIUS":3}},{"id":135,"type":"Feature","geometry":{"type":"Point","coordinates":[4.885244,52.38806]},"properties":{"Modaliteit":"Tram","Lijn":3,"Lijn_select":"03","RADIUS":3}},{"id":136,"type":"Feature","geometry":{"type":"Point","coordinates":[4.917045,52.358582]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 3","Lijn_select":"01|03","RADIUS":3}},{"id":137,"type":"Feature","geometry":{"type":"Point","coordinates":[4.878628,52.378387]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 5","Lijn_select":"03|05","RADIUS":3}},{"id":138,"type":"Feature","geometry":{"type":"Point","coordinates":[4.90491,52.346238]},"properties":{"Modaliteit":"Tram","Lijn":"4 | 12","Lijn_select":"04|12","RADIUS":3}},{"id":139,"type":"Feature","geometry":{"type":"Point","coordinates":[4.909563,52.357316]},"properties":{"Modaliteit":"Tram","Lijn":3,"Lijn_select":"03","RADIUS":3}},{"id":140,"type":"Feature","geometry":{"type":"Point","coordinates":[4.903214,52.351681]},"properties":{"Modaliteit":"Tram","Lijn":4,"Lijn_select":"04","RADIUS":3}},{"id":141,"type":"Feature","geometry":{"type":"Point","coordinates":[4.910983,52.347089]},"properties":{"Modaliteit":"Tram","Lijn":12,"Lijn_select":12,"RADIUS":3}},{"id":142,"type":"Feature","geometry":{"type":"Point","coordinates":[4.932961,52.360931]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 3","Lijn_select":"01|03","RADIUS":3}},{"id":143,"type":"Feature","geometry":{"type":"Point","coordinates":[4.872753,52.374651]},"properties":{"Modaliteit":"Tram","Lijn":3,"Lijn_select":"03","RADIUS":3}},{"id":144,"type":"Feature","geometry":{"type":"Point","coordinates":[4.875346,52.378535]},"properties":{"Modaliteit":"Tram","Lijn":3,"Lijn_select":"03","RADIUS":3}},{"id":145,"type":"Feature","geometry":{"type":"Point","coordinates":[4.904198,52.349061]},"properties":{"Modaliteit":"Tram","Lijn":4,"Lijn_select":"04","RADIUS":3}},{"id":146,"type":"Feature","geometry":{"type":"Point","coordinates":[4.913607,52.358349]},"properties":{"Modaliteit":"Tram","Lijn":3,"Lijn_select":"03","RADIUS":3}},{"id":147,"type":"Feature","geometry":{"type":"Point","coordinates":[4.901248,52.354816]},"properties":{"Modaliteit":"Tram","Lijn":"3 | 4","Lijn_select":"03|04","RADIUS":3}},{"id":148,"type":"Feature","geometry":{"type":"Point","coordinates":[4.894586,52.353248]},"properties":{"Modaliteit":"Tram","Lijn":3,"Lijn_select":"03","RADIUS":3}},{"id":149,"type":"Feature","geometry":{"type":"Point","coordinates":[4.898301,52.363832]},"properties":{"Modaliteit":"Tram","Lijn":4,"Lijn_select":"04","RADIUS":3}},{"id":150,"type":"Feature","geometry":{"type":"Point","coordinates":[4.898988,52.362115]},"properties":{"Modaliteit":"Tram","Lijn":4,"Lijn_select":"04","RADIUS":3}},{"id":151,"type":"Feature","geometry":{"type":"Point","coordinates":[4.898761,52.359517]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 4 | 7 | 19","Lijn_select":"01|04|07|19","RADIUS":3}},{"id":152,"type":"Feature","geometry":{"type":"Point","coordinates":[4.873149,52.340158]},"properties":{"Modaliteit":"Metro","Lijn":"5 | 50 | 51 | 52","Lijn_select":"05|50|51|52","RADIUS":5}},{"id":153,"type":"Feature","geometry":{"type":"Point","coordinates":[4.868842,52.331423]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 6","Lijn_select":"05|06","RADIUS":3}},{"id":154,"type":"Feature","geometry":{"type":"Point","coordinates":[4.868701,52.338096]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 6","Lijn_select":"05|06","RADIUS":3}},{"id":155,"type":"Feature","geometry":{"type":"Point","coordinates":[4.869154,52.321624]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 6","Lijn_select":"05|06","RADIUS":3}},{"id":156,"type":"Feature","geometry":{"type":"Point","coordinates":[4.856897,52.343951]},"properties":{"Modaliteit":"Tram","Lijn":24,"Lijn_select":24,"RADIUS":3}},{"id":157,"type":"Feature","geometry":{"type":"Point","coordinates":[4.870291,52.316558]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 6","Lijn_select":"05|06","RADIUS":3}},{"id":158,"type":"Feature","geometry":{"type":"Point","coordinates":[4.872233,52.312365]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 6","Lijn_select":"05|06","RADIUS":3}},{"id":159,"type":"Feature","geometry":{"type":"Point","coordinates":[4.872513,52.308277]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 6","Lijn_select":"05|06","RADIUS":3}},{"id":160,"type":"Feature","geometry":{"type":"Point","coordinates":[4.871977,52.303247]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 6","Lijn_select":"05|06","RADIUS":3}},{"id":161,"type":"Feature","geometry":{"type":"Point","coordinates":[4.834378,52.357887]},"properties":{"Modaliteit":"Metro","Lijn":"1 | 17 | 50 | 51","Lijn_select":"01|17|50|51","RADIUS":5}},{"id":162,"type":"Feature","geometry":{"type":"Point","coordinates":[4.850835,52.395175]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 51","Lijn_select":"50|51","RADIUS":5}},{"id":163,"type":"Feature","geometry":{"type":"Point","coordinates":[4.989232,52.29634]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 54","Lijn_select":"50|54","RADIUS":5}},{"id":164,"type":"Feature","geometry":{"type":"Point","coordinates":[4.917807,52.331747]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 51","Lijn_select":"50|51","RADIUS":5}},{"id":165,"type":"Feature","geometry":{"type":"Point","coordinates":[4.974169,52.295612]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 54","Lijn_select":"50|54","RADIUS":5}},{"id":166,"type":"Feature","geometry":{"type":"Point","coordinates":[4.83889,52.388596]},"properties":{"Modaliteit":"Metro","Lijn":"19 | 50 | 51","Lijn_select":"19|50|51","RADIUS":5}},{"id":167,"type":"Feature","geometry":{"type":"Point","coordinates":[4.835503,52.37312]},"properties":{"Modaliteit":"Metro","Lijn":"13 | 50 | 51","Lijn_select":"13|50|51","RADIUS":5}},{"id":168,"type":"Feature","geometry":{"type":"Point","coordinates":[4.837885,52.37883]},"properties":{"Modaliteit":"Metro","Lijn":"7 | 50 | 51","Lijn_select":"07|50|51","RADIUS":5}},{"id":169,"type":"Feature","geometry":{"type":"Point","coordinates":[4.834486,52.346536]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 51","Lijn_select":"50|51","RADIUS":5}},{"id":170,"type":"Feature","geometry":{"type":"Point","coordinates":[4.834339,52.351498]},"properties":{"Modaliteit":"Metro","Lijn":"2 | 50 | 51","Lijn_select":"02|50|51","RADIUS":5}},{"id":171,"type":"Feature","geometry":{"type":"Point","coordinates":[4.833954,52.364859]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 51","Lijn_select":"50|51","RADIUS":5}},{"id":172,"type":"Feature","geometry":{"type":"Point","coordinates":[4.857276,52.338387]},"properties":{"Modaliteit":"Metro","Lijn":"24 | 50 | 51","Lijn_select":"24|50|51","RADIUS":5}},{"id":173,"type":"Feature","geometry":{"type":"Point","coordinates":[4.890729,52.336999]},"properties":{"Modaliteit":"Metro","Lijn":"4 | 50 | 51","Lijn_select":"04|50|51","RADIUS":5}},{"id":174,"type":"Feature","geometry":{"type":"Point","coordinates":[4.941473,52.318417]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 54","Lijn_select":"50|54","RADIUS":5}},{"id":175,"type":"Feature","geometry":{"type":"Point","coordinates":[4.947196,52.312125]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 54","Lijn_select":"50|54","RADIUS":5}},{"id":176,"type":"Feature","geometry":{"type":"Point","coordinates":[4.952107,52.306793]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 54","Lijn_select":"50|54","RADIUS":5}},{"id":177,"type":"Feature","geometry":{"type":"Point","coordinates":[4.959985,52.298175]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 54","Lijn_select":"50|54","RADIUS":5}},{"id":178,"type":"Feature","geometry":{"type":"Point","coordinates":[4.936492,52.3236]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 54","Lijn_select":"50|54","RADIUS":5}},{"id":179,"type":"Feature","geometry":{"type":"Point","coordinates":[4.868325,52.334813]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 6 | 24","Lijn_select":"05|06|24","RADIUS":3}},{"id":180,"type":"Feature","geometry":{"type":"Point","coordinates":[4.868971,52.325398]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 6","Lijn_select":"05|06","RADIUS":3}},{"id":181,"type":"Feature","geometry":{"type":"Point","coordinates":[4.920971,52.340035]},"properties":{"Modaliteit":"Metro","Lijn":"51 | 53 | 54","Lijn_select":"51|53|54","RADIUS":5}},{"id":182,"type":"Feature","geometry":{"type":"Point","coordinates":[4.899778,52.37802]},"properties":{"Modaliteit":"Metro","Lijn":"2 | 4 | 11 | 12 | 13 | 14 | 17 | 24 | 26 | 51 | 52 | 53 | 54","Lijn_select":"02|04|11|12|13|14|17|24|26|51|52|53|54","RADIUS":5}},{"id":183,"type":"Feature","geometry":{"type":"Point","coordinates":[4.902406,52.367342]},"properties":{"Modaliteit":"Metro","Lijn":"14 | 51 | 53 | 54","Lijn_select":"14|51|53|54","RADIUS":5}},{"id":184,"type":"Feature","geometry":{"type":"Point","coordinates":[4.907983,52.361166]},"properties":{"Modaliteit":"Metro","Lijn":"1 | 7 | 19 | 51 | 53 | 54","Lijn_select":"01|07|19|51|53|54","RADIUS":5}},{"id":185,"type":"Feature","geometry":{"type":"Point","coordinates":[4.912128,52.354326]},"properties":{"Modaliteit":"Metro","Lijn":"51 | 53 | 54","Lijn_select":"51|53|54","RADIUS":5}},{"id":186,"type":"Feature","geometry":{"type":"Point","coordinates":[4.858529,52.345265]},"properties":{"Modaliteit":"Tram","Lijn":24,"Lijn_select":24,"RADIUS":3}},{"id":187,"type":"Feature","geometry":{"type":"Point","coordinates":[4.866262,52.346333]},"properties":{"Modaliteit":"Tram","Lijn":24,"Lijn_select":24,"RADIUS":3}},{"id":188,"type":"Feature","geometry":{"type":"Point","coordinates":[4.877281,52.349092]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 24","Lijn_select":"05|24","RADIUS":3}},{"id":189,"type":"Feature","geometry":{"type":"Point","coordinates":[4.901306,52.371913]},"properties":{"Modaliteit":"Metro","Lijn":"51 | 53 | 54","Lijn_select":"51|53|54","RADIUS":5}},{"id":190,"type":"Feature","geometry":{"type":"Point","coordinates":[4.918302,52.346656]},"properties":{"Modaliteit":"Metro","Lijn":"12 | 51 | 53 | 54","Lijn_select":"12|51|53|54","RADIUS":5}},{"id":191,"type":"Feature","geometry":{"type":"Point","coordinates":[4.930305,52.329671]},"properties":{"Modaliteit":"Metro","Lijn":"50 | 53 | 54","Lijn_select":"50|53|54","RADIUS":5}},{"id":192,"type":"Feature","geometry":{"type":"Point","coordinates":[4.966764,52.328617]},"properties":{"Modaliteit":"Metro","Lijn":53,"Lijn_select":53,"RADIUS":5}},{"id":193,"type":"Feature","geometry":{"type":"Point","coordinates":[4.973049,52.323624]},"properties":{"Modaliteit":"Metro","Lijn":53,"Lijn_select":53,"RADIUS":5}},{"id":194,"type":"Feature","geometry":{"type":"Point","coordinates":[4.979459,52.316611]},"properties":{"Modaliteit":"Metro","Lijn":53,"Lijn_select":53,"RADIUS":5}},{"id":195,"type":"Feature","geometry":{"type":"Point","coordinates":[4.984554,52.311028]},"properties":{"Modaliteit":"Metro","Lijn":53,"Lijn_select":53,"RADIUS":5}},{"id":196,"type":"Feature","geometry":{"type":"Point","coordinates":[4.946234,52.32673]},"properties":{"Modaliteit":"Metro","Lijn":53,"Lijn_select":53,"RADIUS":5}},{"id":197,"type":"Feature","geometry":{"type":"Point","coordinates":[4.859681,52.364718]},"properties":{"Modaliteit":"Tram","Lijn":"7 | 17","Lijn_select":"07|17","RADIUS":3}},{"id":198,"type":"Feature","geometry":{"type":"Point","coordinates":[4.852487,52.367167]},"properties":{"Modaliteit":"Tram","Lijn":7,"Lijn_select":"07","RADIUS":3}},{"id":199,"type":"Feature","geometry":{"type":"Point","coordinates":[4.859972,52.371492]},"properties":{"Modaliteit":"Tram","Lijn":"13 | 19","Lijn_select":"13|19","RADIUS":3}},{"id":200,"type":"Feature","geometry":{"type":"Point","coordinates":[4.862706,52.364804]},"properties":{"Modaliteit":"Tram","Lijn":"7 | 17","Lijn_select":"07|17","RADIUS":3}},{"id":201,"type":"Feature","geometry":{"type":"Point","coordinates":[4.873149,52.340158]},"properties":{"Modaliteit":"Tram","Lijn":"5 | 6 | 50 | 51 | 52","Lijn_select":"05|06|50|51|52","RADIUS":3}},{"id":202,"type":"Feature","geometry":{"type":"Point","coordinates":[4.834378,52.357887]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 17 | 50 | 51","Lijn_select":"01|17|50|51","RADIUS":3}},{"id":203,"type":"Feature","geometry":{"type":"Point","coordinates":[4.83889,52.388596]},"properties":{"Modaliteit":"Tram","Lijn":"19 | 50 | 51","Lijn_select":"19|50|51","RADIUS":3}},{"id":204,"type":"Feature","geometry":{"type":"Point","coordinates":[4.835503,52.37312]},"properties":{"Modaliteit":"Tram","Lijn":"13 | 50 | 51","Lijn_select":"13|50|51","RADIUS":3}},{"id":205,"type":"Feature","geometry":{"type":"Point","coordinates":[4.837885,52.37883]},"properties":{"Modaliteit":"Tram","Lijn":"7 | 50 | 51","Lijn_select":"07|50|51","RADIUS":3}},{"id":206,"type":"Feature","geometry":{"type":"Point","coordinates":[4.834339,52.351498]},"properties":{"Modaliteit":"Tram","Lijn":"2 | 50 | 51","Lijn_select":"02|50|51","RADIUS":3}},{"id":207,"type":"Feature","geometry":{"type":"Point","coordinates":[4.857276,52.338387]},"properties":{"Modaliteit":"Tram","Lijn":"24 | 50 | 51","Lijn_select":"24|50|51","RADIUS":3}},{"id":208,"type":"Feature","geometry":{"type":"Point","coordinates":[4.890729,52.336999]},"properties":{"Modaliteit":"Tram","Lijn":"4 | 50 | 51","Lijn_select":"04|50|51","RADIUS":3}},{"id":209,"type":"Feature","geometry":{"type":"Point","coordinates":[4.899778,52.37802]},"properties":{"Modaliteit":"Tram","Lijn":"2 | 4 | 11 | 12 | 13 | 14 | 17 | 24 | 26 | 51 | 52 | 53 | 54","Lijn_select":"02|04|11|12|13|14|17|24|26|51|52|53|54","RADIUS":3}},{"id":210,"type":"Feature","geometry":{"type":"Point","coordinates":[4.902406,52.367342]},"properties":{"Modaliteit":"Tram","Lijn":"14 | 51 | 53 | 54","Lijn_select":"14|51|53|54","RADIUS":3}},{"id":211,"type":"Feature","geometry":{"type":"Point","coordinates":[4.907983,52.361166]},"properties":{"Modaliteit":"Tram","Lijn":"1 | 7 | 19 | 51 | 53 | 54","Lijn_select":"01|07|19|51|53|54","RADIUS":3}},{"id":212,"type":"Feature","geometry":{"type":"Point","coordinates":[4.918302,52.346656]},"properties":{"Modaliteit":"Tram","Lijn":"12 | 51 | 53 | 54","Lijn_select":"12|51|53|54","RADIUS":3}},{"id":213,"type":"Feature","geometry":{"type":"Point","coordinates":[4.956452,52.330263]},"properties":{"Modaliteit":"Metro","Lijn":53,"Lijn_select":53,"RADIUS":5}},{"id":214,"type":"Feature","geometry":{"type":"Point","coordinates":[4.968966,52.368932]},"properties":{"Modaliteit":"Tram","Lijn":26,"Lijn_select":26,"RADIUS":3}},{"id":215,"type":"Feature","geometry":{"type":"Point","coordinates":[4.884111,52.374028]},"properties":{"Modaliteit":"Tram","Lijn":"13 | 17","Lijn_select":"13|17","RADIUS":3}},{"id":216,"type":"Feature","geometry":{"type":"Point","coordinates":[4.891992,52.362786]},"properties":{"Modaliteit":"Tram","Lijn":24,"Lijn_select":24,"RADIUS":3}},{"id":217,"type":"Feature","geometry":{"type":"Point","coordinates":[4.891992,52.340211]},"properties":{"Modaliteit":"Metro","Lijn":"4 | 52","Lijn_select":"04|52","RADIUS":5}},{"id":218,"type":"Feature","geometry":{"type":"Point","coordinates":[4.918657,52.388895]},"properties":{"Modaliteit":"Metro","Lijn":52,"Lijn_select":52,"RADIUS":5}},{"id":219,"type":"Feature","geometry":{"type":"Point","coordinates":[4.932234,52.40187]},"properties":{"Modaliteit":"Metro","Lijn":52,"Lijn_select":52,"RADIUS":5}},{"id":220,"type":"Feature","geometry":{"type":"Point","coordinates":[4.892383,52.369793]},"properties":{"Modaliteit":"Metro","Lijn":"4 | 14 | 24 | 52","Lijn_select":"04|14|24|52","RADIUS":5}},{"id":221,"type":"Feature","geometry":{"type":"Point","coordinates":[4.890948,52.359625]},"properties":{"Modaliteit":"Metro","Lijn":"1 | 7 | 19 | 24 | 52","Lijn_select":"01|07|19|24|52","RADIUS":5}},{"id":222,"type":"Feature","geometry":{"type":"Point","coordinates":[4.891112,52.352783]},"properties":{"Modaliteit":"Metro","Lijn":"3 | 12 | 24 | 52","Lijn_select":"03|12|24|52","RADIUS":5}}]}
--------------------------------------------------------------------------------
/sample_data/task3_analyze_data/readme.md:
--------------------------------------------------------------------------------
1 | # Task description
2 | In this task you can explore metro and tram stations in Amsterdam and perform basic GIS operations (buffers, intersects) with them.
3 |
4 | You should add all the vector layers to your project. First you should merge the bars and pubs in to a single vector layer (Merge Vector Layers). Then you should explore the spatial relationship between this newly created layer and the public transport stops. To create a correct buffer for the stops, you need to reproject them. You can do this with Processing toolbox Reprojection tool. After your layer is reprojected, you can use the Buffer tool to create a 200 meter buffer around the stops. After this you should select the OpenStreetMap bars and pubs that are within this distance from the stops and analyze the data in the way you see most informative (e.g. Join attributes by location and create a thematic map). You can use the tram and metro lines to visualize your data.
5 |
6 | OSM bars and pubs collected using QuickOSM. © OpenStreetMap contributors.
7 |
8 | Public transport data was downloaded [here](https://maps.amsterdam.nl/open_geodata/).
9 |
10 | You can find a detailed explanation of the process of buffers and spatial relationships [here](https://www.qgistutorials.com/en/docs/3/performing_spatial_queries.html).
11 |
--------------------------------------------------------------------------------