PostGIS
2.4.9dev-r@@SVN_REVISION@@
◆
is_nan()
def raster2pgsql.is_nan
(
x
)
Definition at line
72
of file
raster2pgsql.py
.
Referenced by
collect_nodata_values()
.
72
def
is_nan
(x):
73
if
sys.hexversion < 0x02060000:
74
return
str(float(x)).lower() ==
'nan'
75
else
:
76
return
math.isnan(x)
77
raster2pgsql.is_nan
def is_nan(x)
Definition:
raster2pgsql.py:72
Here is the caller graph for this function:
raster2pgsql
Generated by
1.8.13