Definition at line 99 of file rt_raster.c.
99 {
100 int numband = 0;
101 int i = 0;
103
104 if (raster == NULL)
105 return;
106
108 if (numband < 1)
109 return;
110
111 for (i = 0; i < numband; i++) {
113 if (NULL == band)
114 continue;
115
117 continue;
118
119 rtwarn(
"Changes made to raster geotransform matrix may affect out-db band data. Returned band data may be incorrect");
120 break;
121 }
122}
void void void rtwarn(const char *fmt,...) __attribute__((format(printf
int rt_band_is_offline(rt_band band)
Return non-zero if the given band data is on the filesystem.
uint16_t rt_raster_get_num_bands(rt_raster raster)
rt_band rt_raster_get_band(rt_raster raster, int n)
Return Nth band, or NULL if unavailable.
References rt_band_is_offline(), rt_raster_get_band(), rt_raster_get_num_bands(), and rtwarn().
Referenced by rt_raster_set_geotransform_matrix(), rt_raster_set_offsets(), rt_raster_set_scale(), rt_raster_set_skews(), and rt_raster_set_srid().