PostGIS
3.4.0dev-r@@SVN_REVISION@@
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
c
d
f
g
i
l
m
p
q
w
Variables
a
b
c
d
f
g
h
i
l
n
o
p
r
s
t
u
v
x
y
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
Properties
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
g
h
i
l
m
n
o
p
r
s
t
v
w
y
Typedefs
_
b
c
d
e
f
g
h
i
l
m
n
p
r
s
t
u
y
Enumerations
Enumerator
a
c
d
e
f
g
i
j
l
m
p
r
s
t
u
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Examples
►
PostGIS
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Macros
Pages
◆
fetch_band_nodata()
def raster2pgsql.fetch_band_nodata
(
band
,
default
=
0
)
Definition at line
642
of file
raster2pgsql.py
.
642
def
fetch_band_nodata
(band, default = 0):
643
assert
band
is
not
None
644
645
nodata = default
646
if
band.GetNoDataValue()
is
not
None
:
647
nodata = band.GetNoDataValue()
648
else
:
649
logit
(
"WARNING: No nodata flagged in raster_columns metadata. "
650
"In serialized raster, nodata bytes will have value of 0.\n"
)
651
return
nodata
652
raster2pgsql.logit
def logit(msg)
Definition:
raster2pgsql.py:207
raster2pgsql.fetch_band_nodata
def fetch_band_nodata(band, default=0)
Definition:
raster2pgsql.py:642
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