<?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: Problem with class 'arc.feature_impl'. in R-ArcGIS Questions</title>
    <link>https://community.esri.com/t5/r-arcgis-questions/problem-with-class-arc-feature-impl/m-p/806700#M152</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0in 0in 0pt;"&gt;Hello Shaun,&lt;/P&gt;&lt;P style="margin: 0in 0in 0pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin: 0in 0in 0pt;"&gt;Thanks for your input.&amp;nbsp; I resolved the problem by using arc.select() to convert the ‘ar.feature_impl’ class object to an ‘arc.data’ class object.&amp;nbsp; Example below:&lt;/P&gt;&lt;P style="margin: 0in 0in 0pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; # Read in example shapefile from package&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; ozone.path &amp;lt;- system.file("extdata", "ca_ozone_pts.shp",&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;package="arcgisbinding")&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; ozone.arc.dataset &amp;lt;- arc.open(ozone.path)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; class(ozone.arc.dataset) # arc.feature_impl class&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="padding: 0in; border: 1pt windowtext; color: white; font-size: 10pt;"&gt;[1] "arc.feature_impl"&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="padding: 0in; border: 1pt windowtext; color: white; font-size: 10pt;"&gt;attr(,"package")&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="padding: 0in; border: 1pt windowtext; color: white; font-size: 10pt;"&gt;[1] "arcgisbinding"&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; arc.data2sp(ozone.arc.dataset) # doesn't work&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff628c; font-size: 10pt;"&gt;Error: inherits(x, "arc.data") is not TRUE&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; # convert to class arc.data using arc.select()&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; ozone.arc.dataframe &amp;lt;- arc.select(ozone.arc.dataset) &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; class(ozone.arc.dataframe) # arc.data!&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="padding: 0in; border: 1pt windowtext; color: white; font-size: 10pt;"&gt;[1] "arc.data"&amp;nbsp;&amp;nbsp; "data.frame"&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; ozone.arcdata &amp;lt;- arc.data2sp(ozone.arc.dataframe) # success!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 May 2019 12:44:49 GMT</pubDate>
    <dc:creator>JakeBeaulieu</dc:creator>
    <dc:date>2019-05-28T12:44:49Z</dc:date>
    <item>
      <title>Problem with class 'arc.feature_impl'.</title>
      <link>https://community.esri.com/t5/r-arcgis-questions/problem-with-class-arc-feature-impl/m-p/806698#M150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I&amp;nbsp;used arc.open() to read a .gdb polygon feature class read into R.&amp;nbsp; I would like to convert the object to a spatialPolygonsDataFrame with the arc.data2sp function.&amp;nbsp; The function fails, however, with the following message:&lt;/P&gt;&lt;PRE style="margin: 0px; border: currentColor; color: #ffffff; text-transform: none; line-height: 13.63px; text-indent: 0px; letter-spacing: normal; font-family: 'Lucida Console'; font-size: 10pt !important; font-style: normal; font-variant: normal; font-weight: normal; word-spacing: 0px; white-space: pre-wrap !important; -ms-word-break: break-all; background-color: #002240; -webkit-user-select: text; -webkit-text-stroke-width: 0px;"&gt;&lt;SPAN&gt;&lt;SPAN style="color: #ff9d00; white-space: pre; -webkit-user-select: text;"&gt;&amp;gt; &lt;/SPAN&gt;&lt;SPAN style="color: #ff9d00;"&gt;nhdSp &amp;lt;- arc.data2sp(nhd)&lt;/SPAN&gt;&lt;SPAN style="color: #ff628c;"&gt;Error: inherits(x, "arc.data") is not TRUE&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Turns out the object is of class 'arc.feature_impl',&lt;/P&gt;&lt;PRE style="margin: 0px; border: currentColor; color: #ffffff; text-transform: none; line-height: 13.63px; text-indent: 0px; letter-spacing: normal; font-family: 'Lucida Console'; font-size: 10pt !important; font-style: normal; font-variant: normal; font-weight: normal; word-spacing: 0px; white-space: pre-wrap !important; -ms-word-break: break-all; background-color: #002240; -webkit-user-select: text; -webkit-text-stroke-width: 0px;"&gt;&lt;SPAN&gt;&lt;SPAN style="color: #ff9d00; white-space: pre; -webkit-user-select: text;"&gt;&amp;gt; &lt;/SPAN&gt;&lt;SPAN style="color: #ff9d00;"&gt;class(nhd)&lt;/SPAN&gt;&lt;SPAN style="margin: 0px; border: currentColor; white-space: pre-wrap !important; -ms-word-break: break-all; -webkit-user-select: text;"&gt;[1] "arc.feature_impl" attr(,"package") [1] "arcgisbinding"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whereas arc.data2sp() requires objects of class 'arc.data'.&amp;nbsp; How can I coerce my&amp;nbsp;object to class 'arc.data' for use with the arc.data2sp() function?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 May 2019 15:24:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/r-arcgis-questions/problem-with-class-arc-feature-impl/m-p/806698#M150</guid>
      <dc:creator>JakeBeaulieu</dc:creator>
      <dc:date>2019-05-17T15:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with class 'arc.feature_impl'.</title>
      <link>https://community.esri.com/t5/r-arcgis-questions/problem-with-class-arc-feature-impl/m-p/806699#M151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jake,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't reproduce this issue with polygon data I have on hand. For the variable that stores the arc.open output, could you paste what it displays when just typing the variable name. For example, here's a simple layer I was using to test:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&amp;gt; d &amp;lt;- arc.open("c:/workspace/basic_catalog.gdb/example_with_nulls_buff_50km")
&amp;gt; d
dataset_type    : FeatureClass
path            : c:/workspace/basic_catalog.gdb/example_with_nulls_buff_50km 
fields          : OBJECTID, Shape, ID, Data, BUFF_DIST, ORIG_FID, Shape_Length, Shape_Area
extent          : xmin=-85.45471, ymin=-9.452023, xmax=-75.55085, ymax=0.4521846
geometry type   : Polygon
WKT             : GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984"...
WKID            : 4326 ‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;What does your data source display? Can you share a sample of the input GDB you're using?&lt;BR /&gt;&lt;BR /&gt;Thanks, Shaun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:24:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/r-arcgis-questions/problem-with-class-arc-feature-impl/m-p/806699#M151</guid>
      <dc:creator>ShaunWalbridge</dc:creator>
      <dc:date>2021-12-12T09:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with class 'arc.feature_impl'.</title>
      <link>https://community.esri.com/t5/r-arcgis-questions/problem-with-class-arc-feature-impl/m-p/806700#M152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0in 0in 0pt;"&gt;Hello Shaun,&lt;/P&gt;&lt;P style="margin: 0in 0in 0pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin: 0in 0in 0pt;"&gt;Thanks for your input.&amp;nbsp; I resolved the problem by using arc.select() to convert the ‘ar.feature_impl’ class object to an ‘arc.data’ class object.&amp;nbsp; Example below:&lt;/P&gt;&lt;P style="margin: 0in 0in 0pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; # Read in example shapefile from package&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; ozone.path &amp;lt;- system.file("extdata", "ca_ozone_pts.shp",&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;package="arcgisbinding")&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; ozone.arc.dataset &amp;lt;- arc.open(ozone.path)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; class(ozone.arc.dataset) # arc.feature_impl class&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="padding: 0in; border: 1pt windowtext; color: white; font-size: 10pt;"&gt;[1] "arc.feature_impl"&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="padding: 0in; border: 1pt windowtext; color: white; font-size: 10pt;"&gt;attr(,"package")&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="padding: 0in; border: 1pt windowtext; color: white; font-size: 10pt;"&gt;[1] "arcgisbinding"&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; arc.data2sp(ozone.arc.dataset) # doesn't work&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff628c; font-size: 10pt;"&gt;Error: inherits(x, "arc.data") is not TRUE&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; # convert to class arc.data using arc.select()&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; ozone.arc.dataframe &amp;lt;- arc.select(ozone.arc.dataset) &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; class(ozone.arc.dataframe) # arc.data!&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="padding: 0in; border: 1pt windowtext; color: white; font-size: 10pt;"&gt;[1] "arc.data"&amp;nbsp;&amp;nbsp; "data.frame"&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt;"&gt;&amp;gt; ozone.arcdata &amp;lt;- arc.data2sp(ozone.arc.dataframe) # success!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 May 2019 12:44:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/r-arcgis-questions/problem-with-class-arc-feature-impl/m-p/806700#M152</guid>
      <dc:creator>JakeBeaulieu</dc:creator>
      <dc:date>2019-05-28T12:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with class 'arc.feature_impl'.</title>
      <link>https://community.esri.com/t5/r-arcgis-questions/problem-with-class-arc-feature-impl/m-p/806701#M153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jake,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Glad you found something that works for you. The other way of doing this is running &lt;A href="https://www.rdocumentation.org/packages/arcgisbinding/versions/1.0.1.229/topics/arc.select"&gt;&lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;arc.select&lt;/SPAN&gt; &lt;/A&gt;on the input after opening it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt; font-family: terminal, monaco, monospace;"&gt;&amp;gt; # Read in example shapefile from package&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt; font-family: terminal, monaco, monospace;"&gt;&amp;gt; ozone.path &amp;lt;- system.file("extdata", "ca_ozone_pts.shp",&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt; font-family: terminal, monaco, monospace;"&gt;+ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;package="arcgisbinding")&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt; font-family: terminal, monaco, monospace;"&gt;&amp;gt; ozone.arc.dataset &amp;lt;- arc.open(ozone.path&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background: #002240; margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #ff9d00; font-size: 10pt; font-family: terminal, monaco, monospace;"&gt;&amp;gt; ozone.obs &amp;lt;- arc.select(ozone.arc.dataset)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This two-step process is intentional, to give you a step to filter the data before it is imported during the arc.select step. If you only want certain columns or otherwise to filter the data, you can select just the features you want&amp;nbsp;– minimizing the amount of memory used in R with the resulting dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;BR /&gt;Shaun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 May 2019 15:13:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/r-arcgis-questions/problem-with-class-arc-feature-impl/m-p/806701#M153</guid>
      <dc:creator>ShaunWalbridge</dc:creator>
      <dc:date>2019-05-28T15:13:01Z</dc:date>
    </item>
  </channel>
</rss>

