PostGIS
3.7.0dev-r@@SVN_REVISION@@
◆
fetch_band_nodata()
def raster2pgsql.fetch_band_nodata
(
band
,
default
=
0
)
Definition at line
643
of file
raster2pgsql.py
.
643
def
fetch_band_nodata
(band, default = 0):
644
assert
band
is
not
None
645
646
nodata = default
647
if
band.GetNoDataValue()
is
not
None
:
648
nodata = band.GetNoDataValue()
649
else
:
650
logit
(
"WARNING: No nodata flagged in raster_columns metadata. "
651
"In serialized raster, nodata bytes will have value of 0.\n"
)
652
return
nodata
653
raster2pgsql.logit
def logit(msg)
Definition:
raster2pgsql.py:207
raster2pgsql.fetch_band_nodata
def fetch_band_nodata(band, default=0)
Definition:
raster2pgsql.py:643
References
logit()
.
Referenced by
wkblify_band()
.
Here is the call graph for this function:
Here is the caller graph for this function:
raster2pgsql
Generated by
1.9.1