├── AddPoint.py ├── CanvasMarkers.py ├── FFMPEG ├── GPLv3.txt ├── ffmpeg ├── ffmpeg.exe └── readme.txt ├── LICENSE.txt ├── Makefile ├── NewProject.py ├── QGisMap.py ├── README.md ├── SkipTrackTool.py ├── VideoGis.py ├── VideoGis_dockwidget.py ├── VideoGis_dockwidget_base.ui ├── __init__.py ├── geographiclib ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── constants.cpython-36.pyc │ ├── geodesic.cpython-36.pyc │ ├── geodesiccapability.cpython-36.pyc │ └── geomath.cpython-36.pyc ├── accumulator.py ├── constants.py ├── geodesic.py ├── geodesiccapability.py ├── geodesicline.py ├── geographiclib_LICENSE.txt ├── geomath.py ├── polygonarea.py └── test │ ├── __init__.py │ └── test_geodesic.py ├── help ├── Makefile ├── make.bat └── source │ ├── conf.py │ └── index.rst ├── i18n └── af.ts ├── icon.png ├── iconNewTabEditorConsole.png ├── mIconFormSelect.svg ├── metadata.txt ├── pb_tool.cfg ├── plugin_upload.py ├── pylintrc ├── resources.py ├── resources.qrc ├── scripts ├── compile-strings.sh ├── run-env-linux.sh └── update-strings.sh ├── tableManagerUi.py ├── tableManagerUi.ui ├── tableManagerUiClone.py ├── tableManagerUiClone.ui ├── tableManagerUiInsert.py ├── tableManagerUiInsert.ui ├── tableManagerUiRename.py ├── tableManagerUiRename.ui ├── test ├── __init__.py ├── qgis_interface.py ├── tenbytenraster.asc ├── tenbytenraster.asc.aux.xml ├── tenbytenraster.keywords ├── tenbytenraster.lic ├── tenbytenraster.prj ├── tenbytenraster.qml ├── test_VideoGis_dockwidget.py ├── test_init.py ├── test_qgis_environment.py ├── test_resources.py ├── test_translations.py └── utilities.py ├── vut_newproject.py ├── vut_newproject.ui ├── vut_qgismap.py └── vut_qgismap.ui /AddPoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/AddPoint.py -------------------------------------------------------------------------------- /CanvasMarkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/CanvasMarkers.py -------------------------------------------------------------------------------- /FFMPEG/GPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/FFMPEG/GPLv3.txt -------------------------------------------------------------------------------- /FFMPEG/ffmpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/FFMPEG/ffmpeg -------------------------------------------------------------------------------- /FFMPEG/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/FFMPEG/ffmpeg.exe -------------------------------------------------------------------------------- /FFMPEG/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/FFMPEG/readme.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/Makefile -------------------------------------------------------------------------------- /NewProject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/NewProject.py -------------------------------------------------------------------------------- /QGisMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/QGisMap.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/README.md -------------------------------------------------------------------------------- /SkipTrackTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/SkipTrackTool.py -------------------------------------------------------------------------------- /VideoGis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/VideoGis.py -------------------------------------------------------------------------------- /VideoGis_dockwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/VideoGis_dockwidget.py -------------------------------------------------------------------------------- /VideoGis_dockwidget_base.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/VideoGis_dockwidget_base.ui -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/__init__.py -------------------------------------------------------------------------------- /geographiclib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/__init__.py -------------------------------------------------------------------------------- /geographiclib/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /geographiclib/__pycache__/constants.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/__pycache__/constants.cpython-36.pyc -------------------------------------------------------------------------------- /geographiclib/__pycache__/geodesic.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/__pycache__/geodesic.cpython-36.pyc -------------------------------------------------------------------------------- /geographiclib/__pycache__/geodesiccapability.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/__pycache__/geodesiccapability.cpython-36.pyc -------------------------------------------------------------------------------- /geographiclib/__pycache__/geomath.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/__pycache__/geomath.cpython-36.pyc -------------------------------------------------------------------------------- /geographiclib/accumulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/accumulator.py -------------------------------------------------------------------------------- /geographiclib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/constants.py -------------------------------------------------------------------------------- /geographiclib/geodesic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/geodesic.py -------------------------------------------------------------------------------- /geographiclib/geodesiccapability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/geodesiccapability.py -------------------------------------------------------------------------------- /geographiclib/geodesicline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/geodesicline.py -------------------------------------------------------------------------------- /geographiclib/geographiclib_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/geographiclib_LICENSE.txt -------------------------------------------------------------------------------- /geographiclib/geomath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/geomath.py -------------------------------------------------------------------------------- /geographiclib/polygonarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/polygonarea.py -------------------------------------------------------------------------------- /geographiclib/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/test/__init__.py -------------------------------------------------------------------------------- /geographiclib/test/test_geodesic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/geographiclib/test/test_geodesic.py -------------------------------------------------------------------------------- /help/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/help/Makefile -------------------------------------------------------------------------------- /help/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/help/make.bat -------------------------------------------------------------------------------- /help/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/help/source/conf.py -------------------------------------------------------------------------------- /help/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/help/source/index.rst -------------------------------------------------------------------------------- /i18n/af.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/i18n/af.ts -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/icon.png -------------------------------------------------------------------------------- /iconNewTabEditorConsole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/iconNewTabEditorConsole.png -------------------------------------------------------------------------------- /mIconFormSelect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/mIconFormSelect.svg -------------------------------------------------------------------------------- /metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/metadata.txt -------------------------------------------------------------------------------- /pb_tool.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/pb_tool.cfg -------------------------------------------------------------------------------- /plugin_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/plugin_upload.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/pylintrc -------------------------------------------------------------------------------- /resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/resources.py -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/resources.qrc -------------------------------------------------------------------------------- /scripts/compile-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/scripts/compile-strings.sh -------------------------------------------------------------------------------- /scripts/run-env-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/scripts/run-env-linux.sh -------------------------------------------------------------------------------- /scripts/update-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/scripts/update-strings.sh -------------------------------------------------------------------------------- /tableManagerUi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/tableManagerUi.py -------------------------------------------------------------------------------- /tableManagerUi.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/tableManagerUi.ui -------------------------------------------------------------------------------- /tableManagerUiClone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/tableManagerUiClone.py -------------------------------------------------------------------------------- /tableManagerUiClone.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/tableManagerUiClone.ui -------------------------------------------------------------------------------- /tableManagerUiInsert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/tableManagerUiInsert.py -------------------------------------------------------------------------------- /tableManagerUiInsert.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/tableManagerUiInsert.ui -------------------------------------------------------------------------------- /tableManagerUiRename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/tableManagerUiRename.py -------------------------------------------------------------------------------- /tableManagerUiRename.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/tableManagerUiRename.ui -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/qgis_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/test/qgis_interface.py -------------------------------------------------------------------------------- /test/tenbytenraster.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/test/tenbytenraster.asc -------------------------------------------------------------------------------- /test/tenbytenraster.asc.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/test/tenbytenraster.asc.aux.xml -------------------------------------------------------------------------------- /test/tenbytenraster.keywords: -------------------------------------------------------------------------------- 1 | title: Tenbytenraster 2 | -------------------------------------------------------------------------------- /test/tenbytenraster.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/test/tenbytenraster.lic -------------------------------------------------------------------------------- /test/tenbytenraster.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/test/tenbytenraster.prj -------------------------------------------------------------------------------- /test/tenbytenraster.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/test/tenbytenraster.qml -------------------------------------------------------------------------------- /test/test_VideoGis_dockwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/test/test_VideoGis_dockwidget.py -------------------------------------------------------------------------------- /test/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/test/test_init.py -------------------------------------------------------------------------------- /test/test_qgis_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/test/test_qgis_environment.py -------------------------------------------------------------------------------- /test/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/test/test_resources.py -------------------------------------------------------------------------------- /test/test_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/test/test_translations.py -------------------------------------------------------------------------------- /test/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/test/utilities.py -------------------------------------------------------------------------------- /vut_newproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/vut_newproject.py -------------------------------------------------------------------------------- /vut_newproject.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/vut_newproject.ui -------------------------------------------------------------------------------- /vut_qgismap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/vut_qgismap.py -------------------------------------------------------------------------------- /vut_qgismap.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagost/VideoUavTracker/HEAD/vut_qgismap.ui --------------------------------------------------------------------------------