<?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 Lightning Data Analysis in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/lightning-data-analysis/m-p/250294#M8570</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi I am new to model builder in GIS.&amp;nbsp; I have two shapefiles, one is a polygon shapefile of all lightning caused fire in Alaska sine 1939 (~1500 polygons) and the second is a point shapefile with all recorded lightning strike since 1986 in Alaska (~10000 points).&amp;nbsp; What I want to do is create a data/attribute table that outputs the following for varying time scale (1 day through 16 weeks):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1)If the fire had a lightning strike within it on the timescale specified and latitude/longitude of strike&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2)If not what is the nearest strike and its distance (point (lightning) to centroid (fire polygon)or point to nearest edge)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3)Polarity of strike&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4)Multiplicity of strike&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The attribute table I have for the lightning data has all strike lat/long, polarity, multiplicity.&amp;nbsp; This is a flow chart of the analysis I want to do:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;select lightning and fire that falls in specified time (I have dates of both strikes and fire) --&amp;gt;&amp;nbsp; determine if a strike was in the fire --&amp;gt; if yes then put the specified value from the lightning table into the new table along with fire ID --&amp;gt;&amp;nbsp; If no find the nearest strike to the fire and its distance to the fire --&amp;gt; add specified values for this strike to same table &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What would the basic outline for a model that performs this flow look like? Are there any alternate methods to achieve this with such a large data set? I know this is a lot but any help would be greatly appreciated.&amp;nbsp; Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Feb 2013 17:35:05 GMT</pubDate>
    <dc:creator>ZacharyOsterholz</dc:creator>
    <dc:date>2013-02-21T17:35:05Z</dc:date>
    <item>
      <title>Lightning Data Analysis</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/lightning-data-analysis/m-p/250294#M8570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi I am new to model builder in GIS.&amp;nbsp; I have two shapefiles, one is a polygon shapefile of all lightning caused fire in Alaska sine 1939 (~1500 polygons) and the second is a point shapefile with all recorded lightning strike since 1986 in Alaska (~10000 points).&amp;nbsp; What I want to do is create a data/attribute table that outputs the following for varying time scale (1 day through 16 weeks):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1)If the fire had a lightning strike within it on the timescale specified and latitude/longitude of strike&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2)If not what is the nearest strike and its distance (point (lightning) to centroid (fire polygon)or point to nearest edge)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3)Polarity of strike&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4)Multiplicity of strike&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The attribute table I have for the lightning data has all strike lat/long, polarity, multiplicity.&amp;nbsp; This is a flow chart of the analysis I want to do:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;select lightning and fire that falls in specified time (I have dates of both strikes and fire) --&amp;gt;&amp;nbsp; determine if a strike was in the fire --&amp;gt; if yes then put the specified value from the lightning table into the new table along with fire ID --&amp;gt;&amp;nbsp; If no find the nearest strike to the fire and its distance to the fire --&amp;gt; add specified values for this strike to same table &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What would the basic outline for a model that performs this flow look like? Are there any alternate methods to achieve this with such a large data set? I know this is a lot but any help would be greatly appreciated.&amp;nbsp; Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Feb 2013 17:35:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/lightning-data-analysis/m-p/250294#M8570</guid>
      <dc:creator>ZacharyOsterholz</dc:creator>
      <dc:date>2013-02-21T17:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Lightning Data Analysis</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/lightning-data-analysis/m-p/250295#M8571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Seems like you just need to run the &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#/Intersect/00080000000p000000/"&gt;Intersect &lt;/A&gt;&lt;SPAN&gt;tool (or &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#/Spatial_Join/00080000000q000000/"&gt;Spatial Join&lt;/A&gt;&lt;SPAN&gt;).&amp;nbsp; The output will be a point feature class with all the attributes of the lighting strikes and the attributes of the fire polygons they fall within.&amp;nbsp; You could then run attribute queries on this output.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If a fire polygon doesn't have a lighting strike within it, then the output feature class from Intersect won't contain any features that have that polygon's OBJECTID or attributes.&amp;nbsp; You could then select these "no strikes within" polygons and run &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#/Generate_Near_Table/00080000001n000000/"&gt;Generate Near Table&lt;/A&gt;&lt;SPAN&gt; to find the closest strike.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Feb 2013 23:44:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/lightning-data-analysis/m-p/250295#M8571</guid>
      <dc:creator>DaleHoneycutt</dc:creator>
      <dc:date>2013-02-21T23:44:16Z</dc:date>
    </item>
  </channel>
</rss>

