Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davwheat/mastedatabasen-dk-scraper
Simple Python tool to scrape Mastedatabasen.dk of all antenna locations across the country, along with their associated operators.
https://github.com/davwheat/mastedatabasen-dk-scraper
Last synced: about 1 month ago
JSON representation
Simple Python tool to scrape Mastedatabasen.dk of all antenna locations across the country, along with their associated operators.
- Host: GitHub
- URL: https://github.com/davwheat/mastedatabasen-dk-scraper
- Owner: davwheat
- License: mit
- Created: 2022-08-22T23:32:22.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-29T12:19:11.000Z (7 months ago)
- Last Synced: 2024-05-01T16:41:18.497Z (7 months ago)
- Language: Python
- Size: 89.3 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mastedatabasen.dk scraper
Simple Python tool to scrape Mastedatabasen.dk of all antenna locations across the country, along with their associated operators.
## Requirements
This script uses modern Python typing features, so you will need **Python 3.8 or later**.
I recommend running this on a Linux-based machine.
## What's Mastedatabasen.dk
Mastedatabasen.dk is the official database of existing and planned antenna positions in Denmark and was established to create greater transparency with the placement of antennas across the country.
[Learn more (Danish only)](https://mastedatabasen.dk/viskort/ContentPages/About.aspx)
## Usage
The scraper consists of two separate scripts, both of which require modules from pip.
**Scraper**
- The scraper fetches a list of every site within the database
- This consists of most of the required information, other than the operator of the site
- For operators, we need to request the metadata of each site with the second script**Metadata Fetcher**
- The metadata fetcher requests information about the operator of a specific site
- This sends one request for each site _location_ (not site) in the database
- This data gets merged into the list of all sites to generate a complete file### Install pip requirements
```
pip install -r requirements.txt
```### Run scraper
This will automatically begin scraping Mastedatabasen.dk for all in-use sites across Denmark. This might take about 10 mins on fast connections due to server performance and paging limitations.
```
python ./scraper.py
```### Run metadata fetcher
By default, Mastedatabasen doesn't include operator info within API requests for multiple points. Instead, detailed info about every point must be requested separately, site-by-site.
With Mastedatabasen currently having over 53,000 sites, this script can take hours to run. Thankfully, API requests often return operator info for multiple sites at once (as each separate frequency is listed internally as a different "site"), so many network requests can be skipped.
The script will automatically read the output from the `scraper.py` script (`sites_current.json`) and load it into memory, then beginning to fetch operator info. When complete, it will output to `sites_current_with_operator.json`. It will also save to this file every 25 requests in case of network issues.
```
python ./metadata_fetcher.py
```#### In case of errors...
Due to the autosave functionality, not much progress should be lost.
1. Make a backup of `sites_current.json`
2. Delete `sites_current.json`
3. Rename `sites_current_with_operator.json` to `sites_current.json`
4. Re-run `python ./metadata_fetcher.py`The script should inform you that only X sites require operator info, while Y sites have been loaded into the script. It will then continue from where it left off.
## License
The MIT license covers the all content within this repository, **except** any `json` files containing data from Mastedatabasen.dk. The content within these remain the copyright of the Danish Energy Agency (Energistyrelsen).