![]() |
![]()
| ![]() |
![]()
NAMEGPS::OID - Package for GPS PRN - Object ID conversions. SYNOPSISuse GPS::OID; my $obj = GPS::OID->new(); print "PRN: ", $obj->prn_oid(22231), "\n"; print "OID: ", $obj->oid_prn(1), "\n"; DESCRIPTIONThis module maps GPS PRN number to Satellite OID and vice versa. Object Identification Number (OID)The catalog number assigned to the object by the US Air Force. The numbers are assigned sequentially as objects are cataloged. This is the most common way to search for TLE data on this site. Object numbers less then 10000 are always aligned to the right, and padded with zeros or spaces to the left. Pseudo Random Numbers (PRNs)GPS satellites are identified by the receiver by means of PRN-numbers. Real GPS satellites are numbered from 1 - 32. WAAS/EGNOS satellites and other pseudolites are assigned higher numbers. The PRN-numbers of the satellites appear on the satellite view screens of many GPS receivers. CONVENTIONSFunction naming convention is "format of the return" underscore "format of the parameters." CONSTRUCTORnewThe new() constructor my $obj = GPS::OID->new(); METHODSinitializeprn_oidPRN given Object ID. my $prn=prn_oid(22231); oid_prnObject ID given PRN. my $oid=oid_prn(1); listprnList all known PRNs. my @prn=$obj->listprn; my $prn=$obj->listprn; listoidList all known OIDs. my @oid=$obj->listoid; my $oid=$obj->listoid; dataOID to PRN hash reference my $data=$self->data; overloadAdds or overloads new OID/PRN pairs. $obj->overload($oid=>$prn); resetResets overloaded OID/PRN pairs to package defaults. $obj->reset; TODOBUGSPlease send issues to the gpsd-dev email list. LIMITSAUTHORMichael R. Davis qw/perl michaelrdavis com/ LICENSECopyright (c) 2006 Michael R. Davis (mrdvt92) This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
|