Home
last modified time | relevance | path

Searched refs:G_hole (Results 1 – 1 of 1) sorted by relevance

/dports/graphics/gmt/gmt-6.3.0/src/
H A Dgrdfill.c233 struct GMT_GRID *G_hole = NULL; in grdfill_do_splinefill() local
293 if ((G_hole = GMT_Read_VirtualFile (API, output)) == NULL) { /* Load in the resampled grid */ in grdfill_do_splinefill()
297 for (row_hole = 0, row = d_limit[YLO]; row_hole < G_hole->header->n_rows; row_hole++, row++) { in grdfill_do_splinefill()
298 for (col_hole = 0, col = d_limit[XLO]; col_hole < G_hole->header->n_columns; col_hole++, col++) { in grdfill_do_splinefill()
301 node_hole = gmt_M_ijp (G_hole->header, row_hole, col_hole); in grdfill_do_splinefill()
302 G->data[node] = G_hole->data[node_hole]; /* Replace the NaN with splined value */ in grdfill_do_splinefill()
318 if (GMT_Destroy_Data (API, &G_hole) != GMT_NOERROR) { in grdfill_do_splinefill()