<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Kriging with a NaN in ArcGIS GeoStatistical Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/kriging-with-a-nan/m-p/128697#M300</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to create some maps using Kriging with a Python script.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The original data contain some Nan that I previously flag with values -999. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to exclude these points from the estimation, do you have any suggestion on how to do that?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;A drastic way could be excluding these points in the "shapefile creation" step...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Apr 2014 13:33:32 GMT</pubDate>
    <dc:creator>MicheleLazzarini</dc:creator>
    <dc:date>2014-04-14T13:33:32Z</dc:date>
    <item>
      <title>Kriging with a NaN</title>
      <link>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/kriging-with-a-nan/m-p/128697#M300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to create some maps using Kriging with a Python script.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The original data contain some Nan that I previously flag with values -999. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to exclude these points from the estimation, do you have any suggestion on how to do that?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;A drastic way could be excluding these points in the "shapefile creation" step...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2014 13:33:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/kriging-with-a-nan/m-p/128697#M300</guid>
      <dc:creator>MicheleLazzarini</dc:creator>
      <dc:date>2014-04-14T13:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Kriging with a NaN</title>
      <link>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/kriging-with-a-nan/m-p/128698#M301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You must exclude the -999 values or your interpolation will be meaningless&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2014 13:55:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/kriging-with-a-nan/m-p/128698#M301</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2014-04-14T13:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: Kriging with a NaN</title>
      <link>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/kriging-with-a-nan/m-p/128699#M302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi Dan, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;yes excluding -999 is what I want to do. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is it possible to do it directly in the estimation?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;You must exclude the -999 values or your interpolation will be meaningless&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2014 13:58:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/kriging-with-a-nan/m-p/128699#M302</guid>
      <dc:creator>MicheleLazzarini</dc:creator>
      <dc:date>2014-04-14T13:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: Kriging with a NaN</title>
      <link>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/kriging-with-a-nan/m-p/128700#M303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;query the file for all values &amp;gt;0 then export to a new file, then proceed with the interpolation&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2014 14:02:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/kriging-with-a-nan/m-p/128700#M303</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2014-04-14T14:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Kriging with a NaN</title>
      <link>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/kriging-with-a-nan/m-p/128701#M304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok Dan thanks, I will do it in this way!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;query the file for all values &amp;gt;0 then export to a new file, then proceed with the interpolation&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2014 14:07:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/kriging-with-a-nan/m-p/128701#M304</guid>
      <dc:creator>MicheleLazzarini</dc:creator>
      <dc:date>2014-04-14T14:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Kriging with a NaN</title>
      <link>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/kriging-with-a-nan/m-p/128702#M305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;There are a number of ways to exclude data from the analysis. Here are some;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) from the Geostats help. "For data formats that support Null values, such as file and personal geodatabase feature classes, a Null value will be used to indicate that a prediction could not be made for that location or that the value showed be ignored when used as input. For data formats that do not support Null values, such as shapefiles, the value of -1.7976931348623158e+308 is used (this is the negative of the C++ defined constant DBL_MAX) to indicate that a prediction could not be made for that location."&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) or use the Make Feature Layer geoprocessing tool&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3) or use the Select Layer By Attribute geoprocessing tool&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Steve&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2014 14:20:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/kriging-with-a-nan/m-p/128702#M305</guid>
      <dc:creator>SteveLynch</dc:creator>
      <dc:date>2014-04-14T14:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: Kriging with a NaN</title>
      <link>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/kriging-with-a-nan/m-p/128703#M306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Steve for the detailed explanation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;At the end, I just put a line of code before the Kriging to create a temporary shapefile from the Select By Attribute, in order to interpolate only the real values.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;All the batch processing of Kriging with the cross-correlation works perfectly now.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;There are a number of ways to exclude data from the analysis. Here are some;&lt;BR /&gt;&lt;BR /&gt;1) from the Geostats help. "For data formats that support Null values, such as file and personal geodatabase feature classes, a Null value will be used to indicate that a prediction could not be made for that location or that the value showed be ignored when used as input. For data formats that do not support Null values, such as shapefiles, the value of -1.7976931348623158e+308 is used (this is the negative of the C++ defined constant DBL_MAX) to indicate that a prediction could not be made for that location."&lt;BR /&gt;2) or use the Make Feature Layer geoprocessing tool&lt;BR /&gt;3) or use the Select Layer By Attribute geoprocessing tool&lt;BR /&gt;&lt;BR /&gt;-Steve&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 05:47:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geostatistical-analyst-questions/kriging-with-a-nan/m-p/128703#M306</guid>
      <dc:creator>MicheleLazzarini</dc:creator>
      <dc:date>2014-04-16T05:47:44Z</dc:date>
    </item>
  </channel>
</rss>

