├── LICENSE ├── __init__.py ├── core ├── __init__.py ├── cmd.py ├── las23dtiles.py ├── potree23dtiles.py ├── proj.py └── tool │ └── PotreeConverter_2 │ ├── PotreeConverter.exe │ ├── README.md │ ├── laszip.dll │ └── licenses │ ├── license_brotli.txt │ ├── license_json.txt │ ├── license_laszip.txt │ └── license_potree_converter.txt ├── data ├── __init__.py ├── lasio.py ├── pnts.py └── potreebin.py ├── main.py ├── readme.md └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/LICENSE -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | #coding=utf-8 2 | #test 3 | -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/core/cmd.py -------------------------------------------------------------------------------- /core/las23dtiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/core/las23dtiles.py -------------------------------------------------------------------------------- /core/potree23dtiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/core/potree23dtiles.py -------------------------------------------------------------------------------- /core/proj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/core/proj.py -------------------------------------------------------------------------------- /core/tool/PotreeConverter_2/PotreeConverter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/core/tool/PotreeConverter_2/PotreeConverter.exe -------------------------------------------------------------------------------- /core/tool/PotreeConverter_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/core/tool/PotreeConverter_2/README.md -------------------------------------------------------------------------------- /core/tool/PotreeConverter_2/laszip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/core/tool/PotreeConverter_2/laszip.dll -------------------------------------------------------------------------------- /core/tool/PotreeConverter_2/licenses/license_brotli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/core/tool/PotreeConverter_2/licenses/license_brotli.txt -------------------------------------------------------------------------------- /core/tool/PotreeConverter_2/licenses/license_json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/core/tool/PotreeConverter_2/licenses/license_json.txt -------------------------------------------------------------------------------- /core/tool/PotreeConverter_2/licenses/license_laszip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/core/tool/PotreeConverter_2/licenses/license_laszip.txt -------------------------------------------------------------------------------- /core/tool/PotreeConverter_2/licenses/license_potree_converter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/core/tool/PotreeConverter_2/licenses/license_potree_converter.txt -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/lasio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/data/lasio.py -------------------------------------------------------------------------------- /data/pnts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/data/pnts.py -------------------------------------------------------------------------------- /data/potreebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/data/potreebin.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/main.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeyan00/potree23dtiles/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pyproj 3 | --------------------------------------------------------------------------------