File tree Expand file tree Collapse file tree 4 files changed +45
-14
lines changed Expand file tree Collapse file tree 4 files changed +45
-14
lines changed Original file line number Diff line number Diff line change 1
1
<sect1 id="appendixes">
2
2
<title>
3
- Appendixes
3
+ Appendix
4
4
</title>
5
5
<sect2 id="appendixes.changelog-1-1">
6
6
<title>
24
24
</listitem>
25
25
</itemizedlist>
26
26
</sect2>
27
- <sect2 id="appendixes.changelog-1-2 ">
27
+ <sect2 id="appendixes.changelog-1-1-5 ">
28
28
<title>
29
- Changes from version 1.1 to 1.2
29
+ Changes from version 1.1 to 1.1.5
30
30
</title>
31
31
<itemizedlist>
32
32
<listitem>
33
33
<para>
34
34
Modify behavior of function <function>set_sphere_output_precision</function>.
35
35
</para>
36
36
</listitem>
37
+ <listitem>
38
+ <para>
39
+ Compatibility with <application>PostgreSQL</application> 9.2
40
+ and later.
41
+ </para>
42
+ </listitem>
43
+ <listitem>
44
+ <para>
45
+ Creating spath and spolygon objects "as aggregate"
46
+ from tables should now work.
47
+ </para>
48
+ </listitem>
49
+ <listitem>
50
+ <para>
51
+ Improved accuracy of spoint (great circle) distance calculation.
52
+ </para>
53
+ </listitem>
54
+ <listitem>
55
+ <para>
56
+ Add new contains operators consistent with the geometry operators
57
+ of the plain used in <application>PostgreSQL</application> 8.2
58
+ and later:
59
+ <@ and @>, the old operators @ and ˜ still work.
60
+ </para>
61
+ </listitem>
62
+ <listitem>
63
+ <para>
64
+ Improved correctness of spatial indexing.
65
+ </para>
66
+ </listitem>
37
67
</itemizedlist>
38
68
</sect2>
39
69
Original file line number Diff line number Diff line change 151
151
Contain and overlap
152
152
</title>
153
153
<para>
154
- On sphere, an equality relationship is rarely used. There
154
+ On the sphere, an equality relationship is rarely used. There
155
155
are frequently questions like <emphasis>Is object
156
156
<literal>a</literal> contained by object
157
157
<literal>b</literal>?</emphasis> or <emphasis>Does object
175
175
<tbody>
176
176
<row>
177
177
<entry>
178
- @
178
+ @ or <@
179
179
</entry>
180
180
<entry>
181
- the left object is contained by right object
181
+ the left object is contained by the right object
182
182
</entry>
183
183
</row>
184
184
<row>
185
185
<entry>
186
- ˜
186
+ ˜ or @>
187
187
</entry>
188
188
<entry>
189
- the left object contains right object
189
+ the left object contains the right object
190
190
</entry>
191
191
</row>
192
192
<row>
193
193
<entry>
194
- !@
194
+ !@ or !<@
195
195
</entry>
196
196
<entry>
197
- the left object is not contained by right object
197
+ the left object is not contained by the right object
198
198
</entry>
199
199
</row>
200
200
<row>
201
201
<entry>
202
- !˜
202
+ !˜ or !@>
203
203
</entry>
204
204
<entry>
205
- the left object does not contain right object
205
+ the left object does not contain the right object
206
206
</entry>
207
207
</row>
208
208
<row>
Original file line number Diff line number Diff line change 30
30
<article lang =" en" >
31
31
<articleinfo >
32
32
<title >
33
- pgSphere 1.2
33
+ pgSphere 1.1.5
34
34
</title >
35
35
<author >
36
36
<surname >pgSphere development team</surname >
50
50
</para >
51
51
<para >
52
52
The project is hosted at <ulink url =" http://pgfoundry.org/projects/pgsphere/" ><citetitle >pgfoundry.org</citetitle ></ulink >
53
+ and <ulink url =" https://github.com/akorotkov/pgsphere" ><citetitle >https://github.com/akorotkov/pgsphere</citetitle ></ulink >
53
54
</para >
54
55
<para >
55
56
This document
Original file line number Diff line number Diff line change @@ -570,6 +570,6 @@ Datum
570
570
pg_sphere_version (PG_FUNCTION_ARGS )
571
571
{
572
572
char * buffer = (char * ) palloc (20 );
573
- sprintf (buffer , "1.2.0 " );
573
+ sprintf (buffer , "1.1.5 " );
574
574
PG_RETURN_CSTRING (buffer );
575
575
}
You can’t perform that action at this time.
0 commit comments