├── .gitattributes ├── .gitignore ├── Makefile ├── README.md ├── __init__.py ├── _build_ └── potreecraft.zip ├── _doc_ ├── about_window.jpg ├── attribute_table.jpg ├── blast2dem_running.jpg ├── pointcloud_window.jpg ├── potree_page_source_code.jpg ├── potree_running_1130.jpg ├── potree_running_with_annots_1203.jpg ├── potreeconverter_running.jpg ├── qgis_project.jpg ├── settings_window.jpg └── vector_window.jpg ├── _test_data_ ├── edges_of_the_road.cpg ├── edges_of_the_road.dbf ├── edges_of_the_road.prj ├── edges_of_the_road.qpj ├── edges_of_the_road.shp ├── edges_of_the_road.shx ├── midroad_points.cpg ├── midroad_points.dbf ├── midroad_points.prj ├── midroad_points.qpj ├── midroad_points.shp ├── midroad_points.shx ├── roadside_points.dbf ├── roadside_points.prj ├── roadside_points.qpj ├── roadside_points.shp └── roadside_points.shx ├── help ├── Makefile ├── build │ ├── doctrees │ │ ├── environment.pickle │ │ └── index.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _sources │ │ └── index.rst.txt │ │ ├── _static │ │ ├── basic.css │ │ ├── classic.css │ │ ├── default.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── jquery-3.2.1.js │ │ ├── jquery-3.4.1.js │ │ ├── jquery.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── sidebar.js │ │ ├── underscore-1.3.1.js │ │ └── underscore.js │ │ ├── genindex.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── search.html │ │ └── searchindex.js ├── make.bat └── source │ ├── conf.py │ └── index.rst ├── i18n └── af.ts ├── icon.png ├── metadata.txt ├── pb_tool.cfg ├── plugin_upload.py ├── potreecraft.py ├── potreecraft_config.ini ├── potreecraft_dialog.py ├── potreecraft_dialog_base.ui ├── potreecraft_util.py ├── pylintrc ├── resources.py ├── resources.qrc ├── scripts ├── compile-strings.sh ├── run-env-linux.sh └── update-strings.sh ├── shapefile-w3d.js └── test ├── __init__.py ├── qgis_interface.py ├── tenbytenraster.asc ├── tenbytenraster.asc.aux.xml ├── tenbytenraster.keywords ├── tenbytenraster.lic ├── tenbytenraster.prj ├── tenbytenraster.qml ├── test_init.py ├── test_potreecraft_dialog.py ├── test_qgis_environment.py ├── test_resources.py ├── test_translations.py └── utilities.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/__init__.py -------------------------------------------------------------------------------- /_build_/potreecraft.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_build_/potreecraft.zip -------------------------------------------------------------------------------- /_doc_/about_window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_doc_/about_window.jpg -------------------------------------------------------------------------------- /_doc_/attribute_table.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_doc_/attribute_table.jpg -------------------------------------------------------------------------------- /_doc_/blast2dem_running.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_doc_/blast2dem_running.jpg -------------------------------------------------------------------------------- /_doc_/pointcloud_window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_doc_/pointcloud_window.jpg -------------------------------------------------------------------------------- /_doc_/potree_page_source_code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_doc_/potree_page_source_code.jpg -------------------------------------------------------------------------------- /_doc_/potree_running_1130.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_doc_/potree_running_1130.jpg -------------------------------------------------------------------------------- /_doc_/potree_running_with_annots_1203.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_doc_/potree_running_with_annots_1203.jpg -------------------------------------------------------------------------------- /_doc_/potreeconverter_running.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_doc_/potreeconverter_running.jpg -------------------------------------------------------------------------------- /_doc_/qgis_project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_doc_/qgis_project.jpg -------------------------------------------------------------------------------- /_doc_/settings_window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_doc_/settings_window.jpg -------------------------------------------------------------------------------- /_doc_/vector_window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_doc_/vector_window.jpg -------------------------------------------------------------------------------- /_test_data_/edges_of_the_road.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /_test_data_/edges_of_the_road.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_test_data_/edges_of_the_road.dbf -------------------------------------------------------------------------------- /_test_data_/edges_of_the_road.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_test_data_/edges_of_the_road.prj -------------------------------------------------------------------------------- /_test_data_/edges_of_the_road.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_test_data_/edges_of_the_road.qpj -------------------------------------------------------------------------------- /_test_data_/edges_of_the_road.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_test_data_/edges_of_the_road.shp -------------------------------------------------------------------------------- /_test_data_/edges_of_the_road.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_test_data_/edges_of_the_road.shx -------------------------------------------------------------------------------- /_test_data_/midroad_points.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /_test_data_/midroad_points.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_test_data_/midroad_points.dbf -------------------------------------------------------------------------------- /_test_data_/midroad_points.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_test_data_/midroad_points.prj -------------------------------------------------------------------------------- /_test_data_/midroad_points.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_test_data_/midroad_points.qpj -------------------------------------------------------------------------------- /_test_data_/midroad_points.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_test_data_/midroad_points.shp -------------------------------------------------------------------------------- /_test_data_/midroad_points.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_test_data_/midroad_points.shx -------------------------------------------------------------------------------- /_test_data_/roadside_points.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_test_data_/roadside_points.dbf -------------------------------------------------------------------------------- /_test_data_/roadside_points.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_test_data_/roadside_points.prj -------------------------------------------------------------------------------- /_test_data_/roadside_points.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_test_data_/roadside_points.qpj -------------------------------------------------------------------------------- /_test_data_/roadside_points.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_test_data_/roadside_points.shp -------------------------------------------------------------------------------- /_test_data_/roadside_points.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/_test_data_/roadside_points.shx -------------------------------------------------------------------------------- /help/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/Makefile -------------------------------------------------------------------------------- /help/build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/doctrees/environment.pickle -------------------------------------------------------------------------------- /help/build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/doctrees/index.doctree -------------------------------------------------------------------------------- /help/build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/.buildinfo -------------------------------------------------------------------------------- /help/build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /help/build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/basic.css -------------------------------------------------------------------------------- /help/build/html/_static/classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/classic.css -------------------------------------------------------------------------------- /help/build/html/_static/default.css: -------------------------------------------------------------------------------- 1 | @import url("classic.css"); 2 | -------------------------------------------------------------------------------- /help/build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/doctools.js -------------------------------------------------------------------------------- /help/build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/documentation_options.js -------------------------------------------------------------------------------- /help/build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/file.png -------------------------------------------------------------------------------- /help/build/html/_static/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/jquery-3.2.1.js -------------------------------------------------------------------------------- /help/build/html/_static/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/jquery-3.4.1.js -------------------------------------------------------------------------------- /help/build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/jquery.js -------------------------------------------------------------------------------- /help/build/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/language_data.js -------------------------------------------------------------------------------- /help/build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/minus.png -------------------------------------------------------------------------------- /help/build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/plus.png -------------------------------------------------------------------------------- /help/build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/pygments.css -------------------------------------------------------------------------------- /help/build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/searchtools.js -------------------------------------------------------------------------------- /help/build/html/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/sidebar.js -------------------------------------------------------------------------------- /help/build/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /help/build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/_static/underscore.js -------------------------------------------------------------------------------- /help/build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/genindex.html -------------------------------------------------------------------------------- /help/build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/index.html -------------------------------------------------------------------------------- /help/build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/objects.inv -------------------------------------------------------------------------------- /help/build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/search.html -------------------------------------------------------------------------------- /help/build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/build/html/searchindex.js -------------------------------------------------------------------------------- /help/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/make.bat -------------------------------------------------------------------------------- /help/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/source/conf.py -------------------------------------------------------------------------------- /help/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/help/source/index.rst -------------------------------------------------------------------------------- /i18n/af.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/i18n/af.ts -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/icon.png -------------------------------------------------------------------------------- /metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/metadata.txt -------------------------------------------------------------------------------- /pb_tool.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/pb_tool.cfg -------------------------------------------------------------------------------- /plugin_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/plugin_upload.py -------------------------------------------------------------------------------- /potreecraft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/potreecraft.py -------------------------------------------------------------------------------- /potreecraft_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/potreecraft_config.ini -------------------------------------------------------------------------------- /potreecraft_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/potreecraft_dialog.py -------------------------------------------------------------------------------- /potreecraft_dialog_base.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/potreecraft_dialog_base.ui -------------------------------------------------------------------------------- /potreecraft_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/potreecraft_util.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/pylintrc -------------------------------------------------------------------------------- /resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/resources.py -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/resources.qrc -------------------------------------------------------------------------------- /scripts/compile-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/scripts/compile-strings.sh -------------------------------------------------------------------------------- /scripts/run-env-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/scripts/run-env-linux.sh -------------------------------------------------------------------------------- /scripts/update-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/scripts/update-strings.sh -------------------------------------------------------------------------------- /shapefile-w3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/shapefile-w3d.js -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/qgis_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/test/qgis_interface.py -------------------------------------------------------------------------------- /test/tenbytenraster.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/test/tenbytenraster.asc -------------------------------------------------------------------------------- /test/tenbytenraster.asc.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/test/tenbytenraster.asc.aux.xml -------------------------------------------------------------------------------- /test/tenbytenraster.keywords: -------------------------------------------------------------------------------- 1 | title: Tenbytenraster 2 | -------------------------------------------------------------------------------- /test/tenbytenraster.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/test/tenbytenraster.lic -------------------------------------------------------------------------------- /test/tenbytenraster.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/test/tenbytenraster.prj -------------------------------------------------------------------------------- /test/tenbytenraster.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/test/tenbytenraster.qml -------------------------------------------------------------------------------- /test/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/test/test_init.py -------------------------------------------------------------------------------- /test/test_potreecraft_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/test/test_potreecraft_dialog.py -------------------------------------------------------------------------------- /test/test_qgis_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/test/test_qgis_environment.py -------------------------------------------------------------------------------- /test/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/test/test_resources.py -------------------------------------------------------------------------------- /test/test_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/test/test_translations.py -------------------------------------------------------------------------------- /test/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasFarmer/PotreeCraft/HEAD/test/utilities.py --------------------------------------------------------------------------------