<?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: Reduce points in Point feature from a 30 meter DEM raster in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687504#M53223</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ian,&lt;/P&gt;&lt;P&gt;It looks like this will work!&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Nov 2015 23:20:12 GMT</pubDate>
    <dc:creator>ChrisMartin9</dc:creator>
    <dc:date>2015-11-10T23:20:12Z</dc:date>
    <item>
      <title>Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687492#M53211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created a point feature from a 30 meter DEM raster and I would like to reduce the number of points (decimate) - the number of points are too large to manage. Is there a toolbox for this or can this be done with the select attribute tool. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2015 23:48:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687492#M53211</guid>
      <dc:creator>ChrisMartin9</dc:creator>
      <dc:date>2015-11-09T23:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687493#M53212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;probably many options, but you could add a field to the table and calculate a random number for the field , then select the number of features you want.&amp;nbsp; If you want to do a rondom-y stratified-ish sample, you could calculate add a field and use the field calculation on either the X and/or Y&lt;/P&gt;&lt;P&gt;!shape!.centroid.X % 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ( I think)&amp;nbsp; which will calculate a binary value indicating whether the coordinate is even or odd...then query out your choise and save them.&amp;nbsp; So decide whether you need random, random with a minimum number of samples, points with a minimum spacing etc etc.&lt;/P&gt;&lt;P&gt;Field calculations are here if you need examples.&amp;nbsp; &lt;A href="http://desktop.arcgis.com/en/desktop/latest/manage-data/tables/calculate-field-examples.htm#ESRI_SECTION1_C9E46547D3B246C1B89A36B0C84F7BA8" title="http://desktop.arcgis.com/en/desktop/latest/manage-data/tables/calculate-field-examples.htm#ESRI_SECTION1_C9E46547D3B246C1B89A36B0C84F7BA8"&gt;Calculate Field examples—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 01:05:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687493#M53212</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-11-10T01:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687494#M53213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think this is really a Python question, more of a geo-processing problem (python being one solution).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming you have a Shapefile then your row id is "FID". The following Where clause can be used in the Select by Attribute and it will select the first and every tenth row:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14471681874688131 jive_text_macro" data-renderedposition="113_8_912_16" jivemacro_uid="_14471681874688131"&gt;&lt;P&gt;"FID" / 10 = round( "FID"/10,0) or "FID" = 1&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your dataset is a geodatabase feature class then substitute FID with ObjectID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can then either delete these or invert the selection and delete out the batches of 9 rows. If the second option is what you want it will be quicker to simply export the selected 10th rows.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 15:12:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687494#M53213</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2015-11-10T15:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687495#M53214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Duncan, I didn't mean to suggest it was a python problem, however, python in the field calculator etc allows for builtin random module access making random number generation easier etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 15:16:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687495#M53214</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-11-10T15:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687496#M53215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan, I was not thinking your answer was unsuitable more that the original question is located under the python discussion board and that it is seems more suited to the general geo-processing page. If I had the power I would be moving it into that section.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 15:28:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687496#M53215</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2015-11-10T15:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687497#M53216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Duly noted but I was originally considering applying a Python script to execute this. I couldn't figure out the code to use in 'select by attribute' to delete rows in the table. &lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 15:36:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687497#M53216</guid>
      <dc:creator>ChrisMartin9</dc:creator>
      <dc:date>2015-11-10T15:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687498#M53217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chris, If Dan's or my suggestion solves your problem you should tick it as such, shows to others a solution was found and we get lots of lovely points! &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 15:48:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687498#M53217</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2015-11-10T15:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687499#M53218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Duncan,&lt;/P&gt;&lt;P&gt;I'm going to try this. I assume I need to start an edit session in order to delete the records in the attribute table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 16:30:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687499#M53218</guid>
      <dc:creator>ChrisMartin9</dc:creator>
      <dc:date>2015-11-10T16:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687500#M53219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can or you can simply use the Delete Features geoprocessing tool! A warning about this tool, if no selection exists then it Deletes EVERYTHING and there is no undo for this tool! So if you are building a model to run this many times it would be sensible to put in a GetCount and use that as a precondition to the Delete Features tool, otherwise you may end up shooting yourself in the foot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 17:21:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687500#M53219</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2015-11-10T17:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687501#M53220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another option is to simply resample the raster down to an even lower resolution before converting to points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 17:49:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687501#M53220</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2015-11-10T17:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687502#M53221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's perfect. How do I resample the raster?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sent from my iPhone&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 18:16:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687502#M53221</guid>
      <dc:creator>ChrisMartin9</dc:creator>
      <dc:date>2015-11-10T18:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687503#M53222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this tool help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://resources.arcgis.com/EN/HELP/MAIN/10.1/index.html#//00170000009t000000" title="http://resources.arcgis.com/EN/HELP/MAIN/10.1/index.html#//00170000009t000000"&gt;ArcGIS Help 10.1&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 19:20:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687503#M53222</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2015-11-10T19:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687504#M53223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ian,&lt;/P&gt;&lt;P&gt;It looks like this will work!&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 23:20:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687504#M53223</guid>
      <dc:creator>ChrisMartin9</dc:creator>
      <dc:date>2015-11-10T23:20:12Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687505#M53224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What interests me most, is why you converted the raster to points? What is your goal with that? Do you want to mimic a point cloud or is there a specific analysis you plan to do on the points?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 18:06:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687505#M53224</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-11-11T18:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687506#M53225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Xander,&lt;/P&gt;&lt;P&gt;I have to create a simple xyz flat file that I can grid in another software program and by converting the raster DEM into a point file I already have the z portion - I just needed to add the xy coords and export out as a csv which I can bring into the program. The problem was the software program was choking on the amount of points generated from a 30m DEM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2015 00:22:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687506#M53225</guid>
      <dc:creator>ChrisMartin9</dc:creator>
      <dc:date>2015-11-12T00:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687507#M53226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am sure you are aware of the potential effects of resampling to a lower resolution and these should be addressed or considered before using the results as inputs to other processes.&amp;nbsp; For the sake of completeness, the discussions given in the help are useful....especially for those that just accept the defaults as a matter of course.&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/desktop/latest/tools/data-management-toolbox/resample.htm" title="http://desktop.arcgis.com/en/desktop/latest/tools/data-management-toolbox/resample.htm"&gt;Resample—Help | ArcGIS for Desktop&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/desktop/latest/tools/spatial-analyst-toolbox/aggregate.htm" title="http://desktop.arcgis.com/en/desktop/latest/tools/spatial-analyst-toolbox/aggregate.htm"&gt;Aggregate—Help | ArcGIS for Desktop&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2015 00:56:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687507#M53226</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-11-12T00:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687508#M53227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris, thanks for the additional information. It makes sense that a software package chokes on a CSV file if it contains a large amount of records (which it will probably have). Resample is a simple way of reducing the amount of data but will result in loss of quality as Dan mentions. If there is no other exchange format that ArcGIS can write to and the other software can read from, and the extent has been reduced to a maximum, here is not much left to do. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2015 01:25:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687508#M53227</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-11-12T01:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687509#M53228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have 3D analyst you can convert to a TIN with a tolerance, the TIN can then be exported to points, which then can be re-gridded by your external program. This approach would allow you to preserve more detail than simply using Resample (or, better, Aggregate) to create a coarser regularly-spaced raster.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2015 04:16:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687509#M53228</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2015-11-12T04:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687510#M53229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Xander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do have 3D analyst but I have never done this. Do you have more information on how to convert the raster to a TIN and then export to points?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2015 14:37:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687510#M53229</guid>
      <dc:creator>ChrisMartin9</dc:creator>
      <dc:date>2015-11-12T14:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce points in Point feature from a 30 meter DEM raster</title>
      <link>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687511#M53230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or you could create a new attribute (call it modulo) and populate it with a modulo value using the Object ID and a value of say 10, then select all the records with a modulo value of 0 and and export only those records ( 1/10th of those originall records) to a CSV.&amp;nbsp; That way you could preserve the original point values of the 30 m DEM and not end up with the point values of the resampled surface.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2015 17:24:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/reduce-points-in-point-feature-from-a-30-meter-dem/m-p/687511#M53230</guid>
      <dc:creator>GerryGabrisch</dc:creator>
      <dc:date>2015-11-12T17:24:20Z</dc:date>
    </item>
  </channel>
</rss>

