There is 2 ways you can access and visualise your ODB data using Magics
- Using odb_filter to filter your ODB and odb_geopoints or odb_vectors to set-up the information needed by magics to visulise.
- odb_filter will create a smaller ODB data by applying an SQL request on your input ODB data . The result is a smaller odb with only the few columns needed for visualisation , typically lat/lon/value for Symbol plotting or lat/lon/u/v/value for wind or coloured wind plotting.
- odb_geopoints and odb_vectors can be seen as accessors of ODB data, explaining to Magics++ how to interpret the columns.
- Using the ODB python interface to select the needed columns as arrays, then can them be transformed in numpy arrays, eventually manipulated and passed to Magics for visualisation.
Quick links :
geo_odb | description | default | Your Selection | |
---|---|---|---|---|
New odb Access (Prototype Status) | ||||
odb_filename | odb Database Path | |||
odb_latitude_variable | odb Column name for the latitudes | lat | ||
odb_longitude_variable | odb Column name for the longitudes | lon | ||
odb_value_variable | odb Column name for the values | |||
odb_y_component_variable | odb Column name for the y component of a vector | |||
odb_x_component_variable | odb Column name for the x component of a vector | |||
odb_nb_rows | umber of rows to be retrieved | -1 | ||
odb_user_title | User defined title for automatic title | |||
odb_coordinates_unit | Coordinates unit used to define the location of the points (degrees/radians) | degrees | ||
odb_binning | Information for the binning (degrees/radians) | off |
xy_odb | description | default | Your Selection | |
---|---|---|---|---|
New odb Access (Prototype Status) | ||||
odb_filename | odb Database Path | |||
odb_x_variable | odb Column name for the x coordinates | lat | ||
odb_y_variable | odb Column name for the y coordinates | lon | ||
odb_value_variable | odb Column name for the values | |||
odb_y_component_variable | odb Column name for the y component of a vector | |||
odb_x_component_variable | odb Column name for the x component of a vector | |||
odb_nb_rows | umber of rows to be retrieved | -1 | ||
odb_user_title | User defined title for automatic title | |||
odb_binning | Information for the binning (degrees/radians) | off |
undefined likes this