<?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 Intersection-geometry has negative area in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649193#M17402</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a code that looks for parcels that touch another one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;IGeometry parcelGeometry = parcel.GetEsriGeometry();
&lt;SPAN style="color: #2b91af;"&gt;ISpatialFilter&lt;/SPAN&gt; filter = &lt;SPAN style="color: blue;"&gt;new&lt;/SPAN&gt; &lt;SPAN style="color: #2b91af;"&gt;SpatialFilter&lt;/SPAN&gt;
{
&amp;nbsp;&amp;nbsp;&amp;nbsp; SpatialRel = &lt;SPAN style="color: #2b91af;"&gt;esriSpatialRelEnum&lt;/SPAN&gt;.esriSpatialRelIntersects, 
&amp;nbsp;&amp;nbsp;&amp;nbsp; Geometry = parcelGeometry
};

&lt;SPAN style="color: #2b91af;"&gt;IFeatureCursor&lt;/SPAN&gt; cursor = parcelFeatureClass.Search(filter, &lt;SPAN style="color: blue;"&gt;true&lt;/SPAN&gt;);
&lt;SPAN style="color: #2b91af;"&gt;IFeature&lt;/SPAN&gt; feature;


&lt;SPAN style="color: blue;"&gt;while&lt;/SPAN&gt; ((feature = cursor.NextFeature()) != &lt;SPAN style="color: blue;"&gt;null&lt;/SPAN&gt;)
{
&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var&lt;/SPAN&gt; geom = (&lt;SPAN style="color: #2b91af;"&gt;ITopologicalOperator&lt;/SPAN&gt;) feature.Shape;
&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var&lt;/SPAN&gt; intersectGeom = geom.Intersect(parcelGeometry, &lt;SPAN style="color: #2b91af;"&gt;esriGeometryDimension&lt;/SPAN&gt;.esriGeometry2Dimension) &lt;SPAN style="color: blue;"&gt;as&lt;/SPAN&gt; IArea;
}



(geom as ESRI.ArcGIS.Geometry.IRelationalOperator).Overlaps(parcel.GetEsriGeometry())&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I execute this chunk of code I get an area of intersection of -0.0000000014294918595190997 which is strange for two reasons:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;it is negative&lt;/LI&gt;&lt;LI&gt;it is far beyond the actual cluster-tolerance (set to 0.1mm)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;So I assume this is due to the inaccuarcy of type double.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As my actual purpose is on identifying touching geometries I initially used the &lt;SPAN style="font-family: courier new,courier;"&gt;esriSpatialRelTouches&lt;/SPAN&gt;-operator instead of an intersect for the spatial filter which did not return any feature. &lt;SPAN style="font-family: courier new,courier;"&gt;esriSpatialRelOverlaps&lt;/SPAN&gt; however returns the feature. Quite more weird is that when I filter the geometries in ArcMap using &lt;EM&gt;select features from ... that touch the boundary of the source-layer&lt;/EM&gt; I also get the feature of which I thought it touches my source-feature.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When this problem comes due to the inaccuracy of &lt;SPAN style="font-family: courier new,courier;"&gt;double&lt;/SPAN&gt; I wonder if there are any opportunities to trust the touch-operator anyway as it is a quite strict operator asking for an exact solution which double can´t (obviously) handle. However I´d expected that if an intersection is detected between two features that is far beyond the cluster-tolerance (and moreover is negative) the functions of &lt;SPAN style="font-family: courier new,courier;"&gt;ITopolgicalOperator&lt;/SPAN&gt; are smart enough to filter those geometries out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I provide a shape-file containing the two geometries but I doubt the problem is reproducible as I exported the geometries from an SDE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT: I also wrote this arcpy-snipped which gave me expected result:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;geometries = []
i = 0
for row in arcpy.SearchCursor('LayerWithSelectedFeatures'):
&amp;nbsp;&amp;nbsp;&amp;nbsp; geometries.append(row.shp)
&amp;nbsp;&amp;nbsp;&amp;nbsp; i = i + 1
area = geometries[0].intersect(geometries[1], 2)
print area.area&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This prints out 0.0 as I expected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 03:31:33 GMT</pubDate>
    <dc:creator>CarstenSchumann</dc:creator>
    <dc:date>2021-12-12T03:31:33Z</dc:date>
    <item>
      <title>Intersection-geometry has negative area</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649193#M17402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a code that looks for parcels that touch another one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;IGeometry parcelGeometry = parcel.GetEsriGeometry();
&lt;SPAN style="color: #2b91af;"&gt;ISpatialFilter&lt;/SPAN&gt; filter = &lt;SPAN style="color: blue;"&gt;new&lt;/SPAN&gt; &lt;SPAN style="color: #2b91af;"&gt;SpatialFilter&lt;/SPAN&gt;
{
&amp;nbsp;&amp;nbsp;&amp;nbsp; SpatialRel = &lt;SPAN style="color: #2b91af;"&gt;esriSpatialRelEnum&lt;/SPAN&gt;.esriSpatialRelIntersects, 
&amp;nbsp;&amp;nbsp;&amp;nbsp; Geometry = parcelGeometry
};

&lt;SPAN style="color: #2b91af;"&gt;IFeatureCursor&lt;/SPAN&gt; cursor = parcelFeatureClass.Search(filter, &lt;SPAN style="color: blue;"&gt;true&lt;/SPAN&gt;);
&lt;SPAN style="color: #2b91af;"&gt;IFeature&lt;/SPAN&gt; feature;


&lt;SPAN style="color: blue;"&gt;while&lt;/SPAN&gt; ((feature = cursor.NextFeature()) != &lt;SPAN style="color: blue;"&gt;null&lt;/SPAN&gt;)
{
&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var&lt;/SPAN&gt; geom = (&lt;SPAN style="color: #2b91af;"&gt;ITopologicalOperator&lt;/SPAN&gt;) feature.Shape;
&lt;SPAN style="color: blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var&lt;/SPAN&gt; intersectGeom = geom.Intersect(parcelGeometry, &lt;SPAN style="color: #2b91af;"&gt;esriGeometryDimension&lt;/SPAN&gt;.esriGeometry2Dimension) &lt;SPAN style="color: blue;"&gt;as&lt;/SPAN&gt; IArea;
}



(geom as ESRI.ArcGIS.Geometry.IRelationalOperator).Overlaps(parcel.GetEsriGeometry())&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I execute this chunk of code I get an area of intersection of -0.0000000014294918595190997 which is strange for two reasons:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;it is negative&lt;/LI&gt;&lt;LI&gt;it is far beyond the actual cluster-tolerance (set to 0.1mm)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;So I assume this is due to the inaccuarcy of type double.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As my actual purpose is on identifying touching geometries I initially used the &lt;SPAN style="font-family: courier new,courier;"&gt;esriSpatialRelTouches&lt;/SPAN&gt;-operator instead of an intersect for the spatial filter which did not return any feature. &lt;SPAN style="font-family: courier new,courier;"&gt;esriSpatialRelOverlaps&lt;/SPAN&gt; however returns the feature. Quite more weird is that when I filter the geometries in ArcMap using &lt;EM&gt;select features from ... that touch the boundary of the source-layer&lt;/EM&gt; I also get the feature of which I thought it touches my source-feature.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When this problem comes due to the inaccuracy of &lt;SPAN style="font-family: courier new,courier;"&gt;double&lt;/SPAN&gt; I wonder if there are any opportunities to trust the touch-operator anyway as it is a quite strict operator asking for an exact solution which double can´t (obviously) handle. However I´d expected that if an intersection is detected between two features that is far beyond the cluster-tolerance (and moreover is negative) the functions of &lt;SPAN style="font-family: courier new,courier;"&gt;ITopolgicalOperator&lt;/SPAN&gt; are smart enough to filter those geometries out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I provide a shape-file containing the two geometries but I doubt the problem is reproducible as I exported the geometries from an SDE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT: I also wrote this arcpy-snipped which gave me expected result:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;geometries = []
i = 0
for row in arcpy.SearchCursor('LayerWithSelectedFeatures'):
&amp;nbsp;&amp;nbsp;&amp;nbsp; geometries.append(row.shp)
&amp;nbsp;&amp;nbsp;&amp;nbsp; i = i + 1
area = geometries[0].intersect(geometries[1], 2)
print area.area&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This prints out 0.0 as I expected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:31:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649193#M17402</guid>
      <dc:creator>CarstenSchumann</dc:creator>
      <dc:date>2021-12-12T03:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection-geometry has negative area</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649194#M17403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;negative geometry has been found to be associated with rings that go counter-clockwise instead of clockwise or for geometry with geometry errors like self-intersections and the like.&amp;nbsp; check your geometry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2016 16:28:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649194#M17403</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-05-23T16:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection-geometry has negative area</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649195#M17404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;However as the geometry with negative area comes directly from an ITopologicalOperator-method which is guaranteed to return only simple geometries (as by the docs, have to look further to get the source of this statement) the area must not be negative, mustn´t it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However I checked both input-geometries if they are simple. To be safe I also set the IsKnownSimple-Property for both to false to enforce a Simplify which didn´t solve the problem. Anyway when I do the same with the result-geometry its area is zero as expected. This doesn´t neccessarily mean that the result-geometry per se is topologically incorrect as it is simply smaller than the CRS´ grid. However this also applies for the source-geometries which seem to be snapped to different coordinates.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2016 06:47:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649195#M17404</guid>
      <dc:creator>CarstenSchumann</dc:creator>
      <dc:date>2016-05-24T06:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection-geometry has negative area</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649196#M17405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/3101" target="_blank"&gt;Robert Scheitlin, GISP&lt;/A&gt;​ may recollect the thread where ring order was important, I can only demonstrate this in the standard method of calculating area which is based, in simple form on Green's theorem (see the Shoelace formula)&lt;/P&gt;&lt;P&gt;Python as an example&lt;/P&gt;&lt;P&gt;cw clockwise, ccw counter...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;def ring_area(x, y):
&amp;nbsp;&amp;nbsp;&amp;nbsp; """x and y as separate lists or arrays from references above
&amp;nbsp;&amp;nbsp;&amp;nbsp; - assumes first and last points are the same so uses slices
&amp;nbsp;&amp;nbsp;&amp;nbsp; """
&amp;nbsp;&amp;nbsp;&amp;nbsp; a0 = np.dot(x[1:], y[:-1])
&amp;nbsp;&amp;nbsp;&amp;nbsp; a1 = np.dot(x[:-1], y[1:])
&amp;nbsp;&amp;nbsp;&amp;nbsp; area = (a0-a1) * 0.5 # np.abs(a0-a1) * 0.5 for unsigned area
&amp;nbsp;&amp;nbsp;&amp;nbsp; print("\nx: {}\ny: {}\na0: {} a1: {}&amp;nbsp; area: {}".format(x,y,a0,a1,area))
&amp;nbsp;&amp;nbsp;&amp;nbsp; return area

&amp;gt;&amp;gt;&amp;gt; cw = np.array([[0,0], [0,10], [10,10], [10,0],[0,0]])
&amp;gt;&amp;gt;&amp;gt; xs = cw[...,0]
&amp;gt;&amp;gt;&amp;gt; ys = cw[...,1]
&amp;gt;&amp;gt;&amp;gt; ring_area(xs,ys)
x: [ 0&amp;nbsp; 0 10 10&amp;nbsp; 0]
y: [ 0 10 10&amp;nbsp; 0&amp;nbsp; 0]
a0: 200 a1: 0&amp;nbsp; area: 100.0
100.0
&amp;gt;&amp;gt;&amp;gt; ccw = np.array([[0,0],[10,0], [10,10], [0,10],&amp;nbsp; [0,0]])
&amp;gt;&amp;gt;&amp;gt; xs = ccw[...,0]
&amp;gt;&amp;gt;&amp;gt; ys = ccw[...,1]
&amp;gt;&amp;gt;&amp;gt; ring_area(xs,ys)
x: [ 0 10 10&amp;nbsp; 0&amp;nbsp; 0]
y: [ 0&amp;nbsp; 0 10 10&amp;nbsp; 0]
a0: 0 a1: 200&amp;nbsp; area: -100.0
-100.0
&amp;gt;&amp;gt;&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:31:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649196#M17405</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-12T03:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection-geometry has negative area</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649197#M17406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I´ve updated my question. The arcpy-code that I´ve attached does not return any negative value, it simply retuns 0.0. So we´re back at ITopologicalOperator, I guess.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2016 12:50:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649197#M17406</guid>
      <dc:creator>CarstenSchumann</dc:creator>
      <dc:date>2016-05-24T12:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection-geometry has negative area</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649198#M17407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Carsten,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you say that you explicitly called geom.Simplify() in your code at some point in your testing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2016 13:49:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649198#M17407</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-05-24T13:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection-geometry has negative area</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649199#M17408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeap, within the loop I call Simplify for every feature. Something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN class="keyword"&gt;while ((feature = cursor.NextFeature()) != &lt;SPAN class="keyword"&gt;null&lt;/SPAN&gt;)&amp;nbsp; &lt;/SPAN&gt;
{&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var topo = (ITopologicalOperator2) feature.Shape;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; topo.IsKnownSimple_2 = false;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; topo.Simplify();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var intersectGeom = topo.Intersect(parcelGeometry, esriGeometryDimension.esriGeometry2Dimension) &lt;SPAN class="keyword"&gt;as IArea;&amp;nbsp; &lt;/SPAN&gt;
}&amp;nbsp; &lt;/PRE&gt;&lt;P&gt;Just for testing I did the same with my parcelGeometry and the actual intersectionGeometry. When simplifying the latter its area surely is 0.0 which makes me think that Intersect results in a non-simple geometry.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:31:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649199#M17408</guid>
      <dc:creator>CarstenSchumann</dc:creator>
      <dc:date>2021-12-12T03:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection-geometry has negative area</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649200#M17409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What about casting the topo.Intersect result to ITopologicalOperator and Simplify and then get the area?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2016 12:39:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649200#M17409</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-05-26T12:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection-geometry has negative area</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649201#M17410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I already checked this as mentioned in the commment from &lt;SPAN class="jive-comment-meta font-color-meta-light"&gt;&lt;A _jive_internal="true" class="font-color-meta-light" href="https://community.esri.com/message/610841#comment-610500"&gt;23.05.2016 23:47. &lt;/A&gt;​After simplifying the result-geometry its area is surely 0.0 which is strange a bit as it might mean that ITopologicalOperator produced some non-simply geometries. But I rather assume this is because the geometry being so small (remember: smaller than the grid itself) making it impossible for ITopo to process appropriately.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 May 2016 08:09:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/intersection-geometry-has-negative-area/m-p/649201#M17410</guid>
      <dc:creator>CarstenSchumann</dc:creator>
      <dc:date>2016-05-30T08:09:09Z</dc:date>
    </item>
  </channel>
</rss>

