<?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 Tracking the International Space Station in Streaming Analytics</title>
    <link>https://communities.sas.com/t5/Streaming-Analytics/Tracking-the-International-Space-Station/m-p/679700#M220</link>
    <description>&lt;P&gt;The Tracking the International Space Station, an Introduction to Geofences ESP example is a fun way to learn how a geofence works. In this example you will get an introduction to the Geofence window including:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;How to define areas of interest for a geofence&lt;/LI&gt;
&lt;LI&gt;How to use the geofence window to detect a position within a circle&lt;/LI&gt;
&lt;LI&gt;How to use position proximity analysis to detect a position’s proximity to a polygon&lt;/LI&gt;
&lt;LI&gt;How to create a GEO Map in SAS ESP Streamviewer&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;&amp;nbsp;&lt;/H2&gt;
&lt;H2&gt;International Space Station&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="iss2.jpg" style="width: 960px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48694i334D0D99428B2B82/image-size/large?v=v2&amp;amp;px=999" role="button" title="iss2.jpg" alt="iss2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The International Space Station (ISS) is a modular space station in low Earth orbit. It maintains an altitude of 251 miles and completes an orbit of the Earth in about 93 minutes. The ISS makes 15.54 orbits per day and is travelling at 7.66 km/s (27,600 km/h; 17,100 mph). The API used by this project publishes the latitude and longitude of the ISS every 10 seconds.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Geofence Overview&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A geofence is a virtual perimeter for a real-world geographic area. The geofence can be defined in one of three ways:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Set of coordinates with a radius (circle)&lt;/LI&gt;
&lt;LI&gt;Multiple sets of coordinates defining a bounding box (polygon)&lt;/LI&gt;
&lt;LI&gt;Multiple sets of coordinates defining a trip wire (polyline)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;This example demonstrates the use of circles and ploygons to define areas of interest.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="geofence.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48695iF75CCC1A343071EB/image-size/large?v=v2&amp;amp;px=999" role="button" title="geofence.png" alt="geofence.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A geofence window requires two data sources as input. The position source window streams the geographic positions of one or more objects. The geometries source window provides definitions for areas of interest (geometries).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The geofence window functions like an outer join. When the coordinates for an event from the position source window is inside the definition of an area of interest, an output event is generated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Circles&lt;/H3&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You use a set of coordinates and a radius to define a circle around an area of interest. You can use Cartesian (X,Y) or geographic (lat,long) coordinates. The radius is specified in meters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following are examples of circle definitions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;ID,Name,Lat,Long,Radius&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;1,Eiffel Tower,48.8584,2.2945,1500000&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2,Colosseum,41.8902,12.4922,1750000&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;3,Statue of Liberty,40.6892,-74.0445,1500000&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the position of an object is outside the circle, the geofence window will not generate an output event. However, if the position is within the radius of the circle, an output event is created and the distance to the center of the circle is calculated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="in_out_radius.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48696iDF04822AC0B3907C/image-size/large?v=v2&amp;amp;px=999" role="button" title="in_out_radius.png" alt="in_out_radius.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Polygon&lt;/H3&gt;
&lt;P&gt;You can also define a bounding box or polygon as your area of interest. A polygon is defined as multiple sets of coordinates that from a closed ring. This is done by using the same set of coordinates for the first and last entry of a definition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since each polygon will probably have a different number of coordinate sets, a single field can be used to specify all sets of coordinates. This field is referred to as datadef and is a string using spaces as delimiters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following is an example of a polygon definition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;ID,Name,Datadef&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;1,Poly1, “5.281 9.455 3.607 7.112 6.268 6.181 8.414 7.705 5.281 9.455 “&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;During normal operation, the geofence window outputs an event when the object is within the confines of the polygon. If the object is outside the polygon, no output event is generated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="in_out_polygon.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48697iFD37B3784E466DDE/image-size/large?v=v2&amp;amp;px=999" role="button" title="in_out_polygon.png" alt="in_out_polygon.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Position Proximity Analysis&lt;/H3&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Position proximity analysis is an option that determines the proximity of an object to the closest segment of the polygon. When position proximity analysis is set to true, the geofence window outputs an event when the object is either inside the polygon, or within the radius defined as the proximity.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the object is inside the proximity radius, the distance to the nearest polygon segment is calculated and output as a positive number. If the object is inside the polygon, the distance to the nearest polygon segment is again calculated, but output as a negative number.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="proximity.png" style="width: 890px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48698i0AC64CC1E2ED47EB/image-size/large?v=v2&amp;amp;px=999" role="button" title="proximity.png" alt="proximity.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;GEO Maps&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following GEO Maps were created using SAS ESP Streamviewer. The first example shows a GEO Map subscribed to the &lt;STRONG&gt;iss&lt;/STRONG&gt; Source window. It is a simple display of the current latitude and longitude of the ISS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="iss.png" style="width: 818px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48699iC91E74FA394D37D0/image-size/large?v=v2&amp;amp;px=999" role="button" title="iss.png" alt="iss.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This next example shows a GEO Map subscribed to a Geofence window using circles as the geometry. The distance to the center point of the circle is illustrated by both the color and size of the circles. The ISS is crossing Abuja, Nigeria. The circle displayed goes form orange to cyan and gets smaller as the ISS approaches. It turns from cyan to orange and gets larger as the ISS departs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="geocircle.png" style="width: 830px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48700i37A6DB7FCE389B22/image-size/large?v=v2&amp;amp;px=999" role="button" title="geocircle.png" alt="geocircle.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This last example shows a GEO Map subscribed to a Geofence window performing position proximity analysis. The ISS has just left Russia and is crossing Mongolia into China. The orange circle represents the proximity to Russia getting further away, while the cyan circle represents the proximity to China.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="geoprox.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48701i1F6A33FAB8269C0F/image-size/large?v=v2&amp;amp;px=999" role="button" title="geoprox.png" alt="geoprox.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Summary&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Tracking the ISS, an Introduction to Geofences ESP example show you several ways to use the Geofence window to track an object. Refer to the &lt;A href="https://github.com/sassoftware/iot-tracking-the-iss" target="_self"&gt;GitHub&lt;/A&gt; page for this example to get additional information.&lt;/P&gt;</description>
    <pubDate>Thu, 27 Aug 2020 12:28:35 GMT</pubDate>
    <dc:creator>zephstemle</dc:creator>
    <dc:date>2020-08-27T12:28:35Z</dc:date>
    <item>
      <title>Tracking the International Space Station</title>
      <link>https://communities.sas.com/t5/Streaming-Analytics/Tracking-the-International-Space-Station/m-p/679700#M220</link>
      <description>&lt;P&gt;The Tracking the International Space Station, an Introduction to Geofences ESP example is a fun way to learn how a geofence works. In this example you will get an introduction to the Geofence window including:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;How to define areas of interest for a geofence&lt;/LI&gt;
&lt;LI&gt;How to use the geofence window to detect a position within a circle&lt;/LI&gt;
&lt;LI&gt;How to use position proximity analysis to detect a position’s proximity to a polygon&lt;/LI&gt;
&lt;LI&gt;How to create a GEO Map in SAS ESP Streamviewer&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;&amp;nbsp;&lt;/H2&gt;
&lt;H2&gt;International Space Station&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="iss2.jpg" style="width: 960px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48694i334D0D99428B2B82/image-size/large?v=v2&amp;amp;px=999" role="button" title="iss2.jpg" alt="iss2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The International Space Station (ISS) is a modular space station in low Earth orbit. It maintains an altitude of 251 miles and completes an orbit of the Earth in about 93 minutes. The ISS makes 15.54 orbits per day and is travelling at 7.66 km/s (27,600 km/h; 17,100 mph). The API used by this project publishes the latitude and longitude of the ISS every 10 seconds.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Geofence Overview&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A geofence is a virtual perimeter for a real-world geographic area. The geofence can be defined in one of three ways:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Set of coordinates with a radius (circle)&lt;/LI&gt;
&lt;LI&gt;Multiple sets of coordinates defining a bounding box (polygon)&lt;/LI&gt;
&lt;LI&gt;Multiple sets of coordinates defining a trip wire (polyline)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;This example demonstrates the use of circles and ploygons to define areas of interest.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="geofence.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48695iF75CCC1A343071EB/image-size/large?v=v2&amp;amp;px=999" role="button" title="geofence.png" alt="geofence.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A geofence window requires two data sources as input. The position source window streams the geographic positions of one or more objects. The geometries source window provides definitions for areas of interest (geometries).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The geofence window functions like an outer join. When the coordinates for an event from the position source window is inside the definition of an area of interest, an output event is generated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Circles&lt;/H3&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You use a set of coordinates and a radius to define a circle around an area of interest. You can use Cartesian (X,Y) or geographic (lat,long) coordinates. The radius is specified in meters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following are examples of circle definitions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;ID,Name,Lat,Long,Radius&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;1,Eiffel Tower,48.8584,2.2945,1500000&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;2,Colosseum,41.8902,12.4922,1750000&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;3,Statue of Liberty,40.6892,-74.0445,1500000&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the position of an object is outside the circle, the geofence window will not generate an output event. However, if the position is within the radius of the circle, an output event is created and the distance to the center of the circle is calculated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="in_out_radius.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48696iDF04822AC0B3907C/image-size/large?v=v2&amp;amp;px=999" role="button" title="in_out_radius.png" alt="in_out_radius.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Polygon&lt;/H3&gt;
&lt;P&gt;You can also define a bounding box or polygon as your area of interest. A polygon is defined as multiple sets of coordinates that from a closed ring. This is done by using the same set of coordinates for the first and last entry of a definition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since each polygon will probably have a different number of coordinate sets, a single field can be used to specify all sets of coordinates. This field is referred to as datadef and is a string using spaces as delimiters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following is an example of a polygon definition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;ID,Name,Datadef&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;1,Poly1, “5.281 9.455 3.607 7.112 6.268 6.181 8.414 7.705 5.281 9.455 “&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;During normal operation, the geofence window outputs an event when the object is within the confines of the polygon. If the object is outside the polygon, no output event is generated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="in_out_polygon.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48697iFD37B3784E466DDE/image-size/large?v=v2&amp;amp;px=999" role="button" title="in_out_polygon.png" alt="in_out_polygon.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Position Proximity Analysis&lt;/H3&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Position proximity analysis is an option that determines the proximity of an object to the closest segment of the polygon. When position proximity analysis is set to true, the geofence window outputs an event when the object is either inside the polygon, or within the radius defined as the proximity.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the object is inside the proximity radius, the distance to the nearest polygon segment is calculated and output as a positive number. If the object is inside the polygon, the distance to the nearest polygon segment is again calculated, but output as a negative number.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="proximity.png" style="width: 890px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48698i0AC64CC1E2ED47EB/image-size/large?v=v2&amp;amp;px=999" role="button" title="proximity.png" alt="proximity.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;GEO Maps&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following GEO Maps were created using SAS ESP Streamviewer. The first example shows a GEO Map subscribed to the &lt;STRONG&gt;iss&lt;/STRONG&gt; Source window. It is a simple display of the current latitude and longitude of the ISS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="iss.png" style="width: 818px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48699iC91E74FA394D37D0/image-size/large?v=v2&amp;amp;px=999" role="button" title="iss.png" alt="iss.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This next example shows a GEO Map subscribed to a Geofence window using circles as the geometry. The distance to the center point of the circle is illustrated by both the color and size of the circles. The ISS is crossing Abuja, Nigeria. The circle displayed goes form orange to cyan and gets smaller as the ISS approaches. It turns from cyan to orange and gets larger as the ISS departs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="geocircle.png" style="width: 830px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48700i37A6DB7FCE389B22/image-size/large?v=v2&amp;amp;px=999" role="button" title="geocircle.png" alt="geocircle.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This last example shows a GEO Map subscribed to a Geofence window performing position proximity analysis. The ISS has just left Russia and is crossing Mongolia into China. The orange circle represents the proximity to Russia getting further away, while the cyan circle represents the proximity to China.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="geoprox.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48701i1F6A33FAB8269C0F/image-size/large?v=v2&amp;amp;px=999" role="button" title="geoprox.png" alt="geoprox.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Summary&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Tracking the ISS, an Introduction to Geofences ESP example show you several ways to use the Geofence window to track an object. Refer to the &lt;A href="https://github.com/sassoftware/iot-tracking-the-iss" target="_self"&gt;GitHub&lt;/A&gt; page for this example to get additional information.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Aug 2020 12:28:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Streaming-Analytics/Tracking-the-International-Space-Station/m-p/679700#M220</guid>
      <dc:creator>zephstemle</dc:creator>
      <dc:date>2020-08-27T12:28:35Z</dc:date>
    </item>
  </channel>
</rss>

