Now I have a directory include such files:
I am sure this directory is the result of Potree Converter.
And I want to know the coordinate system of tifhtBoundingBox in the file named cloud.js.
Here is the content of this file:
{
"version": "1.7",
"octreeDir": "data",
"points": 177042450,
"boundingBox": {
"lx": -63.312386108398438,
"ly": -108.20909936523438,
"lz": -3.2015465030670167,
"ux": 74.74178178405762,
"uy": 29.845068527221686,
"uz": 134.85262138938905
},
"tightBoundingBox": {
"lx": -1,
"ly": -1,
"lz": -1,
"ux": 1,
"uy": 1,
"uz": 1
},
"pointAttributes": [
"POSITION_CARTESIAN",
"COLOR_PACKED",
"NORMAL_OCT16"
],
"spacing": 0.95646733045578,
"scale": 0.001,
"hierarchyStepSize": 5,
"hash": -8125634920082186753
}
Moreover, I want to transform it to the WGS84 system to get the longtitude and latitude value of the point consists of (lx,ly,lz) and the point consists of (ux,uy,uz).
How can I make a transformation?
question from:
https://stackoverflow.com/questions/66058806/whats-the-coordinate-system-of-boundingbox-in-the-file-named-cloud-js-that-made 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…