<?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 Re: How to create one raster from many polygons of species distribution?? in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489114#M27790</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I agree with Sol on working in a file geodatabase.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Your working enviroment will become more stable and you will be able to save the summary there as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Greets Paul&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Feb 2014 04:52:52 GMT</pubDate>
    <dc:creator>PaulBeurskens</dc:creator>
    <dc:date>2014-02-05T04:52:52Z</dc:date>
    <item>
      <title>How to create one raster from many polygons of species distribution??</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489109#M27785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a shapefile with the distribution of many species in polygons. I need to create a raster that shows me the number of species &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;per cell. How should I do?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Feb 2014 17:09:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489109#M27785</guid>
      <dc:creator>ThiagoModesto</dc:creator>
      <dc:date>2014-02-03T17:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to create one raster from many polygons of species distribution??</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489110#M27786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What does your shapefile look like?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Are ther several different shapefiles?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Or are there multiple features on top of each other?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Or is there a remark in the attribute table you can use to get the count.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you have a value in a field jou could use polygon to raster (&lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//001200000030000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//001200000030000000&lt;/A&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But a bit more info is needed to give a good answer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Greets Paul&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Feb 2014 17:52:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489110#M27786</guid>
      <dc:creator>PaulBeurskens</dc:creator>
      <dc:date>2014-02-03T17:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to create one raster from many polygons of species distribution??</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489111#M27787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello thiago021,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You'll need to do this in two steps.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Prepare an attribute you want in raster form. I think you want total number of species. In other words a count of non-zero fields for a specific polygon.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;First open the shapefile's attribute table and create a new field (make sure its a number type like ShortInteger). Then right click on that new field and click &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Field Calculator&lt;/SPAN&gt;&lt;SPAN&gt;. Enter in a formula to calculate number of species. I would use something like this (using &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Python&lt;/SPAN&gt;&lt;SPAN&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Pre-Logic Script Code: (make sure &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Show Codeblock&lt;/SPAN&gt;&lt;SPAN&gt; is checked)&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
def getSpeciesCount(speciesFields):
&amp;nbsp;&amp;nbsp;&amp;nbsp; speciesCount=0
&amp;nbsp;&amp;nbsp;&amp;nbsp; for speciesField in speciesFields:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if str(speciesField)!="0": #should handel sting and interger inputs
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; speciesCount+=1
&amp;nbsp;&amp;nbsp;&amp;nbsp; return speciesCount
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;numSpecies=&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
getSpeciesCount([!Frogs!, !Goats!, !Deer!])
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Convert to raster using the &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001200000030000000" rel="nofollow noopener noreferrer" target="_blank"&gt;Polygon to Raster&lt;/A&gt;&lt;SPAN&gt; tool, set the field value to the attribute created above.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know if you get it working. Good luck!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 21:31:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489111#M27787</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2021-12-11T21:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to create one raster from many polygons of species distribution??</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489112#M27788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Have you tried the feature to Raster tool? In ArcToolbox -&amp;gt; Conversion Tools: &lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00120000002v000000" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//00120000002v000000&lt;/A&gt; (assuming you are using ArcGIS version 10.1)&lt;BR /&gt;&lt;BR /&gt;To better assist you and general curiosity: What do you intend to use the raster for? Comparison with another raster? Analysis?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#/Polygon_to_Raster/001200000030000000/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#/Polygon_to_Raster/001200000030000000/&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;What does your shapefile look like?&lt;BR /&gt;Are ther several different shapefiles?&lt;BR /&gt;Or are there multiple features on top of each other?&lt;BR /&gt;Or is there a remark in the attribute table you can use to get the count.&lt;BR /&gt;&lt;BR /&gt;If you have a value in a field jou could use polygon to raster (&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//001200000030000000" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//001200000030000000&lt;/A&gt;).&lt;BR /&gt;&lt;BR /&gt;But a bit more info is needed to give a good answer.&lt;BR /&gt;&lt;BR /&gt;Greets Paul&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a file with multiple overlapping polygons in one shapefile. Each polygon represents the distribution of a species. In total there are over 150 species. When I create the raster file the result brings no information on the number of overlapping polygons. I need this information to know how many species there are per cell and how the species are distributed in a particular location for use in statistical analyzes of conservation. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I&amp;nbsp; have tried the Polygon to Raster, but it did not work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hello thiago021,&lt;BR /&gt;&lt;BR /&gt;You'll need to do this in two steps.&lt;BR /&gt;1) Prepare an attribute you want in raster form. I think you want total number of species. In other words a count of non-zero fields for a specific polygon.&lt;BR /&gt;First open the shapefile's attribute table and create a new field (make sure its a number type like ShortInteger). Then right click on that new field and click &lt;SPAN style="font-style:italic;"&gt;Field Calculator&lt;/SPAN&gt;. Enter in a formula to calculate number of species. I would use something like this (using &lt;SPAN style="font-style:italic;"&gt;Python&lt;/SPAN&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;Pre-Logic Script Code: (make sure &lt;SPAN style="font-style:italic;"&gt;Show Codeblock&lt;/SPAN&gt; is checked)&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
def getSpeciesCount(speciesFields):
&amp;nbsp;&amp;nbsp;&amp;nbsp; speciesCount=0
&amp;nbsp;&amp;nbsp;&amp;nbsp; for speciesField in speciesFields:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if str(speciesField)!="0": #should handel sting and interger inputs
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; speciesCount+=1
&amp;nbsp;&amp;nbsp;&amp;nbsp; return speciesCount
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;numSpecies=&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
getSpeciesCount([!Frogs!, !Goats!, !Deer!])
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;2) Convert to raster using the &lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001200000030000000" rel="nofollow noopener noreferrer" target="_blank"&gt;Polygon to Raster&lt;/A&gt; tool, set the field value to the attribute created above.&lt;BR /&gt;&lt;BR /&gt;Let me know if you get it working. Good luck!&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I also tried your suggestion, but it did not work because it created a field with all values "1" and then a raster with all cells values 1. If I can turn each polygon (each species) in a raster where the species were "1" and the remaining "0", I think I could solve, but I do not know how to do this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 21:31:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489112#M27788</guid>
      <dc:creator>ThiagoModesto</dc:creator>
      <dc:date>2021-12-11T21:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to create one raster from many polygons of species distribution??</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489113#M27789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The reason it didn't work was becouse of the multipleoverlapping polygons.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have tried to solve it using some data I have made myself that simulates your situation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What is critical is that a species does not have overlapping polygons.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If it does you should first dissolve (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000005n000000" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000005n000000&lt;/A&gt;&lt;SPAN&gt;)&amp;nbsp; your layer on the species so you have one (or more but without overlapping) polygon(s), make shure not to create multiparts.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;First you preform a union (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00080000000s000000" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//00080000000s000000&lt;/A&gt;&lt;SPAN&gt;) on your shape (it is allowed to do so on one shapefile), this will make small pieces of overlapping data clipping the data on each other.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then you need to add three columns to the attribute table of the union shapefile:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-&amp;nbsp; X&amp;nbsp; "double"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-&amp;nbsp; Y "double&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-&amp;nbsp; compare "text" (minimum of 50 characters)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In &lt;/SPAN&gt;&lt;STRONG&gt;X&lt;/STRONG&gt;&lt;SPAN&gt; you calculate the x coördinate of the polygon using the calculate geomitry function in the attribute table (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/main/10.1/index.html#//005s00000027000000" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//005s00000027000000&lt;/A&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In &lt;/SPAN&gt;&lt;STRONG&gt;Y&lt;/STRONG&gt;&lt;SPAN&gt; you calculate the y coördinate in the same way.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In &lt;/SPAN&gt;&lt;STRONG&gt;compare&lt;/STRONG&gt;&lt;SPAN&gt; you make a combination of the &lt;/SPAN&gt;&lt;STRONG&gt;X&lt;/STRONG&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;STRONG&gt;Y&lt;/STRONG&gt;&lt;SPAN&gt; fields to get the combination of the two, becouse of the overlapping parts the union makes you need tis so you have a unique code for that specific location. All the overlapping parts are identical so the centrers are identical.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You can paste this in your field calculator: &lt;X&gt;&amp;amp;"_"&amp;amp;&lt;Y&gt; &lt;/Y&gt;&lt;/X&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(so X and Y are seprarated with an underscore).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;With this done you need to first summarize the &lt;/SPAN&gt;&lt;STRONG&gt;compare&lt;/STRONG&gt;&lt;SPAN&gt; field (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/main/10.1/index.html#//005s00000055000000" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//005s00000055000000&lt;/A&gt;&lt;SPAN&gt;) this creates a table with a count of the values, no need to assess other fields just specify the output location and name and click OK (add it to the map). &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Then dissolve (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000005n000000" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000005n000000&lt;/A&gt;&lt;SPAN&gt;) the shapefile with the &lt;/SPAN&gt;&lt;STRONG&gt;compare&lt;/STRONG&gt;&lt;SPAN&gt; field.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This will bring it down to a single feature layer per location.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Where almost there &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Join the data from the summarized table to the dissolved shapefile (based on the &lt;/SPAN&gt;&lt;STRONG&gt;compare&lt;/STRONG&gt;&lt;SPAN&gt; field) and it will add the number of counts to your shapefile from the summarized table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;To permanently fuse the data rightclick your joined shape and click export data (all features) and save it again.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This makes a shape with a count field of the overlapping polygons, you can now run the polygon to raster tool with the value of the count field (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/main/10.1/index.html#//001200000030000000" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//001200000030000000&lt;/A&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It looks like a lot but it are just a few steps.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I hope this works for you, it did it for me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Greets Paul&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2014 06:17:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489113#M27789</guid>
      <dc:creator>PaulBeurskens</dc:creator>
      <dc:date>2014-02-04T06:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to create one raster from many polygons of species distribution??</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489114#M27790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I agree with Sol on working in a file geodatabase.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Your working enviroment will become more stable and you will be able to save the summary there as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Greets Paul&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 04:52:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489114#M27790</guid>
      <dc:creator>PaulBeurskens</dc:creator>
      <dc:date>2014-02-05T04:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to create one raster from many polygons of species distribution??</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489115#M27791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I see I forgot to mention someting.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When calculating X and Y you need to calculate the Centoid of the polygon.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You will probably do it correctly but this is a critical step.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please let us know if it worked.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 09:28:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489115#M27791</guid>
      <dc:creator>PaulBeurskens</dc:creator>
      <dc:date>2014-02-05T09:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to create one raster from many polygons of species distribution??</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489116#M27792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi&lt;BR /&gt;&lt;BR /&gt;The reason it didn't work was becouse of the multipleoverlapping polygons.&lt;BR /&gt;I have tried to solve it using some data I have made myself that simulates your situation.&lt;BR /&gt;What is critical is that a species does not have overlapping polygons.&lt;BR /&gt;If it does you should first dissolve (&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000005n000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000005n000000&lt;/A&gt;)&amp;nbsp; your layer on the species so you have one (or more but without overlapping) polygon(s), make shure not to create multiparts.&lt;BR /&gt;&lt;BR /&gt;First you preform a union (&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00080000000s000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//00080000000s000000&lt;/A&gt;) on your shape (it is allowed to do so on one shapefile), this will make small pieces of overlapping data clipping the data on each other.&lt;BR /&gt;&lt;BR /&gt;Then you need to add three columns to the attribute table of the union shapefile:&lt;BR /&gt;-&amp;nbsp; X&amp;nbsp; "double"&lt;BR /&gt;-&amp;nbsp; Y "double&lt;BR /&gt;-&amp;nbsp; compare "text" (minimum of 50 characters)&lt;BR /&gt;In &lt;STRONG&gt;X&lt;/STRONG&gt; you calculate the x coördinate of the polygon using the calculate geomitry function in the attribute table (&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//005s00000027000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//005s00000027000000&lt;/A&gt;)&lt;BR /&gt;In &lt;STRONG&gt;Y&lt;/STRONG&gt; you calculate the y coördinate in the same way.&lt;BR /&gt;In &lt;STRONG&gt;compare&lt;/STRONG&gt; you make a combination of the &lt;STRONG&gt;X&lt;/STRONG&gt; and &lt;STRONG&gt;Y&lt;/STRONG&gt; fields to get the combination of the two, becouse of the overlapping parts the union makes you need tis so you have a unique code for that specific location. All the overlapping parts are identical so the centrers are identical.&lt;BR /&gt;You can paste this in your field calculator: &lt;X&gt;&amp;amp;"_"&amp;amp;&lt;Y&gt; &lt;BR /&gt;(so X and Y are seprarated with an underscore).&lt;BR /&gt;&lt;BR /&gt;With this done you need to first summarize the &lt;STRONG&gt;compare&lt;/STRONG&gt; field (&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//005s00000055000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//005s00000055000000&lt;/A&gt;) this creates a table with a count of the values, no need to assess other fields just specify the output location and name and click OK (add it to the map). &lt;BR /&gt;Then dissolve (&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000005n000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000005n000000&lt;/A&gt;) the shapefile with the &lt;STRONG&gt;compare&lt;/STRONG&gt; field.&lt;BR /&gt;This will bring it down to a single feature layer per location.&lt;BR /&gt;&lt;BR /&gt;Where almost there &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;Join the data from the summarized table to the dissolved shapefile (based on the &lt;STRONG&gt;compare&lt;/STRONG&gt; field) and it will add the number of counts to your shapefile from the summarized table.&lt;BR /&gt;To permanently fuse the data rightclick your joined shape and click export data (all features) and save it again.&lt;BR /&gt;&lt;BR /&gt;This makes a shape with a count field of the overlapping polygons, you can now run the polygon to raster tool with the value of the count field (&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//001200000030000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//001200000030000000&lt;/A&gt;).&lt;BR /&gt;&lt;BR /&gt;It looks like a lot but it are just a few steps.&lt;BR /&gt;I hope this works for you, it did it for me.&lt;BR /&gt;&lt;BR /&gt;Greets Paul&lt;/Y&gt;&lt;/X&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It worked! &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you so much!!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thiago021&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Feb 2014 18:39:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489116#M27792</guid>
      <dc:creator>ThiagoModesto</dc:creator>
      <dc:date>2014-02-09T18:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to create one raster from many polygons of species distribution??</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489117#M27793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Great!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;These questions are allways interesting and fun if they can be solved.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If you would please check the box that it is the answer and Arrow up on it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Greets Paul&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 04:47:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-create-one-raster-from-many-polygons-of/m-p/489117#M27793</guid>
      <dc:creator>PaulBeurskens</dc:creator>
      <dc:date>2014-02-10T04:47:20Z</dc:date>
    </item>
  </channel>
</rss>

