| Conditions | 1 | 
| Total Lines | 300 | 
| Code Lines | 150 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | from geoalchemy2 import Geometry  | 
            ||
| 359 | def sources():  | 
            ||
| 360 |     return { | 
            ||
| 361 |         "bgr_inspee": { | 
            ||
| 362 | "title": "Salt structures in Northern Germany",  | 
            ||
| 363 | "description": 'The application "Information System Salt Structures" provides information about the '  | 
            ||
| 364 | "areal distribution of salt structures (stocks and pillows) in Northern Germany. With general structural "  | 
            ||
| 365 | "describing information, such as depth, secondary thickness, types of use or state of exploration, queries "  | 
            ||
| 366 | "can be conducted. Contours of the salt structures can be displayed at horizontal cross-sections at four "  | 
            ||
| 367 | "different depths up to a maximum depth of 2000 m below NN. A data sheet with information and further "  | 
            ||
| 368 | "reading is provided for every single salt structure. Taking into account the fact that this work was "  | 
            ||
| 369 | "undertaken at a scale for providing an overview and not for investigation of single structures, the scale "  | 
            ||
| 370 | "of display is limited to a minimum of 1:300.000. This web application is the product of a BMWi-funded "  | 
            ||
| 371 | 'research project "InSpEE" running from the year 2012 to 2015. The acronym stands for "Information system '  | 
            ||
| 372 | "salt structures: planning basis, selection criteria and estimation of the potential for the construction "  | 
            ||
| 373 | 'of salt caverns for the storage of renewable energies (hydrogen and compressed air)".',  | 
            ||
| 374 | "path": "https://produktcenter.bgr.de/terraCatalog/DetailResult.do?fileIdentifier=338136ea-261a-4569-a2bf-92999d09bad2",  | 
            ||
| 375 |             "licenses": [license_geonutzv("© BGR, Hannover, 2015")], | 
            ||
| 376 | },  | 
            ||
| 377 |         "bgr_inspeeds": { | 
            ||
| 378 | "title": "Flat layered salts in Germany",  | 
            ||
| 379 | "description": "Which salt formations are suitable for storing hydrogen or compressed air? "  | 
            ||
| 380 | "In the InSpEE-DS research project, scientists developed requirements and criteria for the assessment "  | 
            ||
| 381 | "of suitable sites even if their exploration is still at an early stage and there is little knowledge of "  | 
            ||
| 382 | "the salinaries' structures. Scientists at DEEP.KBB GmbH in Hanover, worked together with their project "  | 
            ||
| 383 | "partners at the Federal Institute for Geosciences and Natural Resources and the Leibniz University "  | 
            ||
| 384 | "Hanover, Institute for Geotechnics Hanover, to develop the planning basis for the site selection and for "  | 
            ||
| 385 | "the construction of storage caverns in flat layered salt and multiple or double saliniferous formations. "  | 
            ||
| 386 | "Such caverns could store renewable energy in the form of hydrogen or compressed air. While the previous "  | 
            ||
| 387 | "project InSpEE was limited to salt formations of great thickness in Northern Germany, salt horizons of "  | 
            ||
| 388 | "different ages have now been examined all over Germany. To estimate the potential, depth contour maps of "  | 
            ||
| 389 | "the top and the base as well as thickness maps of the respective stratigraphic units and reference "  | 
            ||
| 390 | "profiles were developed. Information on compressed air and hydrogen storage potential were given for the "  | 
            ||
| 391 | "identified areas and for the individual federal states. The web service "  | 
            ||
| 392 | '"Information system for flat layered salt" gives access to this data. The scale of display is limited '  | 
            ||
| 393 | "to a minimum of 1:300.000. This geographic information is product of a BMWi-funded research project "  | 
            ||
| 394 | '"InSpEE-DS" running from the year 2015 to 2019. The acronym stands for "Information system salt: '  | 
            ||
| 395 | "planning basis, selection criteria and estimation of the potential for the construction of salt caverns "  | 
            ||
| 396 | 'for the storage of renewable energies (hydrogen and compressed air) - double saline and flat salt layers".',  | 
            ||
| 397 | "path": "https://produktcenter.bgr.de/terraCatalog/DetailResult.do?fileIdentifier=630430b8-4025-4d6f-9a62-025b53bc8b3d",  | 
            ||
| 398 |             "licenses": [license_geonutzv("© BGR, Hannover, 2021")], | 
            ||
| 399 | },  | 
            ||
| 400 |         "bgr_inspeeds_data_bundle": { | 
            ||
| 401 | "title": "Informationssystem Salz: Planungsgrundlagen, Auswahlkriterien und Potenzialabschätzung für die "  | 
            ||
| 402 | "Errichtung von Salzkavernen zur Speicherung von Erneuerbaren Energien (Wasserstoff und Druckluft) – "  | 
            ||
| 403 | "Doppelsalinare und flach lagernde Salzschichten. Teilprojekt Bewertungskriterien und Potenzialabschätzung",  | 
            ||
| 404 | "description": "Shapefiles corresponding to the data provided in figure 7-1 "  | 
            ||
| 405 | "(Donadei, S., et al., 2020, p. 7-5). The energy storage potential data are provided per federal state "  | 
            ||
| 406 | " in table 7-1 (Donadei, S., et al., 2020, p. 7-4). Note: Please include all bgr data sources when using "  | 
            ||
| 407 | "the data.",  | 
            ||
| 408 | "path": "https://dx.doi.org/10.5281/zenodo.4896526",  | 
            ||
| 409 |             "licenses": [license_geonutzv("© BGR, Hannover, 2021")], | 
            ||
| 410 | },  | 
            ||
| 411 |         "bgr_inspeeds_report": { | 
            ||
| 412 | "title": "Informationssystem Salz: Planungsgrundlagen, Auswahlkriterien und Potenzialabschätzung für die "  | 
            ||
| 413 | "Errichtung von Salzkavernen zur Speicherung von Erneuerbaren Energien (Wasserstoff und Druckluft) – "  | 
            ||
| 414 | "Doppelsalinare und flach lagernde Salzschichten. Teilprojekt Bewertungskriterien und Potenzialabschätzung",  | 
            ||
| 415 | "description": "The report includes availability of saltstructures for energy storage and energy "  | 
            ||
| 416 | "storage potential accumulated per federal state in Germany.",  | 
            ||
| 417 | "path": "https://www.bgr.bund.de/DE/Themen/Nutzung_tieferer_Untergrund_CO2Speicherung/Downloads/InSpeeDS_TP_Bewertungskriterien.pdf?__blob=publicationFile&v=3",  | 
            ||
| 418 |             "licenses": [license_geonutzv("© BGR, Hannover, 2021")], | 
            ||
| 419 | },  | 
            ||
| 420 |         "demandregio": { | 
            ||
| 421 | "title": "DemandRegio",  | 
            ||
| 422 | "description": "Harmonisierung und Entwicklung von Verfahren zur regionalen und "  | 
            ||
| 423 | "zeitlichen Auflösung von Energienachfragen",  | 
            ||
| 424 | "path": "https://doi.org/10.34805/ffe-119-20",  | 
            ||
| 425 |             "licenses": [license_ccby("© FZJ, TUB, FfE")], | 
            ||
| 426 | },  | 
            ||
| 427 |         "egon-data": { | 
            ||
| 428 | "title": "eGon-data",  | 
            ||
| 429 | "description": "Workflow to download, process and generate data sets"  | 
            ||
| 430 | "suitable for the further research conducted in the project eGon (https://ego-n.org/)",  | 
            ||
| 431 | "path": "https://github.com/openego/eGon-data",  | 
            ||
| 432 |             "licenses": [license_agpl("© eGon development team")], | 
            ||
| 433 | },  | 
            ||
| 434 |         "egon-data_bundle": { | 
            ||
| 435 | "title": "Data bundle for egon-data",  | 
            ||
| 436 | "description": "Zenodo repository to provide several different input data sets for eGon-data",  | 
            ||
| 437 | "path": "https://sandbox.zenodo.org/record/1167119",  | 
            ||
| 438 |             "licenses": [license_ccby("© eGon development team")], | 
            ||
| 439 | },  | 
            ||
| 440 |         "Einspeiseatlas": { | 
            ||
| 441 | "title": "Einspeiseatlas",  | 
            ||
| 442 | "description": "Im Einspeiseatlas finden sie sich die Informationen "  | 
            ||
| 443 | "zu realisierten und geplanten Biomethanaufbereitungsanlagen - mit "  | 
            ||
| 444 | "und ohne Einspeisung ins Gasnetz - in Deutschland und weltweit.",  | 
            ||
| 445 | "path": "https://www.biogaspartner.de/einspeiseatlas/",  | 
            ||
| 446 | "licenses": [  | 
            ||
| 447 |                 license_ccby("Deutsche Energie-Agentur (dena, 2021)") | 
            ||
| 448 | ],  | 
            ||
| 449 | },  | 
            ||
| 450 |         "era5": { | 
            ||
| 451 | "title": "ERA5 global reanalysis",  | 
            ||
| 452 | "description": "ERA5 is the fifth generation ECMWF reanalysis for the global climate "  | 
            ||
| 453 | "and weather for the past 4 to 7 decades. Currently data is available from 1950, "  | 
            ||
| 454 | "split into Climate Data Store entries for 1950-1978 (preliminary back extension) and f"  | 
            ||
| 455 | "rom 1979 onwards (final release plus timely updates, this page). ERA5 replaces the ERA-Interim reanalysis. "  | 
            ||
| 456 | "See the online ERA5 documentation "  | 
            ||
| 457 | "(https://confluence.ecmwf.int/display/CKB/ERA5%3A+data+documentation#ERA5:datadocumentation-Dataupdatefrequency) "  | 
            ||
| 458 | "for more information.",  | 
            ||
| 459 | "path": "https://confluence.ecmwf.int/display/CKB/ERA5%3A+data+documentation#ERA5:datadocumentation-Dataupdatefrequency",  | 
            ||
| 460 | "licenses": [  | 
            ||
| 461 |                 { | 
            ||
| 462 | "name": "Licence to use Copernicus Products",  | 
            ||
| 463 | "title": "Licence to use Copernicus Products",  | 
            ||
| 464 | "path": "https://cds.climate.copernicus.eu/api/v2/terms/static/licence-to-use-copernicus-products.pdf",  | 
            ||
| 465 | "instruction": "This Licence is free of charge, worldwide, non-exclusive, royalty free and perpetual. "  | 
            ||
| 466 | "Access to Copernicus Products is given for any purpose in so far as it is lawful, whereas use "  | 
            ||
| 467 | "may include, but is not limited to: reproduction; distribution; communication to the public; "  | 
            ||
| 468 | "adaptation, modification and combination with other data and information; or any "  | 
            ||
| 469 | "combination of the foregoing",  | 
            ||
| 470 | "attribution": "Copernicus Climate Change Service (C3S) Climate Data Store",  | 
            ||
| 471 | },  | 
            ||
| 472 | ],  | 
            ||
| 473 | },  | 
            ||
| 474 |         "dsm-heitkoetter": { | 
            ||
| 475 | "title": "Assessment of the regionalised demand response potential "  | 
            ||
| 476 | "in Germany using an open source tool and dataset",  | 
            ||
| 477 | "description": "With the expansion of renewable energies in Germany, "  | 
            ||
| 478 | "imminent grid congestion events occur more often. One approach for "  | 
            ||
| 479 | "avoiding curtailment of renewable energies is to cover excess feed-in "  | 
            ||
| 480 | "by demand response. As curtailment is often a local phenomenon, in "  | 
            ||
| 481 | "this work we determine the regional demand response potential for "  | 
            ||
| 482 | "the 401 German administrative districts with a temporal resolution "  | 
            ||
| 483 | "of 15 min, including technical, socio-technical and economic "  | 
            ||
| 484 | "restrictions.",  | 
            ||
| 485 | "path": "https://doi.org/10.1016/j.adapen.2020.100001",  | 
            ||
| 486 | "licenses": [  | 
            ||
| 487 | license_ccby(  | 
            ||
| 488 | "© 2020 German Aerospace Center (DLR), "  | 
            ||
| 489 | "Institute of Networked Energy Systems."  | 
            ||
| 490 | )  | 
            ||
| 491 | ],  | 
            ||
| 492 | },  | 
            ||
| 493 | |||
| 494 |         "hotmaps_industrial_sites": { | 
            ||
| 495 | "titel": "industrial_sites_Industrial_Database",  | 
            ||
| 496 | "description": "Georeferenced industrial sites of energy-intensive industry sectors in EU28",  | 
            ||
| 497 | "path": "https://gitlab.com/hotmaps/industrial_sites/industrial_sites_Industrial_Database",  | 
            ||
| 498 | "licenses": [  | 
            ||
| 499 |                 license_ccby("© 2016-2018: Pia Manz, Tobias Fleiter") | 
            ||
| 500 | ],  | 
            ||
| 501 | },  | 
            ||
| 502 |         "hotmaps_scen_buildings": { | 
            ||
| 503 | "titel": "scen_current_building_demand",  | 
            ||
| 504 | "description": "Energy demand scenarios in buidlings until the year 2050 - current policy scenario",  | 
            ||
| 505 | "path": "https://gitlab.com/hotmaps/scen_current_building_demand",  | 
            ||
| 506 | "licenses": [  | 
            ||
| 507 | license_ccby(  | 
            ||
| 508 | "© 2016-2018: Michael Hartner, Lukas Kranzl, Sebastian Forthuber, Sara Fritz, Andreas Müller"  | 
            ||
| 509 | )  | 
            ||
| 510 | ],  | 
            ||
| 511 | },  | 
            ||
| 512 |         "mastr": { | 
            ||
| 513 | "title": "open-MaStR power unit registry",  | 
            ||
| 514 | "description": "Raw data download Marktstammdatenregister (MaStR) data "  | 
            ||
| 515 | "using the webservice. All data from the Marktstammdatenregister is included."  | 
            ||
| 516 | "There are duplicates included. For further information read in the documentation"  | 
            ||
| 517 | "of the original data source: https://www.marktstammdatenregister.de/MaStRHilfe/subpages/statistik.html",  | 
            ||
| 518 | "path": "https://sandbox.zenodo.org/record/808086",  | 
            ||
| 519 | "licenses": [  | 
            ||
| 520 | licenses_datenlizenz_deutschland(  | 
            ||
| 521 | "© 2021 Bundesnetzagentur für Elektrizität, Gas, Telekommunikation, Post und Eisenbahnen"  | 
            ||
| 522 | )  | 
            ||
| 523 | ],  | 
            ||
| 524 | },  | 
            ||
| 525 |         "nep2021": { | 
            ||
| 526 | "title": "Netzentwicklungsplan Strom 2035, Version 2021, erster Entwurf",  | 
            ||
| 527 | "description": "Die vier deutschen Übertragungsnetzbetreiber zeigen mit "  | 
            ||
| 528 | "diesem ersten Entwurf des Netzentwicklungsplans 2035, Version 2021, den "  | 
            ||
| 529 | "benötigten Netzausbau für die nächsten Jahre auf. Der NEP-Bericht beschreibt "  | 
            ||
| 530 | "keine konkreten Trassenverläufe von Übertragungsleitungen, sondern er "  | 
            ||
| 531 | "dokumentiert den notwendigen Übertragungsbedarf zwischen Netzknoten. "  | 
            ||
| 532 | "Das heißt, es werden Anfangs- und Endpunkte von zukünftigen Leitungsverbindungen "  | 
            ||
| 533 | "definiert sowie konkrete Empfehlungen für den Aus- und Neubau der Übertragungsnetze "  | 
            ||
| 534 | "an Land und auf See in Deutschland gemäß den Detailanforderungen im § 12 EnWG gegeben.",  | 
            ||
| 535 | "path": "https://zenodo.org/record/5743452#.YbCoz7so8go",  | 
            ||
| 536 |             "licenses": [license_ccby("© Übertragungsnetzbetreiber")], | 
            ||
| 537 | },  | 
            ||
| 538 |         "openffe_gas": { | 
            ||
| 539 | "title": "Load Curves of the Industry Sector – eXtremOS solidEU Scenario (Europe NUTS-3)",  | 
            ||
| 540 | "description": "Load Curves of the Industry Sector for the eXtremOS solidEU Scenario Scenario at NUTS-3-Level. "  | 
            ||
| 541 | "More information at https://extremos.ffe.de/.",  | 
            ||
| 542 | "path": "http://opendata.ffe.de/dataset/load-curves-of-the-industry-sector-extremos-solideu-scenario-europe-nuts-3/",  | 
            ||
| 543 |             "licenses": [license_ccby("© FfE, eXtremOS Project")], | 
            ||
| 544 | },  | 
            ||
| 545 |         "openstreetmap": { | 
            ||
| 546 | "title": "OpenStreetMap Data Extracts (Geofabrik)",  | 
            ||
| 547 | "description": "Full data extract of OpenStreetMap data for defined"  | 
            ||
| 548 | "spatial extent at ''referenceDate''",  | 
            ||
| 549 | "path": "https://download.geofabrik.de/europe/germany-210101.osm.pbf",  | 
            ||
| 550 |             "licenses": [license_odbl("© OpenStreetMap contributors")], | 
            ||
| 551 | },  | 
            ||
| 552 |         "peta": { | 
            ||
| 553 | "title": "Pan-European Thermal Atlas, Peta version 5.0.1",  | 
            ||
| 554 | "description": "Modelled Heat Demand distribution (in GJ per hectare grid cell) for residential and service "  | 
            ||
| 555 | "heat demands for space heating and hot water for the year 2015 using HRE4 data and the combined "  | 
            ||
| 556 | "top-down bottom-up approach of HRE4. "  | 
            ||
| 557 | "National sector-specific heat demand data, derived by the FORECAST model in HRE4 for residential "  | 
            ||
| 558 | "(delivered energy, for space heating and hot water) and service-sector (delivered energy, for space heating, hot "  | 
            ||
| 559 | "water and process heat) buildings for the year 2015, were distributed using modelled, spatial "  | 
            ||
| 560 | "statistics based floor areas in 100x100m grids and a population grid. "  | 
            ||
| 561 | "For further information please see the documentation available on the Heat Roadmap Europe website, "  | 
            ||
| 562 | "in particular D2.3 report: Methodologies and assumptions used in the mapping.",  | 
            ||
| 563 | "path": "https://s-eenergies-open-data-euf.hub.arcgis.com/search",  | 
            ||
| 564 | "licenses": [  | 
            ||
| 565 | license_ccby(  | 
            ||
| 566 | "© Europa-Universität Flensburg, Halmstad University and Aalborg University"  | 
            ||
| 567 | )  | 
            ||
| 568 | ],  | 
            ||
| 569 | },  | 
            ||
| 570 |         "pipeline_classification": { | 
            ||
| 571 | "title": "Technical pipeline characteristics for high pressure pipelines",  | 
            ||
| 572 | "description": "Parameters for the classification of gas pipelines, "  | 
            ||
| 573 | "the whole documentation could is available at: "  | 
            ||
| 574 | "https://www.econstor.eu/bitstream/10419/173388/1/1011162628.pdf",  | 
            ||
| 575 | "path": "https://zenodo.org/record/5743452",  | 
            ||
| 576 |             "licenses": [license_ccby("© DIW Berlin, 2017")], | 
            ||
| 577 | },  | 
            ||
| 578 |         "schmidt": { | 
            ||
| 579 | "title": "Supplementary material to the masters thesis: "  | 
            ||
| 580 | "NUTS-3 Regionalization of Industrial Load Shifting Potential in Germany using a Time-Resolved Model",  | 
            ||
| 581 | "description": "Supplementary material to the named masters thesis, containing data on industrial processes"  | 
            ||
| 582 | "for the estimation of NUTS-3 load shifting potential of suitable electrically powered industrial processes"  | 
            ||
| 583 | "(cement milling, mechanical pulping, paper production, air separation).",  | 
            ||
| 584 | "path": "https://zenodo.org/record/3613767",  | 
            ||
| 585 |             "licenses": [license_ccby("© 2019 Danielle Schmidt")], | 
            ||
| 586 | },  | 
            ||
| 587 |         "SciGRID_gas": { | 
            ||
| 588 | "title": "SciGRID_gas IGGIELGN",  | 
            ||
| 589 | "description": "The SciGRID_gas dataset represents the European "  | 
            ||
| 590 | "gas transport network (pressure levels of 20 bars and higher) "  | 
            ||
| 591 | "including the geo-referenced transport pipelines, compressor "  | 
            ||
| 592 | "stations, LNG terminals, storage, production sites, gas power "  | 
            ||
| 593 | "plants, border points, and demand time series. ",  | 
            ||
| 594 | "path": "https://dx.doi.org/10.5281/zenodo.4896526",  | 
            ||
| 595 | "licenses": [  | 
            ||
| 596 | license_ccby(  | 
            ||
| 597 | "Jan Diettrich; Adam Pluta; Wided Medjroubi (DLR-VE)"  | 
            ||
| 598 | ),  | 
            ||
| 599 | ],  | 
            ||
| 600 | },  | 
            ||
| 601 |         "seenergies": { | 
            ||
| 602 | "title": "D5 1 Industry Dataset With Demand Data",  | 
            ||
| 603 | "description": "Georeferenced EU28 industrial sites with quantified annual excess heat volumes and demand data"  | 
            ||
| 604 | "within main sectors: Chemical industry, Iron and steel, Non-ferrous metals, Non-metallic minerals, Paper and printing, and Refineries.",  | 
            ||
| 605 | "path": "https://s-eenergies-open-data-euf.hub.arcgis.com/datasets/5e36c0af918040ed936b4e4c101f611d_0/about",  | 
            ||
| 606 |             "licenses": [license_ccby("© Europa-Universität Flensburg")], | 
            ||
| 607 | },  | 
            ||
| 608 |         "technology-data": { | 
            ||
| 609 | "titel": "Energy System Technology Data v0.3.0",  | 
            ||
| 610 | "description": "This script compiles assumptions on energy system "  | 
            ||
| 611 | "technologies (such as costs, efficiencies, lifetimes, etc.) for "  | 
            ||
| 612 | "chosen years (e.g. [2020, 2030, 2050]) from a variety of sources "  | 
            ||
| 613 | "into CSV files to be read by energy system modelling software. "  | 
            ||
| 614 | "The merged outputs have standardized cost years, technology names, "  | 
            ||
| 615 | "units and source information.",  | 
            ||
| 616 | "path": "https://github.com/PyPSA/technology-data/tree/v0.3.0",  | 
            ||
| 617 | "licenses": [  | 
            ||
| 618 | license_agpl(  | 
            ||
| 619 | "© Marta Victoria (Aarhus University), Kun Zhu (Aarhus University), Elisabeth Zeyen (TUB), Tom Brown (TUB)"  | 
            ||
| 620 | )  | 
            ||
| 621 | ],  | 
            ||
| 622 | },  | 
            ||
| 623 |         "tyndp": { | 
            ||
| 624 | "title": "Ten-Year Network Development Plan (TYNDP) 2020 Scenarios",  | 
            ||
| 625 | "description": "ENTSOs’ TYNDP 2020 Scenario Report describes possible European energy futures up to 2050. "  | 
            ||
| 626 | "Scenarios are not forecasts; they set out a range of possible futures used by the ENTSOs to test future "  | 
            ||
| 627 | "electricity and gas infrastructure needs and projects. The scenarios are ambitious as they deliver "  | 
            ||
| 628 | "a low carbon energy system for Europe by 2050. The ENTSOs have developed credible scenarios that are "  | 
            ||
| 629 | "guided by technically sound pathways, while reflecting country by country specifics, so that a pan-European "  | 
            ||
| 630 | "low carbon future is achieved.",  | 
            ||
| 631 | "path": "https://tyndp.entsoe.eu/maps-data",  | 
            ||
| 632 |             "licenses": [license_ccby("© ENTSO-E and ENTSOG")], | 
            ||
| 633 | },  | 
            ||
| 634 |         "vg250": { | 
            ||
| 635 | "title": "Verwaltungsgebiete 1:250 000 (Ebenen)",  | 
            ||
| 636 | "description": "Der Datenbestand umfasst sämtliche Verwaltungseinheiten der "  | 
            ||
| 637 | "hierarchischen Verwaltungsebenen vom Staat bis zu den Gemeinden "  | 
            ||
| 638 | "mit ihren Grenzen, statistischen Schlüsselzahlen, Namen der "  | 
            ||
| 639 | "Verwaltungseinheit sowie die spezifische Bezeichnung der "  | 
            ||
| 640 | "Verwaltungsebene des jeweiligen Landes.",  | 
            ||
| 641 | "path": "https://daten.gdz.bkg.bund.de/produkte/vg/vg250_ebenen_0101/2020/vg250_01-01.geo84.shape.ebenen.zip",  | 
            ||
| 642 | "licenses": [  | 
            ||
| 643 | licenses_datenlizenz_deutschland(  | 
            ||
| 644 | "© Bundesamt für Kartographie und Geodäsie "  | 
            ||
| 645 | "2020 (Daten verändert)"  | 
            ||
| 646 | )  | 
            ||
| 647 | ],  | 
            ||
| 648 | },  | 
            ||
| 649 |         "zensus": { | 
            ||
| 650 | "title": "Statistisches Bundesamt (Destatis) - Ergebnisse des Zensus 2011 zum Download",  | 
            ||
| 651 | "description": "Als Download bieten wir Ihnen auf dieser Seite zusätzlich zur "  | 
            ||
| 652 | "Zensusdatenbank CSV- und teilweise Excel-Tabellen mit umfassenden Personen-, Haushalts- "  | 
            ||
| 653 | "und Familien- sowie Gebäude- und Wohnungsmerkmalen. Die Ergebnisse liegen auf Bundes-, "  | 
            ||
| 654 | "Länder-, Kreis- und Gemeindeebene vor. Außerdem sind einzelne Ergebnisse für Gitterzellen verfügbar.",  | 
            ||
| 655 | "path": "https://www.zensus2011.de/SharedDocs/Aktuelles/Ergebnisse/DemografischeGrunddaten.html;jsessionid=E0A2B4F894B258A3B22D20448F2E4A91.2_cid380?nn=3065474",  | 
            ||
| 656 | "licenses": [  | 
            ||
| 657 | licenses_datenlizenz_deutschland(  | 
            ||
| 658 | "© Statistische Ämter des Bundes und der Länder 2014"  | 
            ||
| 659 | )  | 
            ||
| 724 |