1Net::DNS::RR::GPOS(3) User Contributed Perl DocumentationNet::DNS::RR::GPOS(3)
2
3
4
6 Net::DNS::RR::GPOS - DNS GPOS resource record
7
9 use Net::DNS;
10 $rr = new Net::DNS::RR('name GPOS latitude longitude altitude');
11
13 Class for DNS Geographical Position (GPOS) resource records.
14
16 The available methods are those inherited from the base class augmented
17 by the type-specific methods defined in this package.
18
19 Use of undocumented package features or direct access to internal data
20 structures is discouraged and could result in program termination or
21 other unpredictable behaviour.
22
23 latitude
24 $latitude = $rr->latitude;
25 $rr->latitude( $latitude );
26
27 Floating-point representation of latitude, in degrees.
28
29 longitude
30 $longitude = $rr->longitude;
31 $rr->longitude( $longitude );
32
33 Floating-point representation of longitude, in degrees.
34
35 altitude
36 $altitude = $rr->altitude;
37 $rr->altitude( $altitude );
38
39 Floating-point representation of altitude, in metres.
40
42 Copyright (c)1997,1998 Michael Fuhr.
43
44 All rights reserved.
45
46 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
47
49 Permission to use, copy, modify, and distribute this software and its
50 documentation for any purpose and without fee is hereby granted,
51 provided that the above copyright notice appear in all copies and that
52 both that copyright notice and this permission notice appear in
53 supporting documentation, and that the name of the author not be used
54 in advertising or publicity pertaining to distribution of the software
55 without specific prior written permission.
56
57 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
58 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
59 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
60 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
61 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
62 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
63 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
64
66 perl, Net::DNS, Net::DNS::RR, RFC1712
67
68
69
70perl v5.26.3 2018-02-09 Net::DNS::RR::GPOS(3)