This project provides an interactive web-based map for POTA (Parks on the Air) locations, designed for amateur radio enthusiasts. It allows users to explore and find Parks on the Air for their amateur radio operations.
To build and run this application using Docker, follow these steps:
Ensure you have Docker installed on your system.
Clone the repository:
git clone https://github.com/your-username/OSM-POTA-Map.git
cd OSM-POTA-Map
Build the Docker image:
docker build -t osm-pota-map .
Run the Docker container:
docker run -d -p 8080:80 --name osm-pota-map-container osm-pota-map
This command runs the container in detached mode (-d), maps port 8080 on your host to port 80 in the container (-p 8080:80), and names the container "osm-pota-map-container".
Access the application by opening a web browser and navigating to http://localhost:8080
.
The application uses the following optional environment variables:
MATOMO_URL
: The URL of your Matomo analytics instance.MATOMO_SITE_ID
: The site ID for your application in Matomo.To set these variables when running the Docker container, use the -e
flag:
docker run -d -p 8080:80 -e MATOMO_URL="https://your-matomo-url.com/" -e MATOMO_SITE_ID="2" --name osm-pota-map-container osm-pota-map
Contributions to improve the map data are welcome. If you're a regular participant in the POTA program, consider contributing to OpenStreetMap to enhance the accuracy and completeness of the data.
Volker Kerkhoff, EA7KLK Montequinto, Spain
This project is open source. Please refer to the LICENSE file for more information.
For any queries or suggestions, please contact Volker Kerkhoff, EA7KLK.
Note: The accuracy and completeness of the map data depend on volunteers maintaining the OpenStreetMap database. Instructions on how to contribute to OpenStreetMap will be provided soon.