summaryrefslogtreecommitdiff
path: root/doc/src/sgml/earthdistance.sgml
blob: 7ca2c40e37d7b73a04918faea3290a68c3d4720e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!-- doc/src/sgml/earthdistance.sgml -->

<sect1 id="earthdistance" xreflabel="earthdistance">
 <title>earthdistance</title>

 <indexterm zone="earthdistance">
  <primary>earthdistance</primary>
 </indexterm>

 <para>
  The <filename>earthdistance</filename> module provides two different approaches to
  calculating great circle distances on the surface of the Earth. The one
  described first depends on the <filename>cube</filename> module (which
  <emphasis>must</emphasis> be installed before <filename>earthdistance</filename> can be
  installed). The second one is based on the built-in <type>point</type> data type,
  using longitude and latitude for the coordinates.
 </para>

 <para>
  In this module, the Earth is assumed to be perfectly spherical.
  (If that's too inaccurate for you, you might want to look at the
  <application><ulink url="http://postgis.net/">PostGIS</ulink></application>
  project.)
 </para>

 <para>
  This module is considered <quote>trusted</quote>, that is, it can be
  installed by non-superusers who have <literal>CREATE</literal> privilege
  on the current database.
 </para>

 <sect2>
  <title>Cube-Based Earth Distances</title>

  <para>
   Data is stored in cubes that are points (both corners are the same) using 3
   coordinates representing the x, y, and z distance from the center of the
   Earth.  A domain <type>earth</type> over <type>cube</type> is provided, which
   includes constraint checks that the value meets these restrictions and
   is reasonably close to the actual surface of the Earth.
  </para>

  <para>
   The radius of the Earth is obtained from the <function>earth()</function>
   function. It is given in meters. But by changing this one function you can
   change the module to use some other units, or to use a different value of
   the radius that you feel is more appropriate.
  </para>

  <para>
   This package has applications to astronomical databases as well.
   Astronomers will probably want to change <function>earth()</function> to return a
   radius of <literal>180/pi()</literal> so that distances are in degrees.
  </para>

  <para>
   Functions are provided to support input in latitude and longitude (in
   degrees), to support output of latitude and longitude, to calculate
   the great circle distance between two points and to easily specify a
   bounding box usable for index searches.
  </para>

  <para>
   The provided functions are shown
   in <xref linkend="earthdistance-cube-functions"/>.
  </para>

  <table id="earthdistance-cube-functions">
   <title>Cube-Based Earthdistance Functions</title>
   <tgroup cols="3">
    <thead>
     <row>
      <entry>Function</entry>
      <entry>Returns</entry>
      <entry>Description</entry>
     </row>
    </thead>
    <tbody>
     <row>
      <entry><function>earth()</function><indexterm><primary>earth</primary></indexterm></entry>
      <entry><type>float8</type></entry>
      <entry>Returns the assumed radius of the Earth.</entry>
     </row>
     <row>
      <entry><function>sec_to_gc(float8)</function><indexterm><primary>sec_to_gc</primary></indexterm></entry>
      <entry><type>float8</type></entry>
      <entry>Converts the normal straight line
       (secant) distance between two points on the surface of the Earth
       to the great circle distance between them.
      </entry>
     </row>
     <row>
      <entry><function>gc_to_sec(float8)</function><indexterm><primary>gc_to_sec</primary></indexterm></entry>
      <entry><type>float8</type></entry>
      <entry>Converts the great circle distance between two points on the
       surface of the Earth to the normal straight line (secant) distance
       between them.
      </entry>
     </row>
     <row>
      <entry><function>ll_to_earth(float8, float8)</function><indexterm><primary>ll_to_earth</primary></indexterm></entry>
      <entry><type>earth</type></entry>
      <entry>Returns the location of a point on the surface of the Earth given
       its latitude (argument 1) and longitude (argument 2) in degrees.
      </entry>
     </row>
     <row>
      <entry><function>latitude(earth)</function><indexterm><primary>latitude</primary></indexterm></entry>
      <entry><type>float8</type></entry>
      <entry>Returns the latitude in degrees of a point on the surface of the
       Earth.
      </entry>
     </row>
     <row>
      <entry><function>longitude(earth)</function><indexterm><primary>longitude</primary></indexterm></entry>
      <entry><type>float8</type></entry>
      <entry>Returns the longitude in degrees of a point on the surface of the
       Earth.
      </entry>
     </row>
     <row>
      <entry><function>earth_distance(earth, earth)</function><indexterm><primary>earth_distance</primary></indexterm></entry>
      <entry><type>float8</type></entry>
      <entry>Returns the great circle distance between two points on the
       surface of the Earth.
      </entry>
     </row>
     <row>
      <entry><function>earth_box(earth, float8)</function><indexterm><primary>earth_box</primary></indexterm></entry>
      <entry><type>cube</type></entry>
      <entry>Returns a box suitable for an indexed search using the cube
       <literal>@&gt;</literal>
       operator for points within a given great circle distance of a location.
       Some points in this box are further than the specified great circle
       distance from the location, so a second check using
       <function>earth_distance</function> should be included in the query.
      </entry>
     </row>
    </tbody>
   </tgroup>
  </table>

 </sect2>

 <sect2>
  <title>Point-Based Earth Distances</title>

  <para>
   The second part of the module relies on representing Earth locations as
   values of type <type>point</type>, in which the first component is taken to
   represent longitude in degrees, and the second component is taken to
   represent latitude in degrees.  Points are taken as (longitude, latitude)
   and not vice versa because longitude is closer to the intuitive idea of
   x-axis and latitude to y-axis.
  </para>

  <para>
   A single operator is provided, shown
   in <xref linkend="earthdistance-point-operators"/>.
  </para>

  <table id="earthdistance-point-operators">
   <title>Point-Based Earthdistance Operators</title>
   <tgroup cols="3">
    <thead>
     <row>
      <entry>Operator</entry>
      <entry>Returns</entry>
      <entry>Description</entry>
     </row>
    </thead>
    <tbody>
     <row>
      <entry><type>point</type> <literal>&lt;@&gt;</literal> <type>point</type></entry>
      <entry><type>float8</type></entry>
      <entry>Gives the distance in statute miles between
       two points on the Earth's surface.
      </entry>
     </row>
    </tbody>
   </tgroup>
  </table>

  <para>
   Note that unlike the <type>cube</type>-based part of the module, units
   are hardwired here: changing the <function>earth()</function> function will
   not affect the results of this operator.
  </para>

  <para>
   One disadvantage of the longitude/latitude representation is that
   you need to be careful about the edge conditions near the poles
   and near +/- 180 degrees of longitude.  The <type>cube</type>-based
   representation avoids these discontinuities.
  </para>

 </sect2>

</sect1>