Select to view content in your preferred language

Strange no data values -3,4028234663

3055
6
12-17-2015 06:29 AM
GIS_Administratorat_RWE
Occasional Contributor

Hi,

when interpolating points to raster using arcpy I get strange values (-3,4028234663) for no data pixels. If I interpolate the same points with same method in Desktop I get NoData values. How could I get rid of these strange values and just have the "no data"? Any ideas?

Thanks a lot

Felix

0 Kudos
6 Replies
DanPatterson_Retired
MVP Emeritus

Your code would be useful and what environments you set within your code to control the results

0 Kudos
GIS_Administratorat_RWE
Occasional Contributor

Hi Dan,

I use the following lines to compile the interpolate from point features I have created from txt using

     ...

     arcpy.ASCII3DToFeatureClass_3d(inTXT, inFormat, outFC, outType, zFactor, CS, inputRes, fileSuffix, decSep)

     arcpy.AddZInformation_3d(outFC, "Z", "NO_FILTER") ==> outFC is the point FC

     arcpy.env.mask=outFC
     arcpy.env.nodata="NONE"

     # --- Interpolate surface
     outSurfaceTile = OUTRASTERWSP + str("/SPLINE_") + fClass + ".tif"
     outSurface = arcpy.sa.NaturalNeighbor(outFC,"Z",inputRes)
     outSurface.save(outSurfaceTile)

     arcpy.CalculateStatistics_management(outSurfaceTile)
     arcpy.BuildPyramids_management(outSurfaceTile) ==> this output shows the strange no data values
     outHS = OUTRASTERWSP + "/HS_" + fClass + ".tif"
     outHillshade=arcpy.sa.Hillshade(outSurface,135,45,"NO_SHADOWS")
     outHillshade.save(outHS) ==> this output shows nodata as no data values
     arcpy.BuildPyramids_management(outHS)

The strange thing is, that the only the result of the interpolation shows the strange values and the hillshade compile from that shows the normal "nodata" as no data values..

Thanks

Felix

0 Kudos
DanPatterson_Retired
MVP Emeritus

perhaps it is the explicit setting of arcpy.env.nodata NoData (Environment setting)—Help | ArcGIS for Desktop since it doesn't seem to affect final results and things are as they should be when done through arcmap, I would see what removing or changing the settings on this has

0 Kudos
GIS_Administratorat_RWE
Occasional Contributor

Hi Dan,

I have started without this env. setting - doesn't work as well..

Cheers

Felix

0 Kudos
DanPatterson_Retired
MVP Emeritus

before after you deleted pyramids and statistics? once they are created, they should be removed before trying something else

0 Kudos
curtvprice
MVP Esteemed Contributor

I would try saving to Esri grid format instead of .tif first.