<?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: .Net SDK show all points that are active in time extent in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226738#M2705</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do have the attributes set on the graphic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example &lt;/P&gt;&lt;P&gt;graphic.Attributes["Start"] = new DateTime(2014,12,5,6,0,0) // Dec 5th 6AM&lt;/P&gt;&lt;P&gt;graphic.Attributes["End"] = new DateTime(2014,12,5,6,30,0) // Dec 5th 6:30AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The time Extent is set as binding. &lt;/P&gt;&lt;P&gt;But the object it is bound to is&lt;/P&gt;&lt;P&gt;CurrentTimeExtent = new TimeExtent(new DateTime(2014,12,5,5,58,0), new DateTime(2014,12,5,6,3,0)) // From 5:58 to 6:03&lt;/P&gt;&lt;P&gt;When it is defined like this it shows the point on the map correctly because the Start is within the time extent.&lt;/P&gt;&lt;P&gt;I have a timer the increases the start and endtime of the time extent by 5 minutes.&lt;/P&gt;&lt;P&gt;After the first tick when the time extent is now from 6:03 to 6:08 the point is not longer displayed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Dec 2014 21:37:20 GMT</pubDate>
    <dc:creator>vincentvassallo</dc:creator>
    <dc:date>2014-12-05T21:37:20Z</dc:date>
    <item>
      <title>.Net SDK show all points that are active in time extent</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226734#M2701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Hi,&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;I previously asked &lt;A href="https://community.esri.com/thread/117206"&gt;Do graphics layers support the time extent property on the mapview. If so, how do i define the individual graphics time …&lt;/A&gt; &lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;The response works for me to an extent however I still cannot get quite the same results I was getting with the WPF SDK.&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;I have the time extent on my MapView bound to a TimeExtent that changes on a timer.&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;The extent is a range of 5 minutes and most of the points on the map have a start/end time 30 minutes apart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;My issue is that the points only appearing when the extent is around the start time. The points disappear before the extent reaches the end time.&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;My guess is that I'm assuming the wrong thing about the way the Start/End time on the graphic and the TimeExtent on the MapView interact.&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;What I need is for it to display any graphic that has a start time before the extent start and a end time after the start of the extent.&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Is there some way to adjust this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 15:25:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226734#M2701</guid>
      <dc:creator>vincentvassallo</dc:creator>
      <dc:date>2014-12-05T15:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: .Net SDK show all points that are active in time extent</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226735#M2702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did a bit more digging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used this code to check what I thought should be currently displayed&lt;/P&gt;&lt;P&gt;For Each g As Graphic In source&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If te1.Intersects(New TimeExtent(g.Attributes("Start"), g.Attributes("End"))) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count += 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;Next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where te1 is timeextent set on the MapView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code returns a considerably higher count than what is being displayed on the map.&lt;/P&gt;&lt;P&gt;The following code has a count of exactly what is being displayed.&lt;/P&gt;&lt;P&gt;For Each g As Graphic In source&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If te1.Intersects(g.Attributes("Start")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count += 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;Next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How does the layer determine what is within the time extent and is there a way to change it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 20:40:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226735#M2702</guid>
      <dc:creator>vincentvassallo</dc:creator>
      <dc:date>2014-12-05T20:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: .Net SDK show all points that are active in time extent</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226736#M2703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you see my answer to the similar question you posted here?&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/message/439107"&gt;Do graphics layers support the time extent property on the mapview. If so, how do i define the individual graphics time …&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 21:14:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226736#M2703</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2014-12-05T21:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: .Net SDK show all points that are active in time extent</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226737#M2704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh wait... sorry I just noticed you linked to it as well.&lt;/P&gt;&lt;P&gt;Time extent is defined via the attributes on the graphic. Set the attribute fields you define as start/end time.&lt;/P&gt;&lt;P&gt;ie&lt;/P&gt;&lt;P&gt;graphic.Attributes["Start"] = new DateTime(2014,12,5);&lt;/P&gt;&lt;P&gt;graphic.Attributes["End"] = new DateTime(2014,12,6);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note intersection is done including partial intersection, and not just fully within.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 21:16:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226737#M2704</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2014-12-05T21:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: .Net SDK show all points that are active in time extent</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226738#M2705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do have the attributes set on the graphic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example &lt;/P&gt;&lt;P&gt;graphic.Attributes["Start"] = new DateTime(2014,12,5,6,0,0) // Dec 5th 6AM&lt;/P&gt;&lt;P&gt;graphic.Attributes["End"] = new DateTime(2014,12,5,6,30,0) // Dec 5th 6:30AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The time Extent is set as binding. &lt;/P&gt;&lt;P&gt;But the object it is bound to is&lt;/P&gt;&lt;P&gt;CurrentTimeExtent = new TimeExtent(new DateTime(2014,12,5,5,58,0), new DateTime(2014,12,5,6,3,0)) // From 5:58 to 6:03&lt;/P&gt;&lt;P&gt;When it is defined like this it shows the point on the map correctly because the Start is within the time extent.&lt;/P&gt;&lt;P&gt;I have a timer the increases the start and endtime of the time extent by 5 minutes.&lt;/P&gt;&lt;P&gt;After the first tick when the time extent is now from 6:03 to 6:08 the point is not longer displayed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 21:37:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226738#M2705</guid>
      <dc:creator>vincentvassallo</dc:creator>
      <dc:date>2014-12-05T21:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: .Net SDK show all points that are active in time extent</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226739#M2706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Morten Nielsen wrote:&lt;/P&gt;&lt;P&gt;[...]&lt;/P&gt;&lt;P&gt;Note intersection is done including partial intersection, and not just fully within.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;That is exactly what I want it to do but it doesn't seem to be happening that way for me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 21:47:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226739#M2706</guid>
      <dc:creator>vincentvassallo</dc:creator>
      <dc:date>2014-12-05T21:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: .Net SDK show all points that are active in time extent</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226740#M2707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vincent,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately that's an identified bug that should be fixed in the next version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the inconvenience.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/Dominique&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 09:58:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226740#M2707</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2014-12-08T09:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: .Net SDK show all points that are active in time extent</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226741#M2708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That sucks. Is there any release timeline information anywhere?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 14:03:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226741#M2708</guid>
      <dc:creator>vincentvassallo</dc:creator>
      <dc:date>2014-12-08T14:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: .Net SDK show all points that are active in time extent</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226742#M2709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd just like to say that I can confirm that this is fixed as of 10.2.5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you everyone for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Feb 2015 15:32:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/net-sdk-show-all-points-that-are-active-in-time/m-p/226742#M2709</guid>
      <dc:creator>vincentvassallo</dc:creator>
      <dc:date>2015-02-11T15:32:04Z</dc:date>
    </item>
  </channel>
</rss>

