Kinetica C# API
Version 7.2.3.0
|
A set of parameters for Kinetica.createVideo. More...
Classes | |
struct | Options |
A set of string constants for the parameter options. More... | |
struct | Style |
A set of string constants for the parameter style. More... | |
Public Member Functions | |
CreateVideoRequest () | |
Constructs a CreateVideoRequest object with default parameters. More... | |
CreateVideoRequest (string attribute, string begin, double duration_seconds, string end, double frames_per_second, string style, string path, string style_parameters, IDictionary< string, string > options=null) | |
Constructs a CreateVideoRequest object with the specified parameters. More... | |
![]() | |
KineticaData (KineticaType type) | |
Constructor from Kinetica Type More... | |
KineticaData (System.Type type=null) | |
Default constructor, with optional System.Type More... | |
object | Get (int fieldPos) |
Retrieve a specific property from this object More... | |
void | Put (int fieldPos, object fieldValue) |
Write a specific property to this object More... | |
Properties | |
string | attribute [get, set] |
The animated attribute to map to the video's frames. More... | |
string | begin [get, set] |
The start point for the video. More... | |
double | duration_seconds [get, set] |
Seconds of video to produce More... | |
string | end [get, set] |
The end point for the video. More... | |
double | frames_per_second [get, set] |
The presentation frame rate of the encoded video in frames per second. More... | |
string | style [get, set] |
The name of the visualize mode; should correspond to the schema used for the style_parameters field. More... | |
string | path [get, set] |
Fully-qualified KiFS path. More... | |
string | style_parameters [get, set] |
A string containing the JSON-encoded visualize request. More... | |
IDictionary< string, string > | options = new Dictionary<string, string>() [get, set] |
Optional parameters. More... | |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
Additional Inherited Members | |
![]() | |
static ? RecordSchema | SchemaFromType (System.Type t, KineticaType? ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of parameters for Kinetica.createVideo.
Creates a job to generate a sequence of raster images that visualize data over a specified time.
Definition at line 16 of file CreateVideo.cs.
|
inline |
Constructs a CreateVideoRequest object with default parameters.
Definition at line 219 of file CreateVideo.cs.
|
inline |
Constructs a CreateVideoRequest object with the specified parameters.
attribute | The animated attribute to map to the video's frames. Must be present in the LAYERS specified for the visualization. This is often a time-related field but may be any numeric type. |
begin | The start point for the video. Accepts an expression evaluable over the attribute . |
duration_seconds | Seconds of video to produce |
end | The end point for the video. Accepts an expression evaluable over the attribute . |
frames_per_second | The presentation frame rate of the encoded video in frames per second. |
style | The name of the visualize mode; should correspond to the schema used for the style_parameters field. Supported values: |
path | Fully-qualified KiFS path. Write access is required. A file must not exist at that path, unless REPLACE_IF_EXISTS is TRUE. |
style_parameters | A string containing the JSON-encoded visualize request. Must correspond to the visualize mode specified in the style field. |
options | Optional parameters.
|
Definition at line 331 of file CreateVideo.cs.
|
getset |
The animated attribute to map to the video's frames.
Must be present in the LAYERS specified for the visualization. This is often a time-related field but may be any numeric type.
Definition at line 94 of file CreateVideo.cs.
|
getset |
The start point for the video.
Accepts an expression evaluable over the attribute.
Definition at line 99 of file CreateVideo.cs.
|
getset |
Seconds of video to produce
Definition at line 102 of file CreateVideo.cs.
|
getset |
The end point for the video.
Accepts an expression evaluable over the attribute.
Definition at line 107 of file CreateVideo.cs.
|
getset |
The presentation frame rate of the encoded video in frames per second.
Definition at line 111 of file CreateVideo.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 215 of file CreateVideo.cs.
|
getset |
Fully-qualified KiFS path.
Write access is required. A file must not exist at that path, unless REPLACE_IF_EXISTS is TRUE.
Definition at line 145 of file CreateVideo.cs.
|
getset |
The name of the visualize mode; should correspond to the schema used for the style_parameters field.
Supported values:
Definition at line 137 of file CreateVideo.cs.
|
getset |
A string containing the JSON-encoded visualize request.
Must correspond to the visualize mode specified in the style field.
Definition at line 151 of file CreateVideo.cs.