package spatial
- Alphabetic
- Public
- All
Type Members
-
case class
LatitudeLongitude(lat: Double, long: Double) extends Product with Serializable
The
LatitudeLongitude
class stores Latitude-Longitude coordinates. -
class
Matrix2D extends MatrixD
The
Matrix2D
class stores and operates on Numeric Matrices of base typeDouble
and having 2 coordinates (x, y). -
class
Matrix3D extends MatrixD
The
Matrix3D
class stores and operates on Numeric Matrices of base typeDouble
and having 3 coordinates (x, y, z). -
class
Vector2D extends VectorD
The
Vector2D
class stores and operates on Numeric Vectors of base typeDouble
and having 2 coordinates (x, y). -
class
Vector3D extends VectorD
The
Vector3D
class stores and operates on Numeric Vectors of base typeDouble
and having 3 coordinates (x, y, z).
Value Members
-
object
Earth
The
Earth
object stores basic Earth properties.The
Earth
object stores basic Earth properties.- See also
en.wikipedia.org/wiki/Earth_radius
-
object
LatLong2UTM extends Error
The
LatLong2UTM
support conversion from Latitude-Longitude to UTM coordinates -
object
LatitudeLongitudeTest extends App
The
LatitudeLongitudeTest
object tests the UTM to Lat Long conversions in both directions.The
LatitudeLongitudeTest
object tests the UTM to Lat Long conversions in both directions. > runMain scalation.spatial.LatitudeLongitudeTest -
object
LatitudeLongitudeTest2 extends App
The
LatitudeLongitudeTest2
object tests distance calculations based on latitude longitude locations for typical elevation (Athens, GA to Atlanta, GA).The
LatitudeLongitudeTest2
object tests distance calculations based on latitude longitude locations for typical elevation (Athens, GA to Atlanta, GA). > runMain scalation.spatial.LatitudeLongitudeTest2 -
object
LatitudeLongitudeTest3 extends App
The
LatitudeLongitudeTest3
object tests distance calculations based on latitude longitude locations for high elevation (Aspen, CO to Breckenridge, CO).The
LatitudeLongitudeTest3
object tests distance calculations based on latitude longitude locations for high elevation (Aspen, CO to Breckenridge, CO). > runMain scalation.spatial.LatitudeLongitudeTest3 -
object
LatitudeLongitudeTest4 extends App
The
LatitudeLongitudeTest4
object tests the 'kNearest' method used to find locations near by to Athens, GA.The
LatitudeLongitudeTest4
object tests the 'kNearest' method used to find locations near by to Athens, GA. > runMain scalation.spatial.LatitudeLongitudeTest4 -
object
Matrix2D extends Error with Serializable
The
Matrix2D
companion object provides factory methods for creating vectors. -
object
Matrix2DTest extends App
The
Matrix2DTest
object is used to test theMatrix2D
class.The
Matrix2DTest
object is used to test theMatrix2D
class. > runMain scalation.spatial.Matrix2DTest -
object
Matrix3D extends Error with Serializable
The
Matrix3D
companion object provides factory methods for creating vectors. -
object
Matrix3DTest extends App
The
Matrix3DTest
object is used to test theMatrix3D
class.The
Matrix3DTest
object is used to test theMatrix3D
class. > runMain scalation.spatial.Matrix3DTest -
object
UTM2LatLong
The
UTM2LatLong
support conversion from UTM coordinates to Latitude-Longitude. -
object
Vector2D extends Serializable
The
Vector2D
companion object provides factory methods for creating vectors. -
object
Vector2DTest extends App
The
Vector2DTest
object is used to test theVector2D
class.The
Vector2DTest
object is used to test theVector2D
class. It tests basic opertions. > runMain scalation.spatial.Vector2DTest -
object
Vector2DTest2 extends App
The
Vector2DTest2
object is used to test theVector2D
class.The
Vector2DTest2
object is used to test theVector2D
class. It tests the conversion ofLatitudeLongitude
to local (x, y) coordinates > runMain scalation.spatial.Vector2DTest2 -
object
Vector3D extends Serializable
The
Vector3D
companion object provides factory methods for creating vectors. -
object
Vector3DTest extends App
The
Vector3DTest
object is used to test theVector3D
class.The
Vector3DTest
object is used to test theVector3D
class. > runMain scalation.spatial.Vector3DTest