Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/default kadaster viewer #103

Merged
merged 22 commits into from
Feb 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
8acf2ca
add unityBounds-variable to tiles
martijnvangog Jan 24, 2023
36d60ac
Merge branch 'feature/3dtiles' into feature/3dtiles-tileset
martijnvangog Jan 24, 2023
ad78c36
rotate tileset-gameobject so vertical points up in unity
martijnvangog Jan 24, 2023
dad33db
rotation of tilesets is based on rd-origin
martijnvangog Jan 24, 2023
b2c271a
add tilehandler for spatial awareness
martijnvangog Jan 24, 2023
7924ef6
trying to find if i messed something up
martijnvangog Jan 24, 2023
1594202
kadaster logo viewer scene
sambaas Jan 25, 2023
4cdefa2
moved assets into kadaster viewer runtime
sambaas Jan 26, 2023
70c9474
found the right coordiante-mapping for ecef to unity
martijnvangog Jan 27, 2023
824cbcf
Merge branch 'feature/3dtiles-tileset' of https://github.com/Amsterda…
sambaas Jan 27, 2023
7c20963
build up tileset from loader. add follower after tileset rotation is set
sambaas Jan 27, 2023
f8fbd8c
added bounds calculation and view frustum check for loading
sambaas Jan 27, 2023
8b430fb
disable sse check and view check for now
sambaas Jan 27, 2023
f41fa6b
draw bounds only on selected dataset
sambaas Jan 30, 2023
c5a37b4
use set pixel error for in-view checks
sambaas Jan 30, 2023
c0bb2a2
removed extra rotation ( already done in ECEFToUnity)
sambaas Jan 30, 2023
f425a93
added maxPixelError to config (defaults to 5)
sambaas Jan 30, 2023
084f92b
get max pixel error from config
sambaas Jan 30, 2023
1bdbbbf
make sure bounds are there when requested
sambaas Jan 30, 2023
42eb180
make sure all meshes are cleaned up if content is disposed
sambaas Jan 30, 2023
886b923
clean materials too
sambaas Jan 30, 2023
3097494
teleport
sambaas Jan 31, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Assets/3dTiles/ECEF.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace ConvertEcef
{
//http://danceswithcode.net/engineeringnotes/geodetic_to_ecef/geodetic_to_ecef.html
public class Coord
public static class Coord
{
private static double a = 6378137.0; //WGS-84 semi-major axis
private static double e2 = 6.6943799901377997e-3; //WGS-84 first eccentricity squared
Expand Down
Loading