This project by GreenDIA aims to create a dataset regarding land use in Germany. As a comprehensive dataset of land use in Germany is not available, this project seeks to fill that gap by extracting data from local land use plans and regional sources in Bavaria, Germany.
Follow these instructions to install and set up the project.
An overview of the folder structure and files:
bavaria-building-plans-digitalization/
├── src/ # Source files
│ ├── geodata_bayern_scraping # Scraping Geodata Bayern
│ ├── geoservices_bayern_scraping # Scraping Geoservices
│ ├── pdfs_to_text # Extracting text from PDFs
│ ├── processing_data # Data processing
│ ├── textual_features # Extracting textual features
│ ├── visualizations # Data visualizations
├── data/ # Data files
│ ├── raw/ # Raw data files
│ ├── proc/ # Processed data files
│ ├── final/ # Final data files
├── dictionaries/ # Dictionaries for keyword search
│ ├── keyword_name_of_keyword_search.json
├── README.md # Project documentation
├── requirements.txt # List of dependencies
- Connect to the VM using the provided IP address and credentials:
ssh -i C:\Path\to\PEM\Key greendia-user@IP_Address
- Create a screen session to keep the code running in the background:
screen
If there is already a screen session running (check with `screen -ls`), reattach to it:
screen -r
- To detach from the screen session, press
Ctrl + A
thenD
.