Kinetica C# API  Version 6.2.0.1
VisualizeImage.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 
10 
11 namespace kinetica
12 {
19  public class VisualizeImageRequest : KineticaData
20  {
21 
66  public struct Projection
67  {
68  public const string EPSG_4326 = "EPSG:4326";
69  public const string PLATE_CARREE = "PLATE_CARREE";
70  public const string _900913 = "900913";
71  public const string EPSG_900913 = "EPSG:900913";
72  public const string _102100 = "102100";
73  public const string EPSG_102100 = "EPSG:102100";
74  public const string _3857 = "3857";
75  public const string EPSG_3857 = "EPSG:3857";
76  public const string WEB_MERCATOR = "WEB_MERCATOR";
77  } // end struct Projection
78 
79 
399  public struct StyleOptions
400  {
401 
416  public const string DO_POINTS = "do_points";
417  public const string TRUE = "true";
418  public const string FALSE = "false";
419 
434  public const string DO_SHAPES = "do_shapes";
435 
450  public const string DO_TRACKS = "do_tracks";
451 
466  public const string DO_SYMBOLOGY = "do_symbology";
467  public const string POINTCOLORS = "pointcolors";
468 
470  public const string POINTSIZES = "pointsizes";
471 
473  public const string POINTOFFSET_X = "pointoffset_x";
474 
476  public const string POINTOFFSET_Y = "pointoffset_y";
477 
516  public const string POINTSHAPES = "pointshapes";
517  public const string NONE = "none";
518  public const string CIRCLE = "circle";
519  public const string SQUARE = "square";
520  public const string DIAMOND = "diamond";
521  public const string HOLLOWCIRCLE = "hollowcircle";
522  public const string HOLLOWSQUARE = "hollowsquare";
523  public const string HOLLOWDIAMOND = "hollowdiamond";
524  public const string SYMBOLCODE = "SYMBOLCODE";
525 
527  public const string SYMBOLROTATIONS = "symbolrotations";
528 
530  public const string SHAPELINEWIDTHS = "shapelinewidths";
531 
533  public const string SHAPELINECOLORS = "shapelinecolors";
534 
536  public const string SHAPELINEPATTERNS = "shapelinepatterns";
537 
539  public const string SHAPELINEPATTERNLEN = "shapelinepatternlen";
540 
542  public const string SHAPEFILLCOLORS = "shapefillcolors";
543 
545  public const string HASHLINEINTERVALS = "hashlineintervals";
546 
549  public const string HASHLINECOLORS = "hashlinecolors";
550 
552  public const string HASHLINEANGLES = "hashlineangles";
553 
555  public const string HASHLINELENS = "hashlinelens";
556 
558  public const string HASHLINEWIDTHS = "hashlinewidths";
559 
561  public const string TRACKLINEWIDTHS = "tracklinewidths";
562 
564  public const string TRACKLINECOLORS = "tracklinecolors";
565 
567  public const string TRACKMARKERSIZES = "trackmarkersizes";
568 
570  public const string TRACKMARKERCOLORS = "trackmarkercolors";
571 
618  public const string TRACKMARKERSHAPES = "trackmarkershapes";
619  public const string ORIENTED_ARROW = "oriented_arrow";
620  public const string ORIENTED_TRIANGLE = "oriented_triangle";
621 
623  public const string TRACKHEADCOLORS = "trackheadcolors";
624 
626  public const string TRACKHEADSIZES = "trackheadsizes";
627 
666  public const string TRACKHEADSHAPES = "trackheadshapes";
667  } // end struct StyleOptions
668 
669  public IList<string> table_names { get; set; } = new List<string>();
670  public IList<string> world_table_names { get; set; } = new List<string>();
671  public string x_column_name { get; set; }
672  public string y_column_name { get; set; }
673  public string geometry_column_name { get; set; }
674  public IList<IList<string>> track_ids { get; set; } = new List<IList<string>>();
675  public double min_x { get; set; }
676  public double max_x { get; set; }
677  public double min_y { get; set; }
678  public double max_y { get; set; }
679  public int width { get; set; }
680  public int height { get; set; }
681 
724  public string projection { get; set; } = Projection.PLATE_CARREE;
725  public long bg_color { get; set; }
726 
1044  public IDictionary<string, IList<string>> style_options { get; set; } = new Dictionary<string, IList<string>>();
1045  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
1046 
1047 
1050  public VisualizeImageRequest() { }
1051 
1429  public VisualizeImageRequest( IList<string> table_names,
1430  IList<string> world_table_names,
1431  string x_column_name,
1432  string y_column_name,
1433  string geometry_column_name,
1434  IList<IList<string>> track_ids,
1435  double min_x,
1436  double max_x,
1437  double min_y,
1438  double max_y,
1439  int width,
1440  int height,
1441  string projection,
1442  long bg_color,
1443  IDictionary<string, IList<string>> style_options,
1444  IDictionary<string, string> options = null)
1445  {
1446  this.table_names = table_names ?? new List<string>();
1447  this.world_table_names = world_table_names ?? new List<string>();
1448  this.x_column_name = x_column_name ?? "";
1449  this.y_column_name = y_column_name ?? "";
1450  this.geometry_column_name = geometry_column_name ?? "";
1451  this.track_ids = track_ids ?? new List<IList<string>>();
1452  this.min_x = min_x;
1453  this.max_x = max_x;
1454  this.min_y = min_y;
1455  this.max_y = max_y;
1456  this.width = width;
1457  this.height = height;
1458  this.projection = projection ?? Projection.PLATE_CARREE;
1459  this.bg_color = bg_color;
1460  this.style_options = style_options ?? new Dictionary<string, IList<string>>();
1461  this.options = options ?? new Dictionary<string, string>();
1462  } // end constructor
1463 
1464  } // end class VisualizeImageRequest
1466 
1467 
1468 
1473  public class VisualizeImageResponse : KineticaData
1474  {
1475  public double width { get; set; }
1476  public double height { get; set; }
1477  public long bg_color { get; set; }
1478  public byte[] image_data { get; set; }
1479 
1480  } // end class VisualizeImageResponse
1482 
1483 
1484 
1485 
1486 
1487 } // end namespace kinetica