├── .gitattributes ├── .idea ├── copyright │ └── profiles_settings.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── jsLibraryMappings.xml ├── misc.xml ├── modules.xml ├── tutorial-geojson.iml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── data-csv ├── API_SP.POP.TOTL_DS2_en_csv_v2_63973.csv ├── cities15000.csv ├── mortes_acidentes_transito_2016.csv ├── mortes_acidentes_transito_2016_estados.csv ├── municipios.csv ├── populacao_2016_estados.csv └── populacao_2016_municipios.csv ├── data-geojson ├── estados_br.geojson ├── example.geojson ├── municipios_br.geojson ├── ne_110m_admin_0_countries.json └── world.geojson ├── example-accidents ├── choropleth-1.html ├── choropleth-2.html └── graduated-dots.html ├── example-population ├── populacao_brasil_choropleth.html └── populacao_cities_dot_dist.html ├── tools └── filter-map.js └── tutorial ├── map-1.html ├── map-10.html ├── map-11.html ├── map-12.html ├── map-13.html ├── map-14.html ├── map-15.html ├── map-16.html ├── map-17.html ├── map-18.html ├── map-19.html ├── map-2.html ├── map-3.html ├── map-4.html ├── map-5.html ├── map-6.html ├── map-6a.html ├── map-7.html ├── map-8.html └── map-9.html /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | /usr/local/bin/bower 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/tutorial-geojson.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 55 | 56 | 58 | 59 | 61 | 62 | 94 | 95 | 96 | 97 | 98 | true 99 | 100 | 101 | 103 | 104 | 106 | 107 | 111 | 112 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 142 | 143 | 144 | 145 | 148 | 149 | 152 | 153 | 154 | 155 | 158 | 159 | 162 | 163 | 166 | 167 | 168 | 169 | 172 | 173 | 176 | 177 | 180 | 181 | 182 | 183 | 186 | 187 | 190 | 191 | 194 | 195 | 196 | 197 | 200 | 201 | 204 | 205 | 208 | 209 | 210 | 211 | 214 | 215 | 218 | 219 | 222 | 223 | 224 | 225 | 228 | 229 | 232 | 233 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 245 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | project 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | project 294 | 295 | $PROJECT_DIR$ 296 | true 297 | bdd 298 | 299 | DIRECTORY 300 | 301 | false 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 1563219244839 310 | 321 | 322 | 323 | 324 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 352 | 353 | 362 | 363 | 364 | 365 |