Newer
Older
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
<html>
<head>
<title>Shapefile C Library V1.2</title>
<link href="maptools.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Shapelib Manifest</h1>
<ul>
<li> <b>web/index.html</b>: This file - general documentation on the
Shapefile C Library.<p>
<li> <b><a href="shp_api.html">web/shp_api.html</a></b>: Documentation
for the API for accessing the .shp/.shx files. <p>
<li> <b><a href="dbf_api.html">web/dbf_api.html</a></b>: Documentation
for the API for accessing the .dbf attribute files. <p>
<li> <b>shpopen.c</b>: C code for access to .shp/.shx vertex files.<p>
<li> <b>dbfopen.c</b>: C code for access to .dbf attribute file.<p>
<li> <b>shapefil.h</b>: Include file defining all the services of dbfopen.c
and shpopen.c.<p>
<li> <b>contrib/</b>: A directory of "in progress" contributed programs
from Carl Anderson.<p>
<li> <b>dbfcreate.c</b>: Simple example program for creating a new .dbf file.
<p>
<li> <b>dbfadd.c</b>:
Simple example program for adding a record to a .dbf file.<p>
<li> <b>dbfdump.c</b>: Simple example program for displaying the contents of
a .dbf file.<p>
<li> <b>shpcreate.c</b>: Simple example program for creating a new .shp and
.shx file.<p>
<li> <b>shpadd.c</b>: Simple example program for adding a shape to an existing
shape file.<p>
<li> <b>shpdump.c</b>: Simple program for dumping all the vertices in a
shapefile with an indicating of the parts.<p>
<li> <b>shputils.c</b>: Complex contributed program capable of clipping and
appending
shapefiles as well as a few other things. Type shputils
after building to get a full usage message.<p>
<li> <b>Makefile</b>: A simple makefile to compile the library and example
programs.<p>
<li> <b>makeshape.sh</b>: A simple script for running some of the example
programs.<p>
<li> <b>shptest.c</b>: A simple test harnass to generate each of the supported
types of shapefiles. <p>
<li> <b>shptree.c</b>: Implements a simple quadtree algorithm for fast
spatial searches of shapefiles.<p>
<li> <b>shptreedump.c</b>: A simple mainly showing information on quad
trees build using the quad tree api.<p>
<li> <b>stream1.sh</b> - A test script, which should produce stream1.out.
Note this will only work if you have the example data downloaded.<p>
<li> <b>stream1.out</b>: Expected output of stream1.sh test script.<p>
<li> <b>stream2.sh</b>: A test script, which should produce stream2.out.<p>
<li> <b>stream2.out</b>: Expected output of stream2.sh test script.<p>
<li> <b>pyshapelib-0.1</b>: Prototype contributed Python bindings.<p>
</ul>
</body>
</html>