Download a single photo from https://nea.geofly.eu/?desktop= of various zoom levels. (Download and stitch tiles)
Execute the file:
setup.bat
Execute the file:
start.bat
Python 3 is required. (Should work with all major versions)
git clone https://github.com/fabyr/neageoflymapper.git
cd neageoflymapper
python3 -m venv env
source env/bin/activate
python -m pip install -r requirements.txt
python main.pyIn order to find the ID of an Image,
use the Devtools of a browser as follows (Can usually be opened by pressing F12):
- Select the
NetworkorNetworkingtab

- Enter
getFeature?into the filter

- Upon selection of a
Circleon the map, the corresponding Network request showing the ID should appear.

In this Case the ID is55345746. This is the ID to enter in the program.
You can call the python file directly with some arguments to skip interactive prompting:
$ python main.py -h
usage: main.py [-h] [-i ID] [-z ZOOM]
Downloads an Image by ID from https://nea.geofly.eu.
If not arguments are set, values will be prompted for interactively.
options:
-h, --help show this help message and exit
-i ID, --id ID Image ID.
-z ZOOM, --zoom ZOOM Zoom level. You can specify 'max' or 'min' to use the highest/lowest zoom level for
any image.