├── .gitignore ├── LICENSE ├── README.md ├── ftssim ├── __init__.py ├── _common.py ├── gpx.py └── wander.py ├── gpx_example.py ├── requirements.txt └── wander_example.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeTAKTeam/FreeTAKServer-Simulator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeTAKTeam/FreeTAKServer-Simulator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeTAKTeam/FreeTAKServer-Simulator/HEAD/README.md -------------------------------------------------------------------------------- /ftssim/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ftssim/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeTAKTeam/FreeTAKServer-Simulator/HEAD/ftssim/_common.py -------------------------------------------------------------------------------- /ftssim/gpx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeTAKTeam/FreeTAKServer-Simulator/HEAD/ftssim/gpx.py -------------------------------------------------------------------------------- /ftssim/wander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeTAKTeam/FreeTAKServer-Simulator/HEAD/ftssim/wander.py -------------------------------------------------------------------------------- /gpx_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeTAKTeam/FreeTAKServer-Simulator/HEAD/gpx_example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | geopy 2 | gpxpy 3 | -------------------------------------------------------------------------------- /wander_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeTAKTeam/FreeTAKServer-Simulator/HEAD/wander_example.py --------------------------------------------------------------------------------