Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
1 result

gde-importer

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    Cecilia Nievas authored
    f98fb03c
    History

    gde-importer

    Importer of aggregated exposure models to serve as input for the Global Dynamic Exposure (GDE) model.

    Installing gde-importer

    Software dependencies

    • Python >= 3.7

    Python libraries

    • numpy
    • pandas
    • pyyaml
    • openpyxl

    Install

    git clone https://git.gfz-potsdam.de/dynamicexposure/globaldynamicexposure/gde-importer.git
    cd gde-importer
    pip3 install -e .

    Preparation

    Create necessary databases

    1. If it does not already exist, create the GDE Tiles database as shown here.
    2. If it does not already exist, create the OBM Tiles database as shown here and populate the obm_built_area_assessments table (using, for example, obmgapanalysis).

    Obtain data for the European Seismic Risk Model 2020 (ESRM20)

    Currently the gde-importer only supports the European Seismic Risk Model 2020 (ESRM20). The data for ESRM20 needs to be retrieved and placed in appropriate directories before running gde-importer.

    1. Download main ESRM20 data. You can do this in two alternative ways:
      1. In your shell: $ wget --recursive --no-parent https://datasources.dynamicexposure.org/ESRM20/data/
      2. Clone the ESRM20 repository to a local path of your choice following these instructions.
    2. Obtain ESRM20-compatible boundaries (geodata files of administrative divisions): $ wget --http-user=USERNAME --http-password=PASSWORD --recursive --no-parent https://datasources.dynamicexposure.org/private/ESRM20_boundaries/data/ (Unfortunately we are not allowed to redistribute the data and you'll need a password to access the sources. Read here for more information about the data being used.)
    3. Place the downloaded data into paths and directories of your preference.

    Configuration

    Quickstart:

    Copy the file config_example.yml to your working directory as config.yml and provide the necessary parameters:

    • exposure_format: esrm20
    • data_pathname: /path/to/downloaded/data/ESRM20
    • boundaries_pathname: /path/to/downloaded/ESRM20_boundaries

    Configuration file

    The following configuration options are available in the config.yml:

    • model_name: Name of the input aggregated exposure model (only relevant for the user).
    • exposure_format: Format of the input aggregated exposure model. Currently supported values: esrm20.
    • data_pathname: Path to directory that contains the model data.
    • boundaries_pathname: Path to directory that contains the boundary geodata files.
    • occupancies_to_run: List of occupancies for which the code will be run, separated by ", " (comma and space). They need to exist for the indicated exposure format. Currently supported values: residential, commercial.
    • exposure_entities_to_run: List of names of exposure entities for which the code will be run. Currently supported options:
      • "all": The list of names will be retrieved from the metadata of the input aggregated exposure model.
      • A comma-space-separated list of entity names: This list of names will be used.
      • A full path to a .txt or .csv file: The list of names will be retrieved from the indicated .txt/.csv file.
    • exposure_entities_code: Either "ISO3" or a nested structure with exposure entities names and 3-character codes. For running ESRM20, "ISO3" is the preferred option.
    • number_cores: Number of cores used for parallelisation.
    • database_built_up: Credentials for the database where the built-up areas per quadtile are stored.
    • database_gde_tiles: Credentials for the database where information on the GDE tiles is stored.

    Running gde-importer

    From the working directory (where you placed config.yml), run the code by typing:

    gdeimporter

    Copyright and copyleft

    Copyright (C) 2021

    • Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum GFZ

    This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

    This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

    You should have received a copy of the GNU Affero General Public License along with this program. If not, see http://www.gnu.org/licenses/.

    Also add information on how to contact you by electronic and paper mail.

    If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements.

    See the LICENSE for the full license text.