1
|
/**
|
2
|
* '$RCSfile$'
|
3
|
* Copyright: 2000 Regents of the University of California and the
|
4
|
* National Center for Ecological Analysis and Synthesis
|
5
|
* Authors: John Harris
|
6
|
* Release: @release@
|
7
|
*
|
8
|
* '$Author: perry $'
|
9
|
* '$Date: 2006-08-31 16:37:13 -0700 (Thu, 31 Aug 2006) $'
|
10
|
* '$Revision: 3034 $'
|
11
|
*
|
12
|
* This program is free software; you can redistribute it and/or modify
|
13
|
* it under the terms of the GNU General Public License as published by
|
14
|
* the Free Software Foundation; either version 2 of the License, or
|
15
|
* (at your option) any later version.
|
16
|
*
|
17
|
* This program is distributed in the hope that it will be useful,
|
18
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
19
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
20
|
* GNU General Public License for more details.
|
21
|
*
|
22
|
* You should have received a copy of the GNU General Public License
|
23
|
* along with this program; if not, write to the Free Software
|
24
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
25
|
*/
|
26
|
|
27
|
#include "shapefil.h"
|
28
|
#include <stdio.h>
|
29
|
#include <stdlib.h>
|
30
|
#include <string.h>
|
31
|
#include <math.h>
|
32
|
#include "iostream"
|
33
|
#include <fstream>
|
34
|
#include <string>
|
35
|
#include <vector>
|
36
|
|
37
|
using namespace std;
|
38
|
|
39
|
|
40
|
/************************************************************************
|
41
|
* Method to write the points array to the shape file and the associated
|
42
|
* dbf file using the shapelib-1.2.ave_x libraries
|
43
|
*
|
44
|
* @param nSHPType -- the type of shapefile (eg. poly vs point )
|
45
|
*
|
46
|
* @param pszFilename -- the name of the shape file, sans the extension
|
47
|
*
|
48
|
* @param min_pntx -- this is the float value of the min x-location
|
49
|
* @param max_pntx -- this is the float value of the max x-location
|
50
|
*
|
51
|
* @param min_pnty -- this is the float value of the min y-location
|
52
|
* @param max_pnty -- this is the float value of the max y-location
|
53
|
*
|
54
|
* @param pointz -- this is the float value of the optional p-value
|
55
|
* (assuming points)
|
56
|
*
|
57
|
* @param the number of lines in the coordinates arrays
|
58
|
************************************************************************/
|
59
|
//
|
60
|
// 2/19/06 R Reeves modified array declarations for WritePointsArray funciton.
|
61
|
//
|
62
|
const int number_data_lines = 100;
|
63
|
static void WritePointsArray ( int nSHPType,
|
64
|
const char * pszFilename,
|
65
|
float min_pntx[][100],
|
66
|
float max_pntx[][100],
|
67
|
float min_pnty[][100],
|
68
|
float max_pnty[][100],
|
69
|
float pointz[][100],
|
70
|
vector<string> urlvec,
|
71
|
vector<string> docidvec,
|
72
|
int number_data_lines_x
|
73
|
)
|
74
|
{
|
75
|
SHPHandle hSHPHandle;
|
76
|
SHPObject * psShape;
|
77
|
double x, y, z, m, j, dx[number_data_lines], dy[number_data_lines], dz[number_data_lines];
|
78
|
int ii, iRecord, i;
|
79
|
char buf[20];
|
80
|
char intString;
|
81
|
//for the dbf file
|
82
|
DBFHandle hDBF;
|
83
|
|
84
|
//create the dbf file
|
85
|
hDBF = DBFCreate( pszFilename );
|
86
|
if ( hDBF == NULL )
|
87
|
{
|
88
|
printf( "DBFCreate(%s) failed.\n" );
|
89
|
exit( 2 );
|
90
|
}
|
91
|
|
92
|
//add to the dbf file attributes for ID, pval(elevation), url
|
93
|
if ( DBFAddField( hDBF, "ID", FTInteger, 10, 0 ) == -1 )
|
94
|
{
|
95
|
printf( "DBFAddField(%s,FTInteger,%d,0) failed.\n" );
|
96
|
}
|
97
|
if ( DBFAddField( hDBF, "area_coef", FTDouble, 10, 4 ) == -1 )
|
98
|
{
|
99
|
printf( "DBFAddField(%s,FTDouble,%d,0) failed.\n" );
|
100
|
}
|
101
|
if ( DBFAddField( hDBF, "url", FTString, 220, 0 ) == -1 )
|
102
|
{
|
103
|
printf( "DBFAddField(%s,FTString,%d,0) failed.\n" );
|
104
|
}
|
105
|
if ( DBFAddField( hDBF, "docid", FTString, 220, 0 ) == -1 )
|
106
|
{
|
107
|
printf( "DBFAddField(%s,FTString,%d,0) failed.\n" );
|
108
|
}
|
109
|
|
110
|
|
111
|
//cout<<" DBF Record Count --> "<<iRecord<<endl;
|
112
|
int id_field = DBFGetFieldIndex( hDBF, "ID" );
|
113
|
int url_field = DBFGetFieldIndex( hDBF, "url" );
|
114
|
int docid_field = DBFGetFieldIndex( hDBF, "docid" );
|
115
|
int area_field = DBFGetFieldIndex( hDBF, "area_coef" );
|
116
|
|
117
|
hSHPHandle = SHPCreate( pszFilename, nSHPType );
|
118
|
|
119
|
ii = 0;
|
120
|
for ( ii = 0; ii < number_data_lines_x; ii++ )
|
121
|
{
|
122
|
double area_coef = sqrt( pow((max_pntx[2][ii]-min_pntx[2][ii]),2) + pow((max_pnty[2][ii]-min_pnty[2][ii]),2) );
|
123
|
double ave_x = ( (min_pntx[2][ii]+max_pntx[2][ii])/2 );
|
124
|
double ave_y = ( (min_pnty[2][ii]+max_pnty[2][ii])/2 );
|
125
|
double ave_z = ( pointz[2][ii] );
|
126
|
|
127
|
cout << "area coef: " << area_coef << endl;
|
128
|
|
129
|
if (ave_x < 180 && ave_x > -180 && ave_y < 90 && ave_y >-90 ) {
|
130
|
|
131
|
psShape = SHPCreateObject( SHPT_POINT, ii, 0, NULL, NULL, 1, &ave_x, &ave_y, &ave_z, NULL );
|
132
|
|
133
|
SHPWriteObject( hSHPHandle, -1, psShape );
|
134
|
SHPDestroyObject( psShape );
|
135
|
//do the update to the dbf file too
|
136
|
iRecord = DBFGetRecordCount( hDBF );
|
137
|
|
138
|
DBFWriteStringAttribute(hDBF, iRecord, url_field, urlvec[ii].c_str() );
|
139
|
DBFWriteStringAttribute(hDBF, iRecord, docid_field, docidvec[ii].c_str() );
|
140
|
DBFWriteIntegerAttribute(hDBF, iRecord, id_field, int(ii) );
|
141
|
DBFWriteDoubleAttribute(hDBF, iRecord, area_field, area_coef );
|
142
|
}
|
143
|
}
|
144
|
//recompute the extents
|
145
|
//SHPComputeExtents( psShape );
|
146
|
//cout << "xmin: " << psShape->dfXMin << " xmax: " << psShape->dfXMax << endl;
|
147
|
//cout << "ymin: " << psShape->dfYMin << " ymax: " << psShape->dfYMax << endl;
|
148
|
DBFClose( hDBF );
|
149
|
SHPClose( hSHPHandle );
|
150
|
}
|
151
|
|
152
|
|
153
|
/** getUsage -- function that prints to stdout the usage for this driver */
|
154
|
static void getUsage()
|
155
|
{
|
156
|
cout<<"usage: metacat2shape metacat_export.txt test.shp\n\n";
|
157
|
cout<<" where:\n\n";
|
158
|
cout<<" input -- is an input ASCII file, that contains the following cols:\n";
|
159
|
cout<<" -> docid -- the document id\n";
|
160
|
cout<<" -> x -- the xlocation\n";
|
161
|
cout<<" -> y -- the y location\n";
|
162
|
cout<<" -> url -- the url to the document\n";
|
163
|
|
164
|
cout<<" shapefile -- {output} is a ESRI shapefile\n\n";
|
165
|
|
166
|
cout<<" see:\n";
|
167
|
cout<<" example: metacat2shape metacat_export.txt test.shp\n\n";
|
168
|
|
169
|
cout<<" ##><><><><><><><><><><><><><><><><><><><><><><><><>##\n";
|
170
|
cout<<" ## John Harris ##\n";
|
171
|
cout<<" ## harris@nceas.ucsb.edu ##\n";
|
172
|
cout<<" ## Copyright 1999-2003 ##\n";
|
173
|
cout<<" ##><><><><><><><><><><><><><><><><><><><><><><><><>##\n";
|
174
|
|
175
|
cout << endl;
|
176
|
|
177
|
}
|
178
|
|
179
|
|
180
|
|
181
|
int main( int argc, char * * argv )
|
182
|
{
|
183
|
//get the usage info if the inputs are not right
|
184
|
if ( argc != 3 )
|
185
|
{
|
186
|
getUsage();
|
187
|
exit( 1 );
|
188
|
}
|
189
|
|
190
|
//these arrays are for the input x, y, z data
|
191
|
float min_pntx[1000] [100];
|
192
|
float min_pnty[1000] [100];
|
193
|
float max_pntx[1000] [100];
|
194
|
float max_pnty[1000] [100];
|
195
|
|
196
|
float pointz[1000] [100];
|
197
|
vector<string> docidvec;
|
198
|
vector<string> urlvec;
|
199
|
|
200
|
FILE * infile;
|
201
|
char oneline[200];
|
202
|
char * value;
|
203
|
|
204
|
int cnt = 0;
|
205
|
int number_lines = 0;
|
206
|
char buf_docid[100];
|
207
|
char buf_xmin[100];
|
208
|
char buf_xmax[100];
|
209
|
char buf_ymin[100];
|
210
|
char buf_ymax[100];
|
211
|
char buf_url[100];
|
212
|
|
213
|
SHPHandle hSHP;
|
214
|
int nShapeType, nEntities, i, iPart;
|
215
|
const char * pszPlus;
|
216
|
|
217
|
//test the reading of the file
|
218
|
if ( ( infile = fopen( argv[1], "r" ) ) == ( FILE * ) NULL )
|
219
|
{
|
220
|
fprintf( stderr, "Can't read the file: %s.\n", argv[1] );
|
221
|
exit( 2 );
|
222
|
}
|
223
|
|
224
|
/* read the data into an array -- first the grid nodes
|
225
|
*
|
226
|
* the data should have the following columns (from left to right)
|
227
|
*
|
228
|
* nrs.239.1
|
229
|
* -121.558333333333
|
230
|
* -121.558333333333
|
231
|
* 36.2083333333333
|
232
|
* 36.2083333333333
|
233
|
* http://metacat.nceas.ucsb.edu/knb/servlet/metacat?action=read&docid=nrs.239.1&qformat=knb
|
234
|
*/
|
235
|
infile = fopen( argv[1], "r" );
|
236
|
char const * out_shape = argv[2];
|
237
|
while ( fgets( oneline, 199, infile ) ) {
|
238
|
sscanf( oneline, "%s %s %s %s %s %s %s", buf_docid, buf_xmin, buf_xmax, buf_ymin, buf_ymax, buf_url);
|
239
|
|
240
|
/**** cout<<" docid -> " << bufa
|
241
|
<<"\n cnt -> " << cnt
|
242
|
<<"\n x -> " << buf
|
243
|
<<"\n y -> " << buf1
|
244
|
<<"\n p -> " << buf2
|
245
|
<<endl; *******/
|
246
|
|
247
|
min_pntx[2] [cnt] = atof(buf_xmin);
|
248
|
max_pntx[2] [cnt] = atof(buf_xmax);
|
249
|
min_pnty[2] [cnt] = atof(buf_ymin);
|
250
|
max_pnty[2] [cnt] = atof(buf_ymax);
|
251
|
|
252
|
urlvec.push_back(buf_url);
|
253
|
docidvec.push_back(buf_docid);
|
254
|
|
255
|
cnt++;
|
256
|
number_lines = cnt;
|
257
|
}
|
258
|
fclose( infile );
|
259
|
|
260
|
cout<<"creating a new shape file, with "<< number_lines <<" records "<<endl;
|
261
|
WritePointsArray( SHPT_POINT,
|
262
|
out_shape,
|
263
|
min_pntx,
|
264
|
max_pntx,
|
265
|
min_pnty,
|
266
|
max_pnty,
|
267
|
pointz,
|
268
|
urlvec,
|
269
|
docidvec,
|
270
|
number_lines );
|
271
|
|
272
|
#ifdef USE_DBMALLOC
|
273
|
malloc_dump( 2 );
|
274
|
#endif
|
275
|
exit( 0 );
|
276
|
}
|