/**************************************************************** * * MODULE: v.sample (based on s.sample) * * AUTHOR(S): James Darrell McCauley darrell@mccauley-usa.com * http://mccauley-usa.com/ * OGR support by Martin Landa * * PURPOSE: GRASS program to sample a raster map at site locations. * * 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 * * COPYRIGHT: (C) 2003-2009 by the GRASS Development Team * * This program is free software under the GNU General * Public License (>=v2). Read the file COPYING that * comes with GRASS for details. * **************************************************************/ #include #include #include #include #include #include #include #include #include int main(int argc, char **argv) { double scale, predicted, actual; INTERP_TYPE method = INTERP_UNKNOWN; int fdrast; /* file descriptor for raster map is int */ struct Cell_head window; struct GModule *module; struct Map_info In, Out; struct { struct Option *input, *output, *rast, *z, *column, *method, *field; } parm; int line, nlines; struct line_pnts *Points; struct line_cats *Cats; /* Attributes */ int field, nrecords; int ctype; struct field_info *Fi; dbDriver *Driver; dbCatValArray cvarr; char buf[2000]; dbString sql; G_gisinit(argv[0]); module = G_define_module(); G_add_keyword(_("vector")); G_add_keyword(_("sampling")); G_add_keyword(_("raster")); module->description = _("Samples a raster map at vector point locations."); parm.input = G_define_standard_option(G_OPT_V_INPUT); parm.input->label = _("Name of input vector point map"); parm.field = G_define_standard_option(G_OPT_V_FIELD); parm.column = G_define_standard_option(G_OPT_DB_COLUMN); parm.column->required = YES; parm.column->description = _("Name of attribute column to use for comparison"); parm.output = G_define_standard_option(G_OPT_V_OUTPUT); parm.output->description = _("Name for output vector map to store differences"); parm.rast = G_define_standard_option(G_OPT_R_INPUT); parm.rast->key = "raster"; parm.rast->description = _("Name of raster map to be sampled"); parm.method = G_define_standard_option(G_OPT_R_INTERP_TYPE); parm.method->answer = "nearest"; parm.z = G_define_option(); parm.z->key = "zscale"; parm.z->type = TYPE_DOUBLE; parm.z->required = NO; parm.z->answer = "1.0"; parm.z->label = _("Scaling factor for values read from raster map"); parm.z->description = _("Sampled values will be multiplied by this factor"); if (G_parser(argc, argv)) exit(EXIT_FAILURE); sscanf(parm.z->answer, "%lf", &scale); method = Rast_option_to_interp_type(parm.method); G_get_window(&window); /* Open input */ Vect_set_open_level(2); if (Vect_open_old2(&In, parm.input->answer, "", parm.field->answer) < 0) G_fatal_error(_("Unable to open vector map <%s>"), parm.input->answer); field = Vect_get_field_number(&In, parm.field->answer); fdrast = Rast_open_old(parm.rast->answer, ""); /* Read attributes */ Fi = Vect_get_field(&In, field); if (Fi == NULL) G_fatal_error(_("Database connection not defined for layer %s"), parm.field->answer); Driver = db_start_driver_open_database(Fi->driver, Fi->database); if (Driver == NULL) G_fatal_error("Unable to open database <%s> by driver <%s>", Fi->database, Fi->driver); db_set_error_handler_driver(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 <%s> not supported (must be integer or double precision)"), db_sqltype_name(ctype)); if (nrecords < 0) G_fatal_error(_("Unable to select data from table")); G_verbose_message(n_("%d record selected from table", "%d records selected from table", nrecords), nrecords); db_close_database_shutdown_driver(Driver); /* Open output */ if (Vect_open_new(&Out, parm.output->answer, 0) < 0) G_fatal_error(_("Unable to create vector map <%s>"), parm.output->answer); Vect_hist_copy(&In, &Out); Vect_hist_command(&Out); /* 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(_("Unable to open database <%s> by driver <%s>"), Fi->database, Fi->driver); db_set_error_handler_driver(Driver); db_begin_transaction(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(_("Unable to 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(_("Unable to grant privileges on table <%s>"), Fi->table); G_message(_("Reading points...")); 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); G_percent(line, nlines, 2); type = Vect_read_line(&In, Points, Cats, line); if (!(type & GV_POINT)) continue; if (field != -1 && !Vect_cat_get(Cats, field, &cat)) continue; 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 category %d in table <%s>"), cat, Fi->table); 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 category %d in table <%s>"), cat, Fi->table); actual = dval; } else { G_fatal_error(_("Column type not supported")); } G_debug(4, "actual = %e", actual); /* find predicted value */ predicted = Rast_get_sample(fdrast, &window, NULL, Points->y[0], Points->x[0], 0, method); if (Rast_is_d_null_value(&predicted)) continue; predicted *= scale; 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(_("Unable to insert row: %s"), db_get_string(&sql)); Vect_write_line(&Out, GV_POINT, Points, Cats); } db_commit_transaction(Driver); db_close_database_shutdown_driver(Driver); Rast_close(fdrast); Vect_close(&In); Vect_build(&Out); Vect_close(&Out); exit(EXIT_SUCCESS); }