PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ is_nan()

def raster2pgsql.is_nan (   x)

Definition at line 72 of file raster2pgsql.py.

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 
def is_nan(x)
Definition: raster2pgsql.py:72

Referenced by collect_nodata_values().

Here is the caller graph for this function: