├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── df-aggregator.py ├── requirements.txt ├── screenshots ├── Screenshot from 2020-11-15 09-31-22.png ├── Screenshot from 2020-12-03 20-08-21.png ├── Screenshot from 2020-12-04 23-00-08.png ├── Screenshot from 2020-12-05 09-14-40.png ├── Screenshot from 2021-05-29 09-52-08.png ├── first_drive │ ├── Screenshot from 2020-12-25 17-27-25.png │ ├── Screenshot from 2020-12-25 17-27-48.png │ ├── Screenshot from 2020-12-25 17-28-13.png │ ├── Screenshot from 2020-12-25 17-28-35.png │ ├── Screenshot from 2020-12-25 17-29-07.png │ ├── Screenshot from 2020-12-25 17-29-16.png │ ├── Screenshot from 2020-12-25 17-29-57.png │ ├── Screenshot from 2020-12-25 17-31-00.png │ ├── Screenshot from 2020-12-25 17-31-04.png │ ├── Screenshot from 2020-12-25 17-32-04.png │ └── Screenshot_2020-12-25-18-12-21-507.jpeg ├── hamburger_icon.png ├── new_receiver.png ├── receiver_ready.png └── receiver_url.png ├── static ├── MaterialIcons-Regular.ttf ├── car.svg ├── cardsmenu.js ├── flipped_car.svg ├── interest_areas.js ├── menu.css ├── receiver_configurator.js ├── style.css └── tower.svg ├── views └── cesium.tpl └── vincenty.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/README.md -------------------------------------------------------------------------------- /df-aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/df-aggregator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/Screenshot from 2020-11-15 09-31-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/Screenshot from 2020-11-15 09-31-22.png -------------------------------------------------------------------------------- /screenshots/Screenshot from 2020-12-03 20-08-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/Screenshot from 2020-12-03 20-08-21.png -------------------------------------------------------------------------------- /screenshots/Screenshot from 2020-12-04 23-00-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/Screenshot from 2020-12-04 23-00-08.png -------------------------------------------------------------------------------- /screenshots/Screenshot from 2020-12-05 09-14-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/Screenshot from 2020-12-05 09-14-40.png -------------------------------------------------------------------------------- /screenshots/Screenshot from 2021-05-29 09-52-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/Screenshot from 2021-05-29 09-52-08.png -------------------------------------------------------------------------------- /screenshots/first_drive/Screenshot from 2020-12-25 17-27-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/first_drive/Screenshot from 2020-12-25 17-27-25.png -------------------------------------------------------------------------------- /screenshots/first_drive/Screenshot from 2020-12-25 17-27-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/first_drive/Screenshot from 2020-12-25 17-27-48.png -------------------------------------------------------------------------------- /screenshots/first_drive/Screenshot from 2020-12-25 17-28-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/first_drive/Screenshot from 2020-12-25 17-28-13.png -------------------------------------------------------------------------------- /screenshots/first_drive/Screenshot from 2020-12-25 17-28-35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/first_drive/Screenshot from 2020-12-25 17-28-35.png -------------------------------------------------------------------------------- /screenshots/first_drive/Screenshot from 2020-12-25 17-29-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/first_drive/Screenshot from 2020-12-25 17-29-07.png -------------------------------------------------------------------------------- /screenshots/first_drive/Screenshot from 2020-12-25 17-29-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/first_drive/Screenshot from 2020-12-25 17-29-16.png -------------------------------------------------------------------------------- /screenshots/first_drive/Screenshot from 2020-12-25 17-29-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/first_drive/Screenshot from 2020-12-25 17-29-57.png -------------------------------------------------------------------------------- /screenshots/first_drive/Screenshot from 2020-12-25 17-31-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/first_drive/Screenshot from 2020-12-25 17-31-00.png -------------------------------------------------------------------------------- /screenshots/first_drive/Screenshot from 2020-12-25 17-31-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/first_drive/Screenshot from 2020-12-25 17-31-04.png -------------------------------------------------------------------------------- /screenshots/first_drive/Screenshot from 2020-12-25 17-32-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/first_drive/Screenshot from 2020-12-25 17-32-04.png -------------------------------------------------------------------------------- /screenshots/first_drive/Screenshot_2020-12-25-18-12-21-507.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/first_drive/Screenshot_2020-12-25-18-12-21-507.jpeg -------------------------------------------------------------------------------- /screenshots/hamburger_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/hamburger_icon.png -------------------------------------------------------------------------------- /screenshots/new_receiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/new_receiver.png -------------------------------------------------------------------------------- /screenshots/receiver_ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/receiver_ready.png -------------------------------------------------------------------------------- /screenshots/receiver_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/screenshots/receiver_url.png -------------------------------------------------------------------------------- /static/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/static/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /static/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/static/car.svg -------------------------------------------------------------------------------- /static/cardsmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/static/cardsmenu.js -------------------------------------------------------------------------------- /static/flipped_car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/static/flipped_car.svg -------------------------------------------------------------------------------- /static/interest_areas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/static/interest_areas.js -------------------------------------------------------------------------------- /static/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/static/menu.css -------------------------------------------------------------------------------- /static/receiver_configurator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/static/receiver_configurator.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/static/style.css -------------------------------------------------------------------------------- /static/tower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/static/tower.svg -------------------------------------------------------------------------------- /views/cesium.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/views/cesium.tpl -------------------------------------------------------------------------------- /vincenty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/df-aggregator/HEAD/vincenty.py --------------------------------------------------------------------------------