123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- using UnityEngine;
- using System;
- using UnityEngine.Serialization;
- namespace ARLocation
- {
- public enum AltitudeMode {
- GroundRelative,
- DeviceRelative,
- Absolute,
- Ignore
- };
- /// <summary>
- /// Represents a geographical location.
- /// </summary>
- [Serializable]
- public class Location
- {
- [FormerlySerializedAs("latitude")] [Tooltip("The latitude, in degrees.")]
- public double Latitude;
- [FormerlySerializedAs("longitude")] [Tooltip("The longitude, in degrees.")]
- public double Longitude;
- [FormerlySerializedAs("altitude")] [Tooltip("The altitude, in meters.")]
- public double Altitude;
- [FormerlySerializedAs("altitudeMode")]
- [Space(4)]
- [Tooltip("The altitude mode. 'Absolute' means absolute altitude, relative to the sea level. 'DeviceRelative' meas it is " +
- "relative to the device's initial position. 'GroundRelative' means relative to the nearest detected plane, and 'Ignore' means the " +
- "altitude is ignored (equivalent to setting it to zero).")]
- public AltitudeMode AltitudeMode = AltitudeMode.GroundRelative;
- [FormerlySerializedAs("label")] [Tooltip("An optional label for the location.")]
- public string Label = "";
- public bool IgnoreAltitude => AltitudeMode == AltitudeMode.Ignore;
- /// <summary>
- /// Gets the horizontal vector.
- /// </summary>
- /// <value>The horizontal vector.</value>
- public DVector2 HorizontalVector => new DVector2(Latitude, Longitude);
- public Location(double latitude = 0.0, double longitude = 0.0, double altitude = 0.0)
- {
- Latitude = latitude;
- Longitude = longitude;
- Altitude = altitude;
- }
- /// <summary>
- /// Clones this instance.
- /// </summary>
- /// <returns>The clone.</returns>
- public Location Clone()
- {
- return new Location()
- {
- Label = Label,
- Latitude = Latitude,
- Longitude = Longitude,
- Altitude = Altitude,
- AltitudeMode = AltitudeMode
- };
- }
- public override string ToString()
- {
- return "(" + Latitude + ", " + Longitude + ", " + Altitude + ")";
- }
- public DVector3 ToDVector3()
- {
- return new DVector3(Longitude, Altitude, Latitude);
- }
- public Vector3 ToVector3()
- {
- return ToDVector3().toVector3();
- }
- /// <summary>
- /// Given a Location returns the corresponding (x, y, z) ECEF coordinates.
- /// </summary>
- /// <param name="l"></param>
- /// <returns></returns>
- public static DVector3 LocationToEcef(Location l) {
- var rad = Math.PI / 180;
- var lat = l.Latitude * rad;
- var lon = l.Longitude * rad;
- var a = ARLocation.Config.EarthEquatorialRadiusInKM * 1000;
- var e2 = ARLocation.Config.EarthFirstEccentricitySquared;
- var N = a / Math.Sqrt(1 - e2 * Math.Pow(Math.Sin(lat), 2));
- var x = N * Math.Cos(lat) * Math.Cos(lon);
- var y = N * Math.Cos(lat) * Math.Sin(lon);
- var z = (1 - e2) * N * Math.Sin(lat);
- return new DVector3(x, y, z);
- }
- /// <summary>
- /// Given a pair of locations, returns the local-plane ENU coordinates, considering the first location, l1, to be the center of the local plane.
- /// </summary>
- /// <param name="l1"></param>
- /// <param name="l2"></param>
- /// <returns></returns>
- public static DVector2 VectorFromToEcefEnu(Location l1, Location l2) {
- var rad = Math.PI / 180;
- var lat = l1.Latitude * rad;
- var lon = l1.Longitude * rad;
- var p1 = LocationToEcef(l1);
- var p2 = LocationToEcef(l2);
- var delta = p2 - p1;
- var slat = Math.Sin(lat);
- var clat = Math.Cos(lat);
- var slon = Math.Sin(lon);
- var clon = Math.Cos(lon);
- var e = -slon * delta.x + clon * delta.y;
- var n = -clon * slat * delta.x -slat * slon * delta.y+ clat*delta.z;
-
- return new DVector2(n, e);
- }
- /// <summary>
- /// Given a center location, and the local-plane ENU coordinates of a second point, calculates the Location of the second point.
- /// </summary>
- /// <param name="center"></param>
- /// <param name="e"></param>
- /// <param name="n"></param>
- /// <param name="u"></param>
- /// <returns></returns>
- public static Location LocationFromEnu(Location center, double e, double n, double u)
- {
- var lat = DegToRad(center.Latitude);
- var lon = DegToRad(center.Longitude);
- var slat = Math.Sin(lat);
- var clat = Math.Cos(lat);
- var slon = Math.Sin(lon);
- var clon = Math.Cos(lon);
- var dx = -e * slon - n * clon * slat + u * clon * clat;
- var dy = e * clon - n * slon * slat + u * slon * clat;
- var dz = n * clat + u * slat;
- var centerEcef = LocationToEcef(center);
- var pointEcef = centerEcef + new DVector3(dx, dy, dz);
- var pointLocation = EcefToLocation(pointEcef);
- return pointLocation;
- }
- /// <summary>
- /// Converts from (x, y, z) ECEF coordinates to a wgs84 Location.
- /// </summary>
- /// <param name="ecef"></param>
- /// <returns></returns>
- public static Location EcefToLocation(DVector3 ecef)
- {
- var a = ARLocation.Config.EarthEquatorialRadiusInKM * 1000.0;
- var e2 = ARLocation.Config.EarthFirstEccentricitySquared;
- var b = a * Math.Sqrt(1 - e2);
- var x = ecef.x;
- var y = ecef.y;
- var z = ecef.z;
- var r = Math.Sqrt(x * x + y * y);
- var E2 = (a * a - b * b) / (b * b);
- var F = 54 * b * b * z * z;
- var G = r * r + (1 - e2) * z * z - e2 * (a * a - b * b);
- var c = (e2 * e2 * F * r * r) / (G * G * G);
- var s = Math.Pow(1 + c + Math.Sqrt(c*c + 2*c), 1.0 / 3.0);
- var P = F / (3 * Math.Pow(s + (1.0/s) +1, 2.0) * G * G);
- var Q = Math.Sqrt(1 + 2 * e2 * e2 * P);
- var r0 = -(P * e2 * r) / (1 + Q) + Math.Sqrt(((a * a * 0.5) * (1.0 + (1.0 / Q))) - ((P * (1 - e2) * z * z) / (Q * (1.0 + Q))) - (P*r*r*0.5));
- var U = Math.Sqrt(Math.Pow(r - e2 * r0, 2) + z*z);
- var V = Math.Sqrt(Math.Pow(r - e2 * r0, 2) + (1 - e2) * z * z);
- var z0 = (b * b * z) / (a * V);
- var h = U * (1 - ((b * b) / (a * V)));
- var phi = Math.Atan((z + E2 * z0) / r);
- var lambda = Math.Atan2(y, x);
- var rad2deg = 180.0 / Math.PI;
- return new Location()
- {
- Latitude = rad2deg * phi,
- Longitude = rad2deg * lambda,
- Altitude = h,
- AltitudeMode = AltitudeMode.GroundRelative
- };
- }
- /// <summary>
- /// Calculates the horizontal distance according to the current function
- /// set in the configuration.
- /// </summary>
- /// <returns>The distance, in meters.</returns>
- /// <param name="l1">L1.</param>
- /// <param name="l2">L2.</param>
- public static double HorizontalDistance(Location l1, Location l2)
- {
- #if ARGPS_CUSTOM_GEO_CALC
- return ArGpsCustomGeoCalc.HorizontalVectorFromTo(l1, l2).magnitude;
- #else
- return VectorFromToEcefEnu(l1, l2).magnitude;
- #endif
- }
- /// <summary>
- /// Calculates the full distance between locations, taking altitude into account.
- /// </summary>
- /// <returns>The with altitude.</returns>
- /// <param name="l1">L1.</param>
- /// <param name="l2">L2.</param>
- public static double DistanceWithAltitude(Location l1, Location l2)
- {
- var d = HorizontalDistance(l1, l2);
- var h = Math.Abs(l1.Altitude - l2.Altitude);
- return Math.Sqrt(d * d + h * h);
- }
- /// <summary>
- /// Calculates the horizontal vector pointing from l1 to l2, in meters.
- /// </summary>
- /// <returns>The vector from to.</returns>
- /// <param name="l1">L1.</param>
- /// <param name="l2">L2.</param>
- public static DVector2 HorizontalVectorFromTo(Location l1, Location l2)
- {
- #if ARGPS_USE_CUSTOM_GEO_CALC
- return ArGpsCustomGeoCalc.HorizontalVectorFromTo(l1, l2);
- #else
- return VectorFromToEcefEnu(l1, l2);
- #endif
- }
- /// <summary>
- /// Calculates the vector from l1 to l2, in meters, taking altitude into account.
- /// </summary>
- /// <returns>The from to.</returns>
- /// <param name="l1">L1.</param>
- /// <param name="l2">L2.</param>
- /// <param name="ignoreHeight">If true, y = 0 in the output vector.</param>
- public static DVector3 VectorFromTo(Location l1, Location l2, bool ignoreHeight = false)
- {
- var horizontal = HorizontalVectorFromTo(l1, l2);
- var height = l2.Altitude - l1.Altitude;
- return new DVector3(horizontal.y, ignoreHeight ? 0 : height, horizontal.x);
- }
- /// <summary>
- /// Gets the game object world-position for location.
- /// </summary>
- /// <param name="arLocationRoot"></param>
- /// <param name="userPosition"></param>
- /// <param name="userLocation"></param>
- /// <param name="objectLocation"></param>
- /// <param name="heightIsRelative"></param>
- /// <returns></returns>
- public static Vector3 GetGameObjectPositionForLocation(Transform arLocationRoot, Vector3 userPosition, Location userLocation, Location objectLocation, bool heightIsRelative)
- {
- var displacementVector = VectorFromTo(userLocation, objectLocation, objectLocation.IgnoreAltitude || heightIsRelative)
- .toVector3();
- var displacementPosition = arLocationRoot ? arLocationRoot.TransformVector(displacementVector) : displacementVector;
- return userPosition + displacementPosition + new Vector3(0, (heightIsRelative && !objectLocation.IgnoreAltitude) ? ((float)objectLocation.Altitude - userPosition.y) : 0, 0);
- }
- /// <summary>
- /// Gets the game object world-position for location.
- /// </summary>
- /// <returns>The game object position for location.</returns>
- /// <param name="arLocationRoot"></param>
- /// <param name="user">User.</param>
- /// <param name="userLocation">User location.</param>
- /// <param name="objectLocation">Object location.</param>
- /// <param name="heightIsRelative">If set to <c>true</c> height is relative.</param>
- ///
- public static Vector3 GetGameObjectPositionForLocation(Transform arLocationRoot, Transform user, Location userLocation, Location objectLocation, bool heightIsRelative)
- {
- return GetGameObjectPositionForLocation(arLocationRoot, user.position, userLocation, objectLocation,
- heightIsRelative);
- }
- /// <summary>
- /// Places the game object at location.
- /// </summary>
- /// <param name="arLocationRoot"></param>
- /// <param name="transform">The GameObject's transform.</param>
- /// <param name="user">The user's point of view Transform, e.g., camera.</param>
- /// <param name="userLocation">User Location.</param>
- /// <param name="objectLocation">Object Location.</param>
- /// <param name="heightIsRelative"></param>
- public static void PlaceGameObjectAtLocation(Transform arLocationRoot, Transform transform, Transform user, Location userLocation, Location objectLocation, bool heightIsRelative)
- {
- transform.position = GetGameObjectPositionForLocation(arLocationRoot, user, userLocation, objectLocation, heightIsRelative);
- }
- /// <summary>
- /// Calculates the wgs84 Location for a given world position vector.
- /// </summary>
- /// <param name="arLocationRoot">The ARLocationRoot game object transform.</param>
- /// <param name="center">The position of the center (i.e., the device).</param>
- /// <param name="userLocation">The wgs84 Location of the center/device.</param>
- /// <param name="worldPosition">The world position.</param>
- /// <returns></returns>
- public static Location GetLocationForWorldPosition(Transform arLocationRoot, Vector3 center, Location userLocation, Vector3 worldPosition)
- {
- center = arLocationRoot.InverseTransformVector(center);
- Vector3 position = arLocationRoot.InverseTransformVector(worldPosition);
- var n = position.z - center.z;
- var e = position.x - center.x;
- var u = 0;
- var loc = LocationFromEnu(userLocation, e, n, u);
- return loc;
- }
- public static bool Equal(Location a, Location b, double eps = 0.0000001)
- {
- return (Math.Abs(a.Latitude - b.Latitude) <= eps) &&
- (Math.Abs(a.Longitude - b.Longitude) <= eps) &&
- (Math.Abs(a.Altitude - b.Altitude) <= eps);
- }
- public static double RadToDeg(double rad)
- {
- return (180.0 * Math.PI) * rad;
- }
- public static double DegToRad(double deg)
- {
- return (Math.PI/ 180.0) * deg;
- }
- }
- }
|