home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _f420169fab2192f587bdf67f137dc757 < prev    next >
Text File  |  2000-03-23  |  5KB  |  141 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Net::DNS::RR::LOC - DNS LOC resource record</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Net::DNS::RR::LOC - DNS LOC resource record</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#methods">METHODS</A></LI>
  26.     <UL>
  27.  
  28.         <LI><A HREF="#version">version</A></LI>
  29.         <LI><A HREF="#size">size</A></LI>
  30.         <LI><A HREF="#horiz_pre">horiz_pre</A></LI>
  31.         <LI><A HREF="#vert_pre">vert_pre</A></LI>
  32.         <LI><A HREF="#latitude">latitude</A></LI>
  33.         <LI><A HREF="#longitude">longitude</A></LI>
  34.         <LI><A HREF="#latlon">latlon</A></LI>
  35.         <LI><A HREF="#altitude">altitude</A></LI>
  36.     </UL>
  37.  
  38.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  39.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  40. </UL>
  41. <!-- INDEX END -->
  42.  
  43. <HR>
  44. <P>
  45. <H1><A NAME="name">NAME</A></H1>
  46. <P>Net::DNS::RR::LOC - DNS LOC resource record</P>
  47. <P>
  48. <HR>
  49. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  50. <UL>
  51. <LI>Linux</LI>
  52. <LI>Solaris</LI>
  53. <LI>Windows</LI>
  54. </UL>
  55. <HR>
  56. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  57. <P><CODE>use Net::DNS::RR</CODE>;</P>
  58. <P>
  59. <HR>
  60. <H1><A NAME="description">DESCRIPTION</A></H1>
  61. <P>Class for DNS Location (LOC) resource records.  See RFC 1876 for
  62. details.</P>
  63. <P>
  64. <HR>
  65. <H1><A NAME="methods">METHODS</A></H1>
  66. <P>
  67. <H2><A NAME="version">version</A></H2>
  68. <PRE>
  69.     print "version = ", $rr->version, "\n";</PRE>
  70. <P>Returns the version number of the representation; programs should
  71. always check this.  <CODE>Net::DNS</CODE> currently supports only version 0.</P>
  72. <P>
  73. <H2><A NAME="size">size</A></H2>
  74. <PRE>
  75.     print "size = ", $rr->size, "\n";</PRE>
  76. <P>Returns the diameter of a sphere enclosing the described entity,
  77. in centimeters.</P>
  78. <P>
  79. <H2><A NAME="horiz_pre">horiz_pre</A></H2>
  80. <PRE>
  81.     print "horiz_pre = ", $rr->horiz_pre, "\n";</PRE>
  82. <P>Returns the horizontal precision of the data, in centimeters.</P>
  83. <P>
  84. <H2><A NAME="vert_pre">vert_pre</A></H2>
  85. <PRE>
  86.     print "vert_pre = ", $rr->vert_pre, "\n";</PRE>
  87. <P>Returns the vertical precision of the data, in centimeters.</P>
  88. <P>
  89. <H2><A NAME="latitude">latitude</A></H2>
  90. <PRE>
  91.     print "latitude = ", $rr->latitude, "\n";</PRE>
  92. <P>Returns the latitude of the center of the sphere described by
  93. the <CODE>size</CODE> method, in thousandths of a second of arc.  2**31
  94. represents the equator; numbers above that are north latitude.</P>
  95. <P>
  96. <H2><A NAME="longitude">longitude</A></H2>
  97. <PRE>
  98.     print "longitude = ", $rr->longitude, "\n";</PRE>
  99. <P>Returns the longitude of the center of the sphere described by
  100. the <CODE>size</CODE> method, in thousandths of a second of arc.  2**31
  101. represents the prime meridian; numbers above that are east
  102. longitude.</P>
  103. <P>
  104. <H2><A NAME="latlon">latlon</A></H2>
  105. <PRE>
  106.     ($lat, $lon) = $rr->latlon;
  107.     system("xearth", "-pos", "fixed $lat $lon");</PRE>
  108. <P>Returns the latitude and longitude as floating-point degrees.
  109. Positive numbers represent north latitude or east longitude;
  110. negative numbers represent south latitude or west longitude.</P>
  111. <P>
  112. <H2><A NAME="altitude">altitude</A></H2>
  113. <PRE>
  114.     print "altitude = ", $rr->altitude, "\n";</PRE>
  115. <P>Returns the altitude of the center of the sphere described by
  116. the <CODE>size</CODE> method, in centimeters, from a base of 100,000m
  117. below the WGS 84 reference spheroid used by GPS.</P>
  118. <P>
  119. <HR>
  120. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  121. <P>Copyright (c) 1997 Michael Fuhr.  All rights reserved.  This program is free
  122. software; you can redistribute it and/or modify it under the same terms as
  123. Perl itself.</P>
  124. <P>Some of the code and documentation is based on RFC 1876 and on code
  125. contributed by Christopher Davis.</P>
  126. <P>
  127. <HR>
  128. <H1><A NAME="see also">SEE ALSO</A></H1>
  129. <P><EM>perl(1)</EM>, <A HREF="../../../../../site/lib/Net/DNS.html">the Net::DNS manpage</A>, <A HREF="../../../../../site/lib/Net/DNS/Resolver.html">the Net::DNS::Resolver manpage</A>, <A HREF="../../../../../site/lib/Net/DNS/Packet.html">the Net::DNS::Packet manpage</A>,
  130. <A HREF="../../../../../site/lib/Net/DNS/Header.html">the Net::DNS::Header manpage</A>, <A HREF="../../../../../site/lib/Net/DNS/Question.html">the Net::DNS::Question manpage</A>, <A HREF="../../../../../site/lib/Net/DNS/RR.html">the Net::DNS::RR manpage</A>,
  131. RFC 1876</P>
  132. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  133. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  134. <STRONG><P CLASS=block> Net::DNS::RR::LOC - DNS LOC resource record</P></STRONG>
  135. </TD></TR>
  136. </TABLE>
  137.  
  138. </BODY>
  139.  
  140. </HTML>
  141.