shp 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +34 -0
  3. data/.travis.yml +4 -0
  4. data/Gemfile +3 -0
  5. data/LICENSE +28 -0
  6. data/README.md +30 -0
  7. data/Rakefile +23 -0
  8. data/ext/shp/base.hpp +113 -0
  9. data/ext/shp/dbf.cpp +381 -0
  10. data/ext/shp/dbf.hpp +44 -0
  11. data/ext/shp/extconf.rb +13 -0
  12. data/ext/shp/shape_object.cpp +58 -0
  13. data/ext/shp/shape_object.hpp +27 -0
  14. data/ext/shp/shapefile.cpp +299 -0
  15. data/ext/shp/shapefile.hpp +35 -0
  16. data/ext/shp/shapelib/.cvsignore +15 -0
  17. data/ext/shp/shapelib/ChangeLog +450 -0
  18. data/ext/shp/shapelib/HOWTO-RELEASE +16 -0
  19. data/ext/shp/shapelib/LICENSE.LGPL +483 -0
  20. data/ext/shp/shapelib/Makefile +113 -0
  21. data/ext/shp/shapelib/README +41 -0
  22. data/ext/shp/shapelib/README.tree +172 -0
  23. data/ext/shp/shapelib/contrib/.cvsignore +12 -0
  24. data/ext/shp/shapelib/contrib/Makefile +66 -0
  25. data/ext/shp/shapelib/contrib/ShapeFileII.pas +234 -0
  26. data/ext/shp/shapelib/contrib/Shape_PointInPoly.cpp +238 -0
  27. data/ext/shp/shapelib/contrib/Shape_PointInPoly_README.txt +59 -0
  28. data/ext/shp/shapelib/contrib/csv2shp.c +558 -0
  29. data/ext/shp/shapelib/contrib/dbfcat.c +166 -0
  30. data/ext/shp/shapelib/contrib/dbfinfo.c +106 -0
  31. data/ext/shp/shapelib/contrib/makefile.vc +34 -0
  32. data/ext/shp/shapelib/contrib/my_nan.h +46 -0
  33. data/ext/shp/shapelib/contrib/shpcat.c +100 -0
  34. data/ext/shp/shapelib/contrib/shpcentrd.c +159 -0
  35. data/ext/shp/shapelib/contrib/shpdata.c +129 -0
  36. data/ext/shp/shapelib/contrib/shpdxf.c +340 -0
  37. data/ext/shp/shapelib/contrib/shpfix.c +110 -0
  38. data/ext/shp/shapelib/contrib/shpgeo.c +1595 -0
  39. data/ext/shp/shapelib/contrib/shpgeo.h +154 -0
  40. data/ext/shp/shapelib/contrib/shpinfo.c +113 -0
  41. data/ext/shp/shapelib/contrib/shpproj.c +260 -0
  42. data/ext/shp/shapelib/contrib/shpsort.c +605 -0
  43. data/ext/shp/shapelib/contrib/shpsort.txt +44 -0
  44. data/ext/shp/shapelib/contrib/shpwkb.c +123 -0
  45. data/ext/shp/shapelib/contrib/tests/shpproj.sh +38 -0
  46. data/ext/shp/shapelib/dbfopen.c +2221 -0
  47. data/ext/shp/shapelib/makefile.vc +86 -0
  48. data/ext/shp/shapelib/makeshape.sh +21 -0
  49. data/ext/shp/shapelib/mkdist.sh +37 -0
  50. data/ext/shp/shapelib/mkinstalldirs +38 -0
  51. data/ext/shp/shapelib/mkrelease.sh +55 -0
  52. data/ext/shp/shapelib/safileio.c +286 -0
  53. data/ext/shp/shapelib/shapefil.h +647 -0
  54. data/ext/shp/shapelib/shapelib.def +46 -0
  55. data/ext/shp/shapelib/shpopen.c +2388 -0
  56. data/ext/shp/shapelib/shptree.c +1187 -0
  57. data/ext/shp/shapelib/shputils.c +1072 -0
  58. data/ext/shp/shapelib/stream1.out +1465 -0
  59. data/ext/shp/shapelib/stream1.sh +28 -0
  60. data/ext/shp/shapelib/stream2.out +530 -0
  61. data/ext/shp/shapelib/stream2.sh +11 -0
  62. data/ext/shp/shapelib/stream3.out +37 -0
  63. data/ext/shp/shapelib/web/.cvsignore +2 -0
  64. data/ext/shp/shapelib/web/codepage.html +403 -0
  65. data/ext/shp/shapelib/web/dbf_api.html +436 -0
  66. data/ext/shp/shapelib/web/index.html +235 -0
  67. data/ext/shp/shapelib/web/license.html +78 -0
  68. data/ext/shp/shapelib/web/manifest.html +87 -0
  69. data/ext/shp/shapelib/web/release.html +80 -0
  70. data/ext/shp/shapelib/web/shapelib-tools.html +352 -0
  71. data/ext/shp/shapelib/web/shp_api.html +376 -0
  72. data/ext/shp/shp.cpp +19 -0
  73. data/ext/shp/shp.hpp +47 -0
  74. data/lib/shp.rb +35 -0
  75. data/lib/shp/version.rb +3 -0
  76. data/shp.gemspec +23 -0
  77. data/spec/shp_spec.rb +127 -0
  78. metadata +176 -0
@@ -0,0 +1,15 @@
1
+ dbfadd
2
+ dbfcreate
3
+ dbfdump
4
+ shpadd
5
+ shpcreate
6
+ shpdump
7
+ shprewind
8
+ shptreedump
9
+ shptest
10
+ *.dll
11
+ *.lib
12
+ *.exp
13
+ *.la
14
+ *.lo
15
+ .libs
@@ -0,0 +1,450 @@
1
+ 2012-01-27 Frank Warmerdam <warmerdam@pobox.com>
2
+
3
+ * shptree.c: optimize quadtree generation (gdal #4472)
4
+
5
+ 2012-01-24 Frank Warmerdam <warmerdam@google.com>
6
+
7
+ * shpopen.c: fix memory leaks on failure to open .shp file.
8
+
9
+ 2011-12-11 Frank Warmerdam <warmerdam@pobox.com>
10
+
11
+ * shptree.c,h: Use SAHooks for .qix access (gdal #3365)
12
+
13
+ 2011-09-14 Frank Warmerdam <warmerdam@pobox.com>
14
+
15
+ * shpopen.c: fix missing cast (#2344)
16
+
17
+ 2011-07-24 <warmerdam@pobox.com>
18
+
19
+ * shpopen.c, dbfopen.c, shptree.c, shapefil.h: Minimize use of
20
+ CPL services in favor of SAHooks.Error().
21
+
22
+ * Makefile: Remove all the shared library building stuff, it is just
23
+ too half assed, and results in all sorts of bug reports and complaints.
24
+ Instead just install a static libshp.a.
25
+
26
+ 2011-07-23 <warmerdam@pobox.com>
27
+
28
+ * Makefile: build shpdumptree as part of all target (#1648).
29
+
30
+ * shpopen.c: fix memory leaks in error cases (#2061)
31
+
32
+ * contrib/*.c: Include stdlib.h and strings.h (#2146)
33
+
34
+ * shpdump.c: change to use %.15g for coordinate reporting. (#2277)
35
+
36
+ 2011-05-13 Frank Warmerdam <warmerdam@pobox.com>
37
+
38
+ * dbfopen.c, shapelib.h: Add functions to reorder and alter
39
+ field definitions. DBFReorderFields() and DBFAlterFields().
40
+
41
+ 2011-05-07 Frank Warmerdam <warmerdam@pobox.com>
42
+
43
+ * dbfopen.c: Ensure pending record is flushed when adding a native
44
+ field (gdal #4073).
45
+
46
+ 2011-04-16 Frank Warmerdam <warmerdam@pobox.com>
47
+
48
+ * shapefil.h: avoid warnings with SHP_CVSID on gcc.
49
+
50
+ 2010-12-06 Frank Warmerdam <warmerdam@pobox.com>
51
+
52
+ * dbfopen.c: fix read past end of init data fetching code page
53
+ http://bugzilla.maptools.org/show_bug.cgi?id=2276
54
+
55
+ 2010-07-01 Frank Warmerdam <warmerdam@pobox.com>
56
+
57
+ * shpopen.c: do not error out on a shape with zero vertices.
58
+
59
+ * shpdump.c: do not crash if null shape returned by read object.
60
+
61
+ 2010-06-29 Frank Warmerdam <warmerdam@pobox.com>
62
+
63
+ * shptree.c: fix sign of Z and M comparisons in SHPCheckObjectContained.
64
+ (http://bugzilla.maptools.org/show_bug.cgi?id=2223)
65
+
66
+ 2010-01-28 Frank Warmerdam <warmerdam@pobox.com>
67
+
68
+ * shpopen.c/shapefil.h: Handle the .shp file length limits more
69
+ gracefully. (http://trac.osgeo.org/gdal/ticket/3236)
70
+
71
+ * shpopen.c: Improve the numerical accurancy of algorithms in
72
+ SHPRewind() (http://trac.osgeo.org/gdal/ticket/3363).
73
+
74
+ 2010-01-16 Frank Warmerdam <warmerdam@pobox.com>
75
+
76
+ * shpopen.c: support passing in zero/nulls to create an empty
77
+ SHPObject: http://bugzilla.maptools.org/show_bug.cgi?id=2148
78
+
79
+ 2009-10-29 Frank Warmerdam <warmerdam@pobox.com>
80
+
81
+ * dbfopen.c: avoid crash risk for truncated files.
82
+ http://trac.osgeo.org/gdal/ticket/3093
83
+
84
+ 2009-09-17 Bram de Greve <bram.degreve@bramz.net>
85
+
86
+ * shpopen.c: on Win32, define snprintf as alias to _snprintf
87
+
88
+ 2008-11-12 Frank Warmerdam <warmerdam@pobox.com>
89
+
90
+ * shptree.c: improve safety in face of buggy .shp file.
91
+ http://trac.osgeo.org/gdal/ticket/2610
92
+
93
+ * dbfopen.c: DBFCreateField() can now also operate on files with
94
+ records, c/o Martin Dobias.
95
+ https://trac.osgeo.org/gdal/ticket/2672
96
+
97
+ 2008-11-11 Frank Warmerdam <warmerdam@pobox.com>
98
+
99
+ * dbfopen.c: Introduce DBFDeleteField() function from Martin Dobias.
100
+ http://trac.osgeo.org/gdal/ticket/2671
101
+
102
+ 2008-03-14 Frank Warmerdam <warmerdam@pobox.com>
103
+
104
+ * Correct crash on buggy geometries (Even Rouault).
105
+ http://trac.osgeo.org/gdal/ticket/2218
106
+
107
+ 2008-01-16 Bram de Greve <bram.degreve@bramz.net>
108
+
109
+ * shapefil.h, safileio.c: add file hooks that accept UTF-8
110
+ encoded filenames on some platforms. Use SASetupUtf8Hooks
111
+ to setup the hooks and check SHPAPI_UTF8_HOOKS for its
112
+ availability. Currently, this is only available on the Windows
113
+ platform that decodes the UTF-8 filenames to wide character
114
+ strings and feed them to _wfopen and _wremove.
115
+
116
+ 2008-01-10 Frank Warmerdam <warmerdam@pobox.com>
117
+
118
+ * shapefil.h: Avoid _ prefix on #defines.
119
+ http://bugzilla.maptools.org/show_bug.cgi?id=1840
120
+
121
+ 2008-01-03 Bram de Greve <bram.degreve@bramz.net>
122
+
123
+ * dbfopen.c: in DBFCreate, use default code page
124
+ LDID/87 (= 0x57, ANSI) instead of LDID/3. This seems
125
+ to be the same as what ESRI would be doing by default.
126
+
127
+ 2007-12-30 Frank Warmerdam <warmerdam@pobox.com>
128
+
129
+ * shpadd.c/shpcreate.c: Add support for z and m files.
130
+
131
+ * Massive overhaul to use hooks for file io, etc.
132
+
133
+ 2007-12-18 Bram de Greve <bram.degreve@bramz.net>
134
+
135
+ * dbfopen.c/shapefil.h/safileio.c: create hook for client
136
+ specific atof http://bugzilla.maptools.org/show_bug.cgi?id=1615
137
+
138
+ * dbfopen.c: check for NULL handle before closing cpCPG file,
139
+ and close after reading.
140
+
141
+ 2007-12-15 Bram de Greve <bram.degreve@bramz.net>
142
+
143
+ * dbfopen.c/shapefil.h/safileio.c: read the Code Page information
144
+ from the DBF file, and exports this information as a string through
145
+ the DBFGetCodePage function. This is either the number from the LDID
146
+ header field ("LDID/<number>") or as the content of an accompanying
147
+ .CPG file. When creating a DBF file, the code can be set using
148
+ DBFCreateEx.
149
+
150
+ 2007-12-12 Bram de Greve <bram.degreve@bramz.net>
151
+
152
+ * dbfopen.c: check for NULL handle in DBFClose.
153
+
154
+ 2007-11-21 Frank Warmerdam <warmerdam@pobox.com>
155
+
156
+ * shpopen.c/shapefil.h: Don't keep .shx file open in read-only mode.
157
+ http://trac.osgeo.org/gdal/ticket/1956
158
+
159
+ 2007-11-14 Frank Warmerdam <warmerdam@pobox.com>
160
+
161
+ * shpopen.c: checks after mallocs to detect for corrupted/voluntary
162
+ broken shapefiles. http://trac.osgeo.org/gdal/ticket/1991
163
+
164
+ 2007-09-03 Frank Warmerdam <warmerdam@pobox.com>
165
+
166
+ * shpgeo.c: Fixed SHPDimension() (missing breaks) in shpgeo.c.
167
+ Fix contributed by Andrea Peri.
168
+
169
+ * dbfopen.c: Move the static dDoubleField return buffer into DBFInfo
170
+ structure to avoid multithreaded risks.
171
+
172
+ * dbfopen.c: Simplify DBFReadTuple() to avoid use of static tuple.
173
+ Note that this means DBFReadTuple() results are only valid till the
174
+ next record is read for any reason.
175
+
176
+ 2007-06-21 Frank Warmerdam <warmerdam@pobox.com>
177
+
178
+ * shpopen.c: Fix for SHPRewind() for "contact at one vertex"
179
+ cases in rings. http://trac.osgeo.org/gdal/ticket/976
180
+
181
+ 2006-11-06 Frank Warmerdam <warmerdam@pobox.com>
182
+
183
+ * contrib/shpgeo.c: Modified SHPProject to use pj_transform() so
184
+ it works for datums and stuff. Submitted by Steffen Macke.
185
+
186
+ 2006-09-04 Frank Warmerdam <warmerdam@pobox.com>
187
+
188
+ * shpeopen.c: (MLoskot) Added stronger test of Shapefile reading
189
+ failures, e.g. truncated files. The problem was discovered by Tim
190
+ Sutton and reported here:
191
+ https://svn.qgis.org/trac/ticket/200
192
+
193
+ 2006-06-17 Frank Warmerdam <warmerdam@pobox.com>
194
+
195
+ * dbfopen.c: use calloc() for DBFInfo in DBFCreate() to ensure
196
+ all fields initialized to zero if not otherwise mentioned.
197
+
198
+ * dbfopen.c: Don't allow creation of string fields with width larger
199
+ than 255 per http://bugzilla.maptools.org/show_bug.cgi?id=1434
200
+
201
+ 2006-06-16 Frank Warmerdam <warmerdam@pobox.com>
202
+
203
+ * dbfopen.c: Don't treat decimals value as high order field length
204
+ for strings, as it causes serious bugs in some cases such as
205
+ http://bugzilla.remotesensing.org/show_bug.cgi?id=1202
206
+
207
+ * dbfopen.c: Made static field buffer in DBFReadAttribute() into a
208
+ field in the DBFInfo structure to avoid multi-threading problems.
209
+
210
+ 2006-03-29 Frank Warmerdam <warmerdam@pobox.com>
211
+
212
+ * dbfopen.c: Fixed bug in DBFCloneEmpty() (treating pachFieldType as
213
+ an array of int).
214
+
215
+ 2006-02-08 Frank Warmerdam <warmerdam@pobox.com>
216
+
217
+ * dbfopen.c: Changed to put spaces into string fields that are NULL
218
+ as per http://bugzilla.maptools.org/show_bug.cgi?id=316.
219
+
220
+ 2006-01-26 Frank Warmerdam <warmerdam@pobox.com>
221
+
222
+ * shpopen.c, shapefil.h, shpdump.c: Added bMeasureIsUsed support as
223
+ per http://bugzilla.maptools.org/show_bug.cgi?id=1249
224
+
225
+ 2006-01-04 Frank Warmerdam <warmerdam@pobox.com>
226
+
227
+ * dbfopen.c/shapefil.h: Added functions to check if dbf record is
228
+ deleted, and to mark it as deleted.
229
+
230
+ 2005-02-11 Frank Warmerdam <warmerdam@pobox.com>
231
+
232
+ * shpopen.c: Check panPartStart[0] is 0 in SHPCreateObject().
233
+
234
+ * Fixed bug 305 in DBFCloneEmpty() - header length problem.
235
+
236
+ * Make the pszStringField buffer for DBFReadAttribute() static char
237
+ [256] as per bug 306.
238
+
239
+ 2004-09-15 Frank Warmerdam <warmerdam@pobox.com>
240
+
241
+ * dbfopen.c: treat all blanks as NULL in DBFIsAttributeNULL().
242
+
243
+ 2004-06-23 Frank Warmerdam <warmerdam@pobox.com>
244
+
245
+ * contrib/shpsort.c: added new contribute program from Eric Miller.
246
+
247
+ 2003-04-07 Frank Warmerdam <warmerdam@pobox.com>
248
+
249
+ * Issue 1.2.10 Release.
250
+
251
+ 2003-03-10 Frank Warmerdam <warmerdam@pobox.com>
252
+
253
+ * dbfopen.c: modified DBFWriteAttribute call so that it returns FALSE
254
+ if it has to truncate the input value.
255
+
256
+ 2003-01-28 Frank Warmerdam <warmerdam@pobox.com>
257
+
258
+ * shptree.c: avoid build warnings.
259
+
260
+ 2002-05-07 Frank Warmerdam <warmerdam@pobox.com>
261
+
262
+ * dbfopen.c: Added DBFWriteAttributeDirectly() from the AVCE00
263
+ distribution to simplify AVC integration in GDAL.
264
+
265
+ * shptree.c: added use of qsort() in place of bubble sort as
266
+ submitted by Bernhard Herzog.
267
+
268
+ 2002-04-10 Frank Warmerdam <warmerdam@pobox.com>
269
+
270
+ * shpopen.c: Added SHPRewindObject() to correct ring winding.
271
+
272
+ * shprewind.c: New utility program.
273
+
274
+ 2002-03-12 Frank Warmerdam <warmerdam@pobox.com>
275
+
276
+ * shapelib.def: added DBFWriteNULLAttribute.
277
+
278
+ 2002-01-17 Frank Warmerdam <warmerdam@pobox.com>
279
+
280
+ * contrib/ShapeFileII.pas: Contributed Delphi Pascal interface
281
+ to Shapelib.
282
+
283
+ 2002-01-15 Frank Warmerdam <warmerdam@pobox.com>
284
+
285
+ * shapelib.h: Added support for SHAPELIB_DLLEXPORT macro, and write
286
+ up material attempting to explain the use of SHPAPI_CALL macros.
287
+
288
+ * dbfopen.c: Compute nHeaderLength in DBFCloneEmpty() instead of
289
+ copying it from the source file so we don't have quirks when copying
290
+ from files with extra bytes of spacers in the header that don't
291
+ themselves get copied properly.
292
+
293
+ 2001-12-07 Frank Warmerdam <warmerdam@pobox.com>
294
+
295
+ * shpopen.c: Fix fclose() of SHX file if SHX file fails to open.
296
+ Should be closing SHP file. Reported by Ben Discoe.
297
+
298
+ 2001-11-28 Frank Warmerdam <warmerdam@pobox.com>
299
+
300
+ * dbfopen.c: two fixes for compiler warnings as suggested by
301
+ Richard Hash.
302
+
303
+ 2001-11-01 Frank Warmerdam <warmerdam@pobox.com>
304
+
305
+ * shpopen.c/shapefil.h: Move record buffer into SHPInfo so that
306
+ different threads can safely access separate files. Other threading
307
+ issues may remain.
308
+
309
+ 2001-08-28 Frank Warmerdam <warmerdam@pobox.com>
310
+
311
+ * Issue Shapelib 1.2.9
312
+
313
+ * shputils.c: DBFAddField() call should check for -1 return value
314
+ for failure.
315
+
316
+ 2001-07-03 Frank Warmerdam <warmerdam@pobox.com>
317
+
318
+ * shpopen.c: cleanup better if SHX missing, provided by
319
+ Riccardo Cohen.
320
+
321
+ 2001-06-21 Frank Warmerdam <warmerdam@pobox.com>
322
+
323
+ * dbfopen.c: Fixed NULL support with patches from Jim Matthews.
324
+
325
+ * shpopen.c: Be more careful of establishing initial file bounds in
326
+ face of possible NULL shapes.
327
+
328
+ 2001-06-01 Frank Warmerdam <warmerdam@pobox.com>
329
+
330
+ * dbfopen.c: ensure binary mode open.
331
+
332
+ 2001-05-31 Frank Warmerdam <warmerdam@pobox.com>
333
+
334
+ * shpopen.c: Add support for writing null shapes.
335
+
336
+ * dbfopen.c: added DBFGetFieldIndex(), contributed by Jim Matthews.
337
+
338
+ * dbfopen.c/shapefil.h/dbf_api.h: added support for NULL fields
339
+ in .dbf files.
340
+
341
+ 2001-05-28 Frank Warmerdam <warmerdam@pobox.com>
342
+
343
+ * shpopen.c: add some checking on the record count to ensure it
344
+ is reasonable.
345
+
346
+ 2001-05-23 Frank Warmerdam <warmerdam@pobox.com>
347
+
348
+ * shapefile.h, shpopen.c, dbfopen.c, shptree.c: added the SHPAPI_CALL
349
+ macro to allow compilation with _stdcall conventions.
350
+
351
+ 2001-02-06 Frank Warmerdam <warmerdam@pobox.com>
352
+
353
+ * Fixed a few memory leaks when SHPOpen() fails.
354
+
355
+ 2000-12-05 Frank Warmerdam <warmerdam@pobox.com>
356
+
357
+ * Fix from Craig Bruce (Cubewerx) for DBFReadAttribute() for
358
+ the white space trimming code to avoid reading outside allocated
359
+ memory.
360
+
361
+ 2000-11-02 Frank Warmerdam <warmerda@cs46980-c>
362
+
363
+ * Checked in upgraded shputils.c from Bill Miller.
364
+
365
+ 2000-10-05 Frank Warmerdam <warmerda@cs46980-c>
366
+
367
+ * Fixed DBFWriteAttribute() to ensure we can't overwrite the
368
+ end of the szSField buffer even if the width is set large.
369
+ Bug report by Kirk Benell <kirk@rsinc.com>.
370
+
371
+ 2000-09-25 Frank Warmerdam <warmerda@cs46980-c>
372
+
373
+ * Added DBFGetNativeFieldType() (contributed by Daniel) to dbfopen.c.
374
+
375
+ 2000-07-18 Frank Warmerdam <warmerda@cs46980-c>
376
+
377
+ * added better enforcement of -1 for append in SHPWriteObject().
378
+
379
+ 2000-07-07 Frank Warmerdam <warmerda@cs46980-c>
380
+
381
+ * Added stdlib.h and string.h where needed, and removed lots of
382
+ unused variables, mainly from example mainlines at the suggestion
383
+ of Bill Hughes.
384
+
385
+ 2000-05-24 Frank Warmerdam <warmerda@cs46980-c>
386
+
387
+ * Added logic to shpadd to grow vertex lists at the suggestion of
388
+ Santiago Nullo <sn@softhome.net>.
389
+
390
+ 2000-05-23 Frank Warmerdam <warmerda@cs46980-c>
391
+
392
+ * Added checks in dbfopen.c on return result of fseek() and fread().
393
+
394
+ * Avoid crashing in DBReadIntegerAttribute() or DBFReadDoubleAttribte()
395
+ if the field or record are out of range.
396
+
397
+ 2000-03-28 Frank Warmerdam <warmerda@cs46980-c>
398
+
399
+ * Release as 1.2.8.
400
+
401
+ * Incorporated a -version-info fix and added mkinstalldirs from Jan.
402
+
403
+ 2000-03-17 Frank Warmerdam <warmerda@cs46980-c>
404
+
405
+ * Added shared library hack to Makefile.
406
+
407
+ * Fixed up test scripts to look in ./ for executables.
408
+
409
+ Wed Feb 16 11:20:29 2000 Frank Warmerdam <warmerda@gdal.velocet.ca>
410
+
411
+ * Release 1.2.7.
412
+
413
+ * Modified SHPReadObject() so that will return NULL (type 0) shapes
414
+ in a sort of sensible way.
415
+
416
+ Wed Dec 15 08:49:53 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
417
+
418
+ * Fixed record size written at beginning of records in .shp
419
+ file. It was 4 bytes to long (thanks to Mikko Syrja of 3D-system Oy)
420
+
421
+ * Use atof() instead of sscanf() in dbfopen.c, and add stdlib.h.
422
+
423
+ Mon Dec 13 12:29:01 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
424
+
425
+ * Added support for uppercase .DBF extention c/o
426
+ Dennis Christopher <dennis@avenza.com>
427
+
428
+ Fri Nov 5 09:12:31 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
429
+
430
+ * Updated license headers to include the option of use of the code
431
+ under the LGPL.
432
+
433
+ 1999-09-15 <warmerda@CS46980-B>
434
+
435
+ * Added shapelib.dll target to makefile.vc.
436
+
437
+ Mon May 10 23:19:42 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
438
+
439
+ * Added candrsn's improvements to extension handling in dbfopen.c
440
+
441
+ * Added ``raw tuple'' api to dbfopen.c, still not in dbf_api.html.
442
+ From candrsn.
443
+
444
+
445
+ Tue May 4 11:04:31 1999 Frank Warmerdam <warmerda@gdal.velocet.ca>
446
+
447
+ * Prepare 1.2.5 release.
448
+
449
+ * Added support for 'F' fields.
450
+