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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
|
/*-
* s.sample - GRASS program to sample a raster file at site locations.
* Copyright (C) 1994. James Darrell McCauley.
*
* Author: James Darrell McCauley darrell@mccauley-usa.com
* http://mccauley-usa.com/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* Modification History:
* <04 Jan 1994> - began coding (jdm)
* <06 Jan 1994> - announced version 0.1B on pasture.ecn.purdue.edu (jdm)
* <21 Jan 1994> - changed wording on help screen. Revised to 0.2B (jdm)
* <24 Jan 1994> - got rid of diagnostic messages. Revised to 0.3B (jdm)
* ?? Revised to 0.4B (jdm)
* <19 Dec 1994> - fixed bug in readsites, added html. Revised to 0.5B (jdm)
* <02 Jan 1995> - cleaned Gmakefile, man page, html.
* fixed memory error in bilinear and cubic 0.6B (jdm)
* <25 Feb 1995> - cleaned 'gcc -Wall' warnings 0.7B (jdm)
* <15 Jun 1995> - fixed pointer error for G_{col,row}_to_{easting,northing}.
* 0.8B (jdm)
* <13 Sep 2000> - released under GPL
*
*/
#pragma ident "s.sample v 0.8B <15 Jun 1995>; Copyright (c) 1994-1995. James Darrell McCauley"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include "gis.h"
#include "dbmi.h"
#include "Vect.h"
#include "methods.h"
int main (argc, argv)
char **argv;
int argc;
{
int b, c;
char *mapset;
double scale, predicted, actual;
int verbose;
int method = 0; /* one of NEAREST, BILINEAR, or CUBIC */
int fdrast; /* file descriptor for raster file is int */
struct Cell_head window;
struct GModule *module;
struct Map_info In, Out;
struct
{
struct Option *input, *output, *rast, *z, *column;
} parm;
struct
{
struct Flag *B, *C, *q;
} flag;
int line, nlines;
struct line_pnts *Points;
struct line_cats *Cats;
/* Attributes */
int nrecords;
int ctype;
struct field_info *Fi;
dbDriver *Driver;
dbCatValArray cvarr;
char buf[2000];
dbString sql;
G_gisinit (argv[0]);
module = G_define_module();
module->description = "Sample a raster file at site locations.";
parm.input = G_define_option ();
parm.input->key = "input";
parm.input->type = TYPE_STRING;
parm.input->required = YES;
parm.input->description = "vector defining sample points";
parm.input->gisprompt = "old,vector,vector";
parm.column = G_define_option();
parm.column->key = "column";
parm.column->type = TYPE_STRING;
parm.column->required = YES;
parm.column->description = "Attribute column";
parm.output = G_define_option ();
parm.output->key = "output";
parm.output->type = TYPE_STRING;
parm.output->required = YES;
parm.output->description = "vector to store differences";
parm.output->gisprompt = "new,vector,vector";
parm.rast = G_define_option ();
parm.rast->key = "rast";
parm.rast->type = TYPE_STRING;
parm.rast->required = YES;
parm.rast->description = "raster file to be sampled";
parm.rast->gisprompt = "old,cell,raster";
parm.z = G_define_option ();
parm.z->key = "z";
parm.z->type = TYPE_DOUBLE;
parm.z->required = NO;
parm.z->answer = "1.0";
parm.z->description = "Option scaling factor for values read from raster map. "
"Sampled values will be multiplied by this factor.";
flag.B = G_define_flag ();
flag.B->key = 'B';
flag.B->description = "Bilinear interpolation [default is nearest neighbor]";
flag.C = G_define_flag ();
flag.C->key = 'C';
flag.C->description = "Cubic convolution interpolation [default is nearest neighbor]";
flag.q = G_define_flag ();
flag.q->key = 'q';
flag.q->description = "Quiet";
if (G_parser (argc, argv))
exit (1);
sscanf (parm.z->answer, "%lf", &scale);
b = (flag.B->answer == (char)NULL) ? 0 : 1;
c = (flag.C->answer == (char)NULL) ? 0 : 1;
if (b || c)
{
if (c)
method = CUBIC;
if (b)
method = BILINEAR;
if (b && c)
G_warning ("Flags -B & -C mutually exclusive. Bilinear method used.");
}
else
method = NEAREST;
verbose = (flag.q->answer == (char)NULL) ? 1 : 0;
G_get_window (&window);
/* Open input */
if ((mapset = G_find_vector2 (parm.input->answer, "")) == NULL) {
G_fatal_error ( "Could not find input map <%s>\n", parm.input->answer);
}
Vect_set_open_level (2);
Vect_open_old (&In, parm.input->answer, mapset);
if ((mapset = G_find_cell2 (parm.rast->answer, "")) == NULL) {
G_fatal_error ( "cell file [%s] not found", parm.rast->answer);
}
if ((fdrast = G_open_cell_old (parm.rast->answer, mapset)) < 0) {
G_fatal_error ("can't open cell file [%s]", parm.rast->answer);
}
/* Read attributes */
Fi = Vect_get_field( &In, 1);
if ( Fi == NULL ) {
G_fatal_error ("Cannot get layer info for vector map");
}
Driver = db_start_driver_open_database ( Fi->driver, Fi->database );
if (Driver == NULL)
G_fatal_error("Cannot open database %s by driver %s", Fi->database, Fi->driver);
nrecords = db_select_CatValArray ( Driver, Fi->table, Fi->key, parm.column->answer, NULL, &cvarr );
G_debug (3, "nrecords = %d", nrecords );
ctype = cvarr.ctype;
if ( ctype != DB_C_TYPE_INT && ctype != DB_C_TYPE_DOUBLE )
G_fatal_error ( "Column type not supported" );
if ( nrecords < 0 ) G_fatal_error ("Cannot select data from table");
fprintf (stderr, "%d records selected from table\n", nrecords);
db_close_database_shutdown_driver(Driver);
/* Open output */
Vect_open_new (&Out, parm.output->answer, 0);
/* Create table */
db_init_string (&sql);
Fi = Vect_default_field_info ( &Out, 1, NULL, GV_1TABLE );
Vect_map_add_dblink ( &Out, Fi->number, Fi->name, Fi->table, Fi->key, Fi->database, Fi->driver);
Driver = db_start_driver_open_database ( Fi->driver, Vect_subst_var(Fi->database,&Out) );
if (Driver == NULL)
G_fatal_error("Cannot open database %s by driver %s", Fi->database, Fi->driver);
sprintf ( buf, "create table %s ( cat integer, pnt_val double precision, rast_val double precision, "
"diff double precision)", Fi->table );
db_set_string ( &sql, buf);
if (db_execute_immediate (Driver, &sql) != DB_OK ) {
G_fatal_error ( "Cannot create table: %s", db_get_string ( &sql ) );
}
if ( db_create_index2(Driver, Fi->table, Fi->key ) != DB_OK )
G_warning ( "Cannot create index" );
if (db_grant_on_table (Driver, Fi->table, DB_PRIV_SELECT, DB_GROUP|DB_PUBLIC ) != DB_OK )
G_fatal_error ( "Cannot grant privileges on table %s", Fi->table );
if (verbose)
fprintf (stderr, "Checking sites ... \n ");
Points = Vect_new_line_struct();
Cats = Vect_new_cats_struct();
nlines = Vect_get_num_lines ( &In );
for( line = 1; line <= nlines ; line++) {
int type, cat, ret, cval;
double dval;
G_debug ( 3, "line = %d", line );
type = Vect_read_line ( &In, Points, Cats, line );
if ( !(type & GV_POINT) ) continue;
Vect_cat_get ( Cats, 1, &cat );
G_debug ( 4, "cat = %d", cat );
/* find actual value */
if ( ctype == DB_C_TYPE_INT ) {
ret = db_CatValArray_get_value_int ( &cvarr, cat, &cval );
if ( ret != DB_OK ) {
G_warning ("No record for cat = %d", cat );
}
actual = cval;
} else if ( ctype == DB_C_TYPE_DOUBLE ) {
ret = db_CatValArray_get_value_double ( &cvarr, cat, &dval );
if ( ret != DB_OK ) {
G_warning ("No record for cat = %d", cat );
}
actual = dval;
} else {
G_fatal_error ("Column type not supported" );
}
G_debug ( 4, "actual = %e", actual );
/* find predicted value */
switch (method)
{
case BILINEAR:
predicted = scale * bilinear (fdrast, &window, NULL, Points->y[0], Points->x[0], 0);
break;
case CUBIC:
predicted = scale * cubic (fdrast, &window, NULL, Points->y[0], Points->x[0], 0);
break;
case NEAREST:
predicted = scale * nearest (fdrast, &window, NULL, Points->y[0], Points->x[0], 0);
break;
default:
G_fatal_error ("unknown method"); /* cannot happen */
break;
}
G_debug ( 4, "predicted = %e", predicted );
Vect_reset_cats ( Cats );
Vect_cat_set ( Cats, 1, cat );
sprintf ( buf, "insert into %s values ( %d, %e, %e, %e )", Fi->table, cat, actual, predicted,
predicted - actual );
db_set_string ( &sql, buf);
if (db_execute_immediate (Driver, &sql) != DB_OK ) {
G_fatal_error ( "Cannot insert row: %s", db_get_string ( &sql ) );
}
Vect_write_line ( &Out, GV_POINT, Points, Cats );
}
db_close_database_shutdown_driver(Driver);
G_close_cell (fdrast);
Vect_close ( &In );
Vect_build ( &Out, stderr );
Vect_close ( &Out );
exit (0);
}
|