A command-line application for finding transport hubs within a specified distance from a given location.
This application queries an IBM Cloudant database containing information about transport hubs (airports) worldwide. Users can search for hubs within a certain distance of their location by providing latitude, longitude, and maximum distance. Results are sorted by ascending distance.
- Go 1.25.4 or later
- Internet connection (to query the Cloudant database)
git clone https://github.com/dnorby/wot.git
cd wot
go mod tidy
go build -o wot
./wotThis will create an executable named wot in the current directory.
This project was created as a coding exercise.