Kinetica   C#   API  Version 7.2.3.0
FilterBySeries.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 namespace kinetica
10 {
29  {
33  public struct Options
34  {
49  public const string CREATE_TEMP_TABLE = "create_temp_table";
50 
51  public const string TRUE = "true";
52  public const string FALSE = "false";
53 
61  public const string COLLECTION_NAME = "collection_name";
62 
68  public const string SPATIAL_RADIUS = "spatial_radius";
69 
75  public const string TIME_RADIUS = "time_radius";
76 
90  public const string SPATIAL_DISTANCE_METRIC = "spatial_distance_metric";
91 
92  public const string EUCLIDEAN = "euclidean";
93  public const string GREAT_CIRCLE = "great_circle";
94  } // end struct Options
95 
103  public string table_name { get; set; }
104 
113  public string view_name { get; set; } = "";
114 
119  public string track_id { get; set; }
120 
125  public IList<string> target_track_ids { get; set; } = new List<string>();
126 
205  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
206 
210 
314  string view_name,
315  string track_id,
316  IList<string> target_track_ids,
317  IDictionary<string, string> options = null)
318  {
319  this.table_name = table_name ?? "";
320  this.view_name = view_name ?? "";
321  this.track_id = track_id ?? "";
322  this.target_track_ids = target_track_ids ?? new List<string>();
323  this.options = options ?? new Dictionary<string, string>();
324  } // end constructor
325  } // end class FilterBySeriesRequest
326 
331  {
335  public struct Info
336  {
339  public const string QUALIFIED_VIEW_NAME = "qualified_view_name";
340  } // end struct Info
341 
343  public long count { get; set; }
344 
356  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
357  } // end class FilterBySeriesResponse
358 } // end namespace kinetica
string table_name
Name of the table on which the filter by track operation will be performed, in [schema_name.
const string SPATIAL_RADIUS
A positive number passed as a string representing the radius of the search area centered around each ...
const string QUALIFIED_VIEW_NAME
The fully qualified name of the view (i.e.
const string SPATIAL_DISTANCE_METRIC
A string representing the coordinate system to use for the spatial search criteria.
A set of results returned by Kinetica.filterBySeries.
string view_name
If provided, then this will be the name of the view containing the results, in [schema_name.
FilterBySeriesRequest(string table_name, string view_name, string track_id, IList< string > target_track_ids, IDictionary< string, string > options=null)
Constructs a FilterBySeriesRequest object with the specified parameters.
A set of string constants for the parameter options.
A set of parameters for Kinetica.filterBySeries.
string track_id
The ID of the track which will act as the filtering points.
long count
The number of records passing the series filter.
const string CREATE_TEMP_TABLE
If TRUE, a unique temporary table name will be generated in the sys_temp schema and used in place of ...
IDictionary< string, string > options
Optional parameters.
IList< string > target_track_ids
Up to one track ID to intersect with the "filter" track.
IDictionary< string, string > info
Additional information.
FilterBySeriesRequest()
Constructs a FilterBySeriesRequest object with default parameters.
const string COLLECTION_NAME
[DEPRECATED–please specify the containing schema for the view as part of view_name and use Kinetica....
A set of string constants for the parameter info.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
const string TIME_RADIUS
A positive number passed as a string representing the maximum allowable time difference between the t...