Location resource
Constants
No documentation available
Attributes
Read
The horizontal precision using ssize type values in meters using scientific notation as 2 integers of XeY for precision use value/2 e.g. 2m = +/-1m
Read
The vertical precision using ssize type values in meters using scientific notation as 2 integers of XeY for precision use value/2 e.g. 2m = +/-1m
Read
The latitude for this LOC
where 2**31 is the equator in thousandths of an arc second as an unsigned 32bit integer
Read
The longitude for this LOC
where 2**31 is the prime meridian in thousandths of an arc second as an unsigned 32bit integer
Class Methods
lib/resolv.rb
View on GitHub
# File tmp/rubies/ruby-3.1.3/lib/resolv.rb, line 2053
def initialize(version, ssize, hprecision, vprecision, latitude, longitude, altitude)
@version = version
@ssize = Resolv::LOC::Size.create(ssize)
@hprecision = Resolv::LOC::Size.create(hprecision)
@vprecision = Resolv::LOC::Size.create(vprecision)
@latitude = Resolv::LOC::Coord.create(latitude)
@longitude = Resolv::LOC::Coord.create(longitude)
@altitude = Resolv::LOC::Alt.create(altitude)
end
No documentation available