├── README.md ├── ReplayBuffer.py ├── TD3_net_spread.py ├── benchmarks ├── RRT │ ├── ReplayBuffer.py │ ├── TD3_net_spread.py │ ├── Urban_10.png │ ├── Urban_15.png │ ├── Urban_20.png │ ├── Urban_25.png │ ├── Urban_30.png │ ├── Urban_35.png │ ├── Urban_40.png │ ├── Urban_5.png │ ├── Users_10.txt │ ├── Users_15.txt │ ├── Users_20.txt │ ├── Users_25.txt │ ├── Users_30.txt │ ├── Users_35.txt │ ├── Users_40.txt │ ├── Users_5.txt │ ├── __pycache__ │ │ ├── entity.cpython-36.pyc │ │ ├── entity.cpython-37.pyc │ │ ├── env.cpython-36.pyc │ │ ├── env.cpython-37.pyc │ │ ├── environment.cpython-36.pyc │ │ ├── environment.cpython-37.pyc │ │ ├── plotting.cpython-36.pyc │ │ ├── plotting.cpython-37.pyc │ │ ├── rrt.cpython-37.pyc │ │ ├── urban_world.cpython-36.pyc │ │ ├── urban_world.cpython-37.pyc │ │ └── utils.cpython-37.pyc │ ├── entity.py │ ├── env.py │ ├── environment.py │ ├── plotting.py │ ├── rrt.py │ ├── test.py │ ├── train.py │ ├── urban_world.py │ └── utils.py ├── TSP │ ├── .DS_Store │ ├── .spyproject │ │ ├── codestyle.ini │ │ ├── encoding.ini │ │ ├── vcs.ini │ │ └── workspace.ini │ ├── Greedy.py │ ├── README.md │ ├── Urban_10.png │ ├── Urban_15.png │ ├── Urban_20.png │ ├── Urban_25.png │ ├── Urban_30.png │ ├── Urban_35.png │ ├── Urban_40.png │ ├── Urban_5.png │ ├── Users_10.txt │ ├── Users_15.txt │ ├── Users_20.txt │ ├── Users_25.txt │ ├── Users_30.txt │ ├── Users_35.txt │ ├── Users_40.txt │ ├── Users_5.txt │ ├── __pycache__ │ │ ├── environment.cpython-37.pyc │ │ └── urban_world.cpython-37.pyc │ ├── ant.py │ ├── ant_sepcial_initial.py │ ├── bab.py │ ├── compute_terms.py │ ├── data │ │ ├── .DS_Store │ │ ├── TSP10users.tsp │ │ ├── TSP15users.tsp │ │ ├── TSP20users.tsp │ │ ├── TSP25users.tsp │ │ ├── TSP30users.tsp │ │ ├── TSP35users.tsp │ │ ├── TSP40users.tsp │ │ └── TSP5users.tsp │ ├── dist_cal.py │ ├── dp.py │ ├── environment.py │ ├── tsp_dp_special_initial.py │ └── urban_world.py └── scan_algorithm │ ├── .DS_Store │ ├── Urban_1.png │ ├── Urban_10.png │ ├── Urban_15.png │ ├── Urban_20.png │ ├── Urban_25.png │ ├── Urban_30.png │ ├── Urban_35.png │ ├── Urban_40.png │ ├── Urban_5.png │ ├── Users_1.txt │ ├── Users_10.txt │ ├── Users_15.txt │ ├── Users_20.txt │ ├── Users_25.txt │ ├── Users_30.txt │ ├── Users_35.txt │ ├── Users_40.txt │ ├── Users_5.txt │ ├── __pycache__ │ ├── entity.cpython-37.pyc │ ├── environment.cpython-37.pyc │ └── urban_world.cpython-37.pyc │ ├── entity.py │ ├── environment.py │ ├── scan_algorithm.py │ ├── scan_figure.png │ └── urban_world.py ├── entity.py ├── environment.py ├── test.py ├── train.py └── urban_world.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/README.md -------------------------------------------------------------------------------- /ReplayBuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/ReplayBuffer.py -------------------------------------------------------------------------------- /TD3_net_spread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/TD3_net_spread.py -------------------------------------------------------------------------------- /benchmarks/RRT/ReplayBuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/ReplayBuffer.py -------------------------------------------------------------------------------- /benchmarks/RRT/TD3_net_spread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/TD3_net_spread.py -------------------------------------------------------------------------------- /benchmarks/RRT/Urban_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Urban_10.png -------------------------------------------------------------------------------- /benchmarks/RRT/Urban_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Urban_15.png -------------------------------------------------------------------------------- /benchmarks/RRT/Urban_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Urban_20.png -------------------------------------------------------------------------------- /benchmarks/RRT/Urban_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Urban_25.png -------------------------------------------------------------------------------- /benchmarks/RRT/Urban_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Urban_30.png -------------------------------------------------------------------------------- /benchmarks/RRT/Urban_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Urban_35.png -------------------------------------------------------------------------------- /benchmarks/RRT/Urban_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Urban_40.png -------------------------------------------------------------------------------- /benchmarks/RRT/Urban_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Urban_5.png -------------------------------------------------------------------------------- /benchmarks/RRT/Users_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Users_10.txt -------------------------------------------------------------------------------- /benchmarks/RRT/Users_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Users_15.txt -------------------------------------------------------------------------------- /benchmarks/RRT/Users_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Users_20.txt -------------------------------------------------------------------------------- /benchmarks/RRT/Users_25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Users_25.txt -------------------------------------------------------------------------------- /benchmarks/RRT/Users_30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Users_30.txt -------------------------------------------------------------------------------- /benchmarks/RRT/Users_35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Users_35.txt -------------------------------------------------------------------------------- /benchmarks/RRT/Users_40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Users_40.txt -------------------------------------------------------------------------------- /benchmarks/RRT/Users_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/Users_5.txt -------------------------------------------------------------------------------- /benchmarks/RRT/__pycache__/entity.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/__pycache__/entity.cpython-36.pyc -------------------------------------------------------------------------------- /benchmarks/RRT/__pycache__/entity.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/__pycache__/entity.cpython-37.pyc -------------------------------------------------------------------------------- /benchmarks/RRT/__pycache__/env.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/__pycache__/env.cpython-36.pyc -------------------------------------------------------------------------------- /benchmarks/RRT/__pycache__/env.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/__pycache__/env.cpython-37.pyc -------------------------------------------------------------------------------- /benchmarks/RRT/__pycache__/environment.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/__pycache__/environment.cpython-36.pyc -------------------------------------------------------------------------------- /benchmarks/RRT/__pycache__/environment.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/__pycache__/environment.cpython-37.pyc -------------------------------------------------------------------------------- /benchmarks/RRT/__pycache__/plotting.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/__pycache__/plotting.cpython-36.pyc -------------------------------------------------------------------------------- /benchmarks/RRT/__pycache__/plotting.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/__pycache__/plotting.cpython-37.pyc -------------------------------------------------------------------------------- /benchmarks/RRT/__pycache__/rrt.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/__pycache__/rrt.cpython-37.pyc -------------------------------------------------------------------------------- /benchmarks/RRT/__pycache__/urban_world.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/__pycache__/urban_world.cpython-36.pyc -------------------------------------------------------------------------------- /benchmarks/RRT/__pycache__/urban_world.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/__pycache__/urban_world.cpython-37.pyc -------------------------------------------------------------------------------- /benchmarks/RRT/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /benchmarks/RRT/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/entity.py -------------------------------------------------------------------------------- /benchmarks/RRT/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/env.py -------------------------------------------------------------------------------- /benchmarks/RRT/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/environment.py -------------------------------------------------------------------------------- /benchmarks/RRT/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/plotting.py -------------------------------------------------------------------------------- /benchmarks/RRT/rrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/rrt.py -------------------------------------------------------------------------------- /benchmarks/RRT/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/test.py -------------------------------------------------------------------------------- /benchmarks/RRT/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/train.py -------------------------------------------------------------------------------- /benchmarks/RRT/urban_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/urban_world.py -------------------------------------------------------------------------------- /benchmarks/RRT/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/RRT/utils.py -------------------------------------------------------------------------------- /benchmarks/TSP/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/.DS_Store -------------------------------------------------------------------------------- /benchmarks/TSP/.spyproject/codestyle.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/.spyproject/codestyle.ini -------------------------------------------------------------------------------- /benchmarks/TSP/.spyproject/encoding.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/.spyproject/encoding.ini -------------------------------------------------------------------------------- /benchmarks/TSP/.spyproject/vcs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/.spyproject/vcs.ini -------------------------------------------------------------------------------- /benchmarks/TSP/.spyproject/workspace.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/.spyproject/workspace.ini -------------------------------------------------------------------------------- /benchmarks/TSP/Greedy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Greedy.py -------------------------------------------------------------------------------- /benchmarks/TSP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/README.md -------------------------------------------------------------------------------- /benchmarks/TSP/Urban_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Urban_10.png -------------------------------------------------------------------------------- /benchmarks/TSP/Urban_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Urban_15.png -------------------------------------------------------------------------------- /benchmarks/TSP/Urban_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Urban_20.png -------------------------------------------------------------------------------- /benchmarks/TSP/Urban_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Urban_25.png -------------------------------------------------------------------------------- /benchmarks/TSP/Urban_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Urban_30.png -------------------------------------------------------------------------------- /benchmarks/TSP/Urban_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Urban_35.png -------------------------------------------------------------------------------- /benchmarks/TSP/Urban_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Urban_40.png -------------------------------------------------------------------------------- /benchmarks/TSP/Urban_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Urban_5.png -------------------------------------------------------------------------------- /benchmarks/TSP/Users_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Users_10.txt -------------------------------------------------------------------------------- /benchmarks/TSP/Users_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Users_15.txt -------------------------------------------------------------------------------- /benchmarks/TSP/Users_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Users_20.txt -------------------------------------------------------------------------------- /benchmarks/TSP/Users_25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Users_25.txt -------------------------------------------------------------------------------- /benchmarks/TSP/Users_30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Users_30.txt -------------------------------------------------------------------------------- /benchmarks/TSP/Users_35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Users_35.txt -------------------------------------------------------------------------------- /benchmarks/TSP/Users_40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Users_40.txt -------------------------------------------------------------------------------- /benchmarks/TSP/Users_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/Users_5.txt -------------------------------------------------------------------------------- /benchmarks/TSP/__pycache__/environment.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/__pycache__/environment.cpython-37.pyc -------------------------------------------------------------------------------- /benchmarks/TSP/__pycache__/urban_world.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/__pycache__/urban_world.cpython-37.pyc -------------------------------------------------------------------------------- /benchmarks/TSP/ant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/ant.py -------------------------------------------------------------------------------- /benchmarks/TSP/ant_sepcial_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/ant_sepcial_initial.py -------------------------------------------------------------------------------- /benchmarks/TSP/bab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/bab.py -------------------------------------------------------------------------------- /benchmarks/TSP/compute_terms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/compute_terms.py -------------------------------------------------------------------------------- /benchmarks/TSP/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/data/.DS_Store -------------------------------------------------------------------------------- /benchmarks/TSP/data/TSP10users.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/data/TSP10users.tsp -------------------------------------------------------------------------------- /benchmarks/TSP/data/TSP15users.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/data/TSP15users.tsp -------------------------------------------------------------------------------- /benchmarks/TSP/data/TSP20users.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/data/TSP20users.tsp -------------------------------------------------------------------------------- /benchmarks/TSP/data/TSP25users.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/data/TSP25users.tsp -------------------------------------------------------------------------------- /benchmarks/TSP/data/TSP30users.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/data/TSP30users.tsp -------------------------------------------------------------------------------- /benchmarks/TSP/data/TSP35users.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/data/TSP35users.tsp -------------------------------------------------------------------------------- /benchmarks/TSP/data/TSP40users.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/data/TSP40users.tsp -------------------------------------------------------------------------------- /benchmarks/TSP/data/TSP5users.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/data/TSP5users.tsp -------------------------------------------------------------------------------- /benchmarks/TSP/dist_cal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/dist_cal.py -------------------------------------------------------------------------------- /benchmarks/TSP/dp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/dp.py -------------------------------------------------------------------------------- /benchmarks/TSP/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/environment.py -------------------------------------------------------------------------------- /benchmarks/TSP/tsp_dp_special_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/tsp_dp_special_initial.py -------------------------------------------------------------------------------- /benchmarks/TSP/urban_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/TSP/urban_world.py -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/.DS_Store -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Urban_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Urban_1.png -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Urban_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Urban_10.png -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Urban_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Urban_15.png -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Urban_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Urban_20.png -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Urban_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Urban_25.png -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Urban_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Urban_30.png -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Urban_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Urban_35.png -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Urban_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Urban_40.png -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Urban_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Urban_5.png -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Users_1.txt: -------------------------------------------------------------------------------- 1 | 6.8 9.4 0.0 -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Users_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Users_10.txt -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Users_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Users_15.txt -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Users_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Users_20.txt -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Users_25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Users_25.txt -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Users_30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Users_30.txt -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Users_35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Users_35.txt -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Users_40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Users_40.txt -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/Users_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/Users_5.txt -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/__pycache__/entity.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/__pycache__/entity.cpython-37.pyc -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/__pycache__/environment.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/__pycache__/environment.cpython-37.pyc -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/__pycache__/urban_world.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/__pycache__/urban_world.cpython-37.pyc -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/entity.py -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/environment.py -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/scan_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/scan_algorithm.py -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/scan_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/scan_figure.png -------------------------------------------------------------------------------- /benchmarks/scan_algorithm/urban_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/benchmarks/scan_algorithm/urban_world.py -------------------------------------------------------------------------------- /entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/entity.py -------------------------------------------------------------------------------- /environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/environment.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/train.py -------------------------------------------------------------------------------- /urban_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yang05941601/UAV-Navigation-Learning/HEAD/urban_world.py --------------------------------------------------------------------------------