<?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: Spatial Query on two or more polygons for line feautures double counting.... in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/spatial-query-on-two-or-more-polygons-for-line/m-p/436008#M11262</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; this is because the default is using INTERSECTS instead of CONTAINS&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can set the &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/silverlight-api/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Tasks.Query~SpatialRelationship.html"&gt;SpatialRelationShip&lt;/A&gt;&lt;SPAN&gt; to define the spatial relationship to be applied while performning the query. 'Intersects' is the default but that can be changed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That being said it's probably not that useful in your case since the lines crossing 2 polygons would no more be counted (instead of being double counted).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's depending on your need. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For a line crossing 2 polygons, do you want to count the total line length with one polygon (e.g based on the line midpoind) or to split the length in 2 parts, one for each polygon?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the second case, you can use the &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/silverlight-api/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Tasks.GeometryService~IntersectAsync.html"&gt;Intersect &lt;/A&gt;&lt;SPAN&gt;method of a geometry service that will clip your lines based on your polygon. You can then count the total length based on the clipped lines.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the first case, you can also use the Intersect method but just to know if the midpoint of the line is inside the polygon and then affect the line length accordingly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jul 2012 07:38:02 GMT</pubDate>
    <dc:creator>DominiqueBroux</dc:creator>
    <dc:date>2012-07-24T07:38:02Z</dc:date>
    <item>
      <title>Spatial Query on two or more polygons for line feautures double counting....</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/spatial-query-on-two-or-more-polygons-for-line/m-p/436007#M11261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am developing a silverlight application that calculates the lengths of all the line features (pipes) in one or more polygons. I am using both the spatial query task and the attribute query task to accomplish the task. In order words, i first get the geometry of the polygons in the first attribute query task and then use those returned geometries in the 2nd a spatial query task. Every thing works fine except that I'm getting double counting on line features (pipes) that crosses two polygons as a result my total length of line features is more due to double counting; this is because the default is using INTERSECTS instead of CONTAINS. Is there a functionality in arcgis for silverlight API that will automatically assign an intersecting line feature to one of the polygons based on the line's midpoint? This will help eliminate the double counting.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please help! Any helpful suggestion will be much appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2012 20:27:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/spatial-query-on-two-or-more-polygons-for-line/m-p/436007#M11261</guid>
      <dc:creator>MosesAsuquo</dc:creator>
      <dc:date>2012-07-23T20:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial Query on two or more polygons for line feautures double counting....</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/spatial-query-on-two-or-more-polygons-for-line/m-p/436008#M11262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; this is because the default is using INTERSECTS instead of CONTAINS&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can set the &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/silverlight-api/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Tasks.Query~SpatialRelationship.html"&gt;SpatialRelationShip&lt;/A&gt;&lt;SPAN&gt; to define the spatial relationship to be applied while performning the query. 'Intersects' is the default but that can be changed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That being said it's probably not that useful in your case since the lines crossing 2 polygons would no more be counted (instead of being double counted).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's depending on your need. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For a line crossing 2 polygons, do you want to count the total line length with one polygon (e.g based on the line midpoind) or to split the length in 2 parts, one for each polygon?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the second case, you can use the &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/silverlight-api/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Tasks.GeometryService~IntersectAsync.html"&gt;Intersect &lt;/A&gt;&lt;SPAN&gt;method of a geometry service that will clip your lines based on your polygon. You can then count the total length based on the clipped lines.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the first case, you can also use the Intersect method but just to know if the midpoint of the line is inside the polygon and then affect the line length accordingly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 07:38:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/spatial-query-on-two-or-more-polygons-for-line/m-p/436008#M11262</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2012-07-24T07:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial Query on two or more polygons for line feautures double counting....</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/spatial-query-on-two-or-more-polygons-for-line/m-p/436009#M11263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Dominique,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Oh, nice. Thanks a lot. The embedded link you provided is helpful. It appears i have more options from the different possible enum values of the SpatialRelationship:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Member&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;&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; Description&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;esriSpatialRelContains&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Part or all of a feature from feature class 1 is contained within a feature from feature class 2.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;esriSpatialRelCrosses&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The feature from feature class 1 crosses a feature from feature class 2.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;esriSpatialRelEnvelopeIntersects The envelope of feature class 1 intersects with the envelope of feature class 2.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;esriSpatialRelIndexIntersects&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The envelope of the query feature class intersects the index entry for the target feature class.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;esriSpatialRelIntersects&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Part of a feature from feature class 1 is contained in a feature from feature class 2.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;esriSpatialRelOverlaps&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Features from feature class 1 overlap features in feature class 2.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;esriSpatialRelRelation&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Indicates that a spatial relationship function will be used.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;esriSpatialRelTouches&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The feature from feature class 1 touches the border of a feature from feature class 2.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;esriSpatialRelWithin&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The feature from feature class 1 is completely enclosed by the feature from feature class 2.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I will like to implement the first case. if the midpoint of the line feature is inside one of the polygons it should count it as belonging to that polygon and not count it again as belonging to the other polygon even though the line feature intersects with both polygons. What i want is to calculate the total length of all the line features in a polygon (or it could be several polygons on the map based on the user selection). Here is a code snippet from the call to the QueryTask: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp; private void QueryTaskService(Selection sel, ESRI.ArcGIS.Client.Geometry.Geometry geometry)
&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; string serviceURL;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (GravityMain.Target == PipeQueryBuilder.AddIns.MyDatabaseService.Table.SSGRAVITYMAIN_MV)
&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; serviceURL = "http://mkgistempd01/ArcGIS/rest/services/RIVER/Sanitary_map/MapServer/62";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if (GravityMain.Target == PipeQueryBuilder.AddIns.MyDatabaseService.Table.SSPRESSURIZEDMAIN_MV)
&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; serviceURL = "http://mkgistempd01/ArcGIS/rest/services/RIVER/Sanitary_map/MapServer/64";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if (GravityMain.Target == PipeQueryBuilder.AddIns.MyDatabaseService.Table.SWGRAVITYMAIN_MV)
&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; serviceURL = "http://mkgistempd01/ArcGIS/rest/services/RIVER/Storm_map/MapServer/62";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else
&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; serviceURL = "http://mkgistempd01/ArcGIS/rest/services/RIVER/Storm_map/MapServer/63";

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QueryTask queryTask = new QueryTask(serviceURL);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryTask.ExecuteCompleted += QueryTask_ExecuteCompleted;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryTask.Failed += QueryTask_Failed;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Query query = new ESRI.ArcGIS.Client.Tasks.Query();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.OutFields.Add("*");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.Geometry = geometry;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.SpatialRelationship = SpatialRelationship.esriSpatialRelIntersects;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.Where = form.constructWHERECLAUSE(sel);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Return geometry with result features
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.ReturnGeometry = true;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.OutSpatialReference = MapApplication.Current.Map.SpatialReference;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryTask.ExecuteAsync(query, GravityMain._gMain.BoundaryGeometries[geometry]);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have just added the query.SpatialRelationship = SpatialRelationship.esriSpatialRelIntersects line of code but how do i specify that it uses the midpoint of the line feature as you explained in the first case using intersect??&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again for the lead.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:32:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/spatial-query-on-two-or-more-polygons-for-line/m-p/436009#M11263</guid>
      <dc:creator>MosesAsuquo</dc:creator>
      <dc:date>2021-12-11T19:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial Query on two or more polygons for line feautures double counting....</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/spatial-query-on-two-or-more-polygons-for-line/m-p/436010#M11264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Oh ,Dominique, how about what if i wanted to use the endpoint of the line features (pipes). In order words, which ever polygon the endpoint of the line feature falls, that line should be counted as belonging to that polygon and thereby avoiding double counting. How would one implement that in code??&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again in advance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 12:53:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/spatial-query-on-two-or-more-polygons-for-line/m-p/436010#M11264</guid>
      <dc:creator>MosesAsuquo</dc:creator>
      <dc:date>2012-07-24T12:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial Query on two or more polygons for line feautures double counting....</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/spatial-query-on-two-or-more-polygons-for-line/m-p/436011#M11265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;My suggestion is :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; 1) Do a query with Intersects relationship (i.e the default). This query will return all lines that could be counted for the polygon&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; 2) From the list of lines, create a list of points that will be used as reference for each line (i.e the midpoint, or the end point or whatever depending on your need).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; 3) Use an intersect task to get the insersection between the polygon and this list of points. This task returns a list of graphics (the exact same number than in the initial list) but if a point doesn't intersect the polygon, the returned graphic will have a null geometry and extent.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; 4) Sum the line length for each line that has a corresponding non null graphic.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 18:07:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/spatial-query-on-two-or-more-polygons-for-line/m-p/436011#M11265</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2012-07-24T18:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial Query on two or more polygons for line feautures double counting....</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/spatial-query-on-two-or-more-polygons-for-line/m-p/436012#M11266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you... I will implement this and let you know. I understand the idea and the steps. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2012 20:34:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/spatial-query-on-two-or-more-polygons-for-line/m-p/436012#M11266</guid>
      <dc:creator>MosesAsuquo</dc:creator>
      <dc:date>2012-07-30T20:34:45Z</dc:date>
    </item>
  </channel>
</rss>

