Query data using a time extent.
Use case
This workflow can be used to return records that are between a specified start and end date. For example, records of Canada goose sightings over time could be queried to only show sightings during the winter migration time period.
How to use the sample
Run the sample, and a subset of records will be displayed on the map.
How it works
- An instance of
ServiceFeatureTable
is created by passing a URL to the REST endpoint of a time-enabled service. Time-enabled services will have TimeInfo defined in the service description. This information is specified in ArcMap or ArcGIS Pro prior to publishing the service. - The feature request mode of the
ServiceFeatureTable
is set toManualCache
, so that the developer can control how and when the feature table is populated with data. - A
FeatureLayer
is created by passing in the instance of theServiceFeatureTable
. - A
TimeExtent
object is created by specifying start and end date/time objects. - A
QueryParmaters
object is created with theTimeExtent
. ServiceFeatureTable.PopulateFromService
is executed by passing in theQueryParameters
.- The feature table is populated with data that matches the provided query.
Relevant API
- QueryParameters
- ServiceFeatureTable.PopulateFromService
- TimeExtent
About the data
This sample uses Atlantic hurricane data from the year 2000. The data is from the National Hurricane Center (NOAA / National Weather Service).
Tags
query, time, time extent
Sample Code
<UserControl
x:Class="ArcGIS.UWP.Samples.TimeBasedQuery.TimeBasedQuery"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esriUI="using:Esri.ArcGISRuntime.UI.Controls">
<Grid>
<esriUI:MapView x:Name="MyMapView" />
</Grid>
</UserControl>