I have a dataset with 3D buildings in the format CityGML (EPSG: 25832)
and would like to present this in Cesium as 3DTiles. The 3DTiles must be
available in the WGS84 with units in Radians, and at first the longitude and
then the latitude must be listed. (See 3DTiles specification: https://github.com/AnalyticalGraphicsInc/3d-tiles#coordinate-system-and-units)
Â
Â
Input data:
Â
Format: CityGML
Â
EPSG: 25832,
Â
Unit: metre
Â
Geodetic CRS: ETRS89
Â
Date: European Terrestrial Reference System 1989
Â
Ellipsoid: GRS 1980
Â
Example: 544913.83 5460346.67 205.41 (x, y, z)
Â
Â
Required output data:
Â
Format: 3DTiles
Â
EPSG: 4326 but in the unit radiant
Â
Geodetic CRS: WGS 84
Â
Date: World Geodetic System 1984
Â
Ellipsoid: WGS 84
Â
Prime meridian: Greenwich
Â
Example: 0.1678606623,0.86034635,205.41 (longitude, latitude, height)
Here my experiments:
Reader: CityGML (EPSG 25832) -> Writer: 3DTiles (LL84-RADIANS)
Reader: CityGML (EPSG 25832) -> CSMapReprojector (25832 to LL84-RADIANS) -> Writer: 3DTiles (LL84-RADIANS)
Â
Â
Results: coordinates like this: 4109170.2188849915, 696274.18084379763How do I create coordinates in radian unit?