Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

net::gpsd3::return::gst(3pm) [debian man page]

Net::GPSD3::Return::GST(3pm)				User Contributed Perl Documentation			      Net::GPSD3::Return::GST(3pm)

NAME
Net::GPSD3::Return::GST - Net::GPSD3 Return GST Object SYNOPSIS
DESCRIPTION
Provides a Perl object interface to the GST (GPS Pseudorange Noise Statistics) object returned by the GPSD daemon. { 'class' => 'GST', 'device' => '/dev/cuaU0', 'tag' => '0x0130', 'time' => '1970-01-01T00:00:00.00Z', 'lat' => '0', 'lon' => '0', 'alt' => '0.002', 'rms' => '0', 'orient' => '0', 'major' => '0' 'minor' => '-0', } METHODS PROPERTIES
class Returns the object class string Returns the JSON string parent Returns the parent Net::GPSD3 object device tag time Returns a unix epoch time timestamp Returns a W3C formated date datetime Returns a DateTime object rms Total RMS standard deviation of ranges inputs to the navigation solution major Standard deviation (meters) of semi-major axis of error ellipse minor Standard deviation (meters) of semi-minor axis of error ellipse orient Orientation of semi-major axis of error ellipse (true north degrees) lat Standard deviation (meters) of latitude error lon Standard deviation (meters) of longitude error alt Standard deviation (meters) of altitude error BUGS
Log on RT and Send to gpsd-dev email list SUPPORT
DavisNetworks.com supports all Perl applications including this package. Try gpsd-dev email list AUTHOR
Michael R. Davis CPAN ID: MRDVT STOP, LLC domain=>michaelrdavis,tld=>com,account=>perl http://www.stopllc.com/ COPYRIGHT
This program is free software licensed under the... The BSD License The full text of the license can be found in the LICENSE file included with this module. SEE ALSO
Net::GPSD3, Net::GPSD3::Return::Unknown::Timestamp perl v5.14.2 2011-11-09 Net::GPSD3::Return::GST(3pm)

Check Out this Related Man Page

Net::GPSD3::Return::Unknown(3pm)			User Contributed Perl Documentation			  Net::GPSD3::Return::Unknown(3pm)

NAME
Net::GPSD3::Return::Unknown - Net::GPSD3 Return Base Class SYNOPSIS
use base qw{Net::GPSD3::Return::Unknown}; DESCRIPTION
Provides the base Perl object interface to all objects returned by the GPSD daemon. This class is also used if the class is unknown. METHODS
parent Returns the parent Net::GPSD3 object class Returns the class string for the particular JSON message. Classes in all upper case are from gpsd. Classes with initial capital letter are from this Perl package. Class in all lower case are currently reserved. Private extension classes should use camel case. string This is the JSON string as passed over the TCP connection. BUGS
Log on RT and Send to gpsd-dev email list SUPPORT
DavisNetworks.com supports all Perl applications including this package. Try gpsd-dev email list AUTHOR
Michael R. Davis CPAN ID: MRDVT STOP, LLC domain=>michaelrdavis,tld=>com,account=>perl http://www.stopllc.com/ COPYRIGHT
This program is free software licensed under the... The BSD License The full text of the license can be found in the LICENSE file included with this module. SEE ALSO
Net::GPSD3, Net::GPSD3::Base perl v5.14.2 2011-11-09 Net::GPSD3::Return::Unknown(3pm)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Mean and Standard deviation

Hi all, I am new to shell scripting and wanna calculate the mean and standard deviation using shell programming. I have a file with letters that are repeating and their corresponding duration a 0.32 a 0.89 aa 0.34 aa 0.23 au 0.012 au 0.26... (4 Replies)
Discussion started by: lakshmikanth.pg
4 Replies

2. Shell Programming and Scripting

Standard deviation in awk

Hi all, I need to find the standard deviation of each column of a dataset below for each hour. The data is given in 5 second intervals as shown below DATE TIME FRAC_DAYS_SINCE_JAN1 FRAC_HRS_SINCE_JAN1 EPOCH_TIME ... (11 Replies)
Discussion started by: gd9629
11 Replies

3. Shell Programming and Scripting

calculating row-wise standard deviation using awk

Hi, I have a file containing 100,000 rows-by-120 columns and I need to compute for the standard deviation for each row. Any idea on how to calculate row-wise standard deviation using awk? My sample data looks like this: input data: 23 35 12 25 16 17 18 19 29 12 12 26 15 14 15 23 12 12... (2 Replies)
Discussion started by: ida1215
2 Replies

4. UNIX for Dummies Questions & Answers

Shell Scripting for Router, Switch & FW deviation

Hi, I have written a script for finding deviation for router,switch &fw. It is working fine on linux server. But when I try on sunos 5.10 OS it showing "grep: illegal option -- A". I have used grep -C and grep -A. How it will work on sunos? Help me out please !! (12 Replies)
Discussion started by: GautamSK
12 Replies

5. Shell Programming and Scripting

SMA (Single Moving Average) and Standard Deviation

Hello Team, I am using the following awk script to calculate the SMA (Single Moving Average) for an specific period but now I would like to include the standard deviation output. Could you please help me to modify this awk shell script awk -F, -v points=5 ' { a = $2; ... (4 Replies)
Discussion started by: csierra
4 Replies