OpenCPN Partial API docs
|
Base class for implementing custom chart types in OpenCPN plugins. More...
#include <ocpn_plugin.h>
Public Member Functions | |
virtual wxString | GetFileSearchMask (void) |
Returns file pattern(s) for chart files this plugin can handle. | |
virtual int | Init (const wxString &full_path, int init_flags) |
Initializes a chart instance from a file. | |
virtual void | SetColorScheme (int cs, bool bApplyImmediate) |
Sets the color scheme for chart display. | |
virtual double | GetNormalScaleMin (double canvas_scale_factor, bool b_allow_overzoom) |
Returns the minimum recommended scale for this chart. | |
virtual double | GetNormalScaleMax (double canvas_scale_factor, int canvas_width) |
Returns the maximum recommended scale for this chart. | |
virtual double | GetNearestPreferredScalePPM (double target_scale_ppm) |
Returns the nearest preferred scale value for this chart. | |
virtual bool | GetChartExtent (ExtentPI *pext) |
Gets the geographic boundaries of the chart. | |
virtual wxBitmap & | RenderRegionView (const PlugIn_ViewPort &VPoint, const wxRegion &Region) |
Renders a region of the chart for display. | |
virtual bool | AdjustVP (PlugIn_ViewPort &vp_last, PlugIn_ViewPort &vp_proposed) |
Adjusts viewport parameters for chart-specific requirements. | |
virtual void | GetValidCanvasRegion (const PlugIn_ViewPort &VPoint, wxRegion *pValidRegion) |
Determines the valid display area for this chart. | |
virtual int | GetCOVREntries () |
Returns the number of coverage table entries for this chart. | |
virtual int | GetCOVRTablePoints (int iTable) |
Returns the number of points in a specific coverage table entry. | |
virtual int | GetCOVRTablenPoints (int iTable) |
Alternative method to get the number of points in a coverage table entry. | |
virtual float * | GetCOVRTableHead (int iTable) |
Returns a pointer to the coverage table data for a specific entry. | |
virtual wxBitmap * | GetThumbnail (int tnx, int tny, int cs) |
Generates a thumbnail image of the chart. | |
virtual wxString | GetFullPath () const |
Returns the full file path of the chart. | |
virtual ChartTypeEnumPI | GetChartType () |
Returns the chart type identifier. | |
virtual ChartFamilyEnumPI | GetChartFamily () |
Returns the chart family classification. | |
virtual OcpnProjTypePI | GetChartProjection () |
Returns the projection type used by the chart. | |
virtual wxString | GetName () |
Returns the chart's name or title. | |
virtual wxString | GetDescription () |
Returns a descriptive text about the chart. | |
virtual wxString | GetID () |
Returns a unique identifier for the chart. | |
virtual wxString | GetSE () |
Returns the chart's source edition identifier. | |
virtual wxString | GetDepthUnits () |
Returns the depth units used in the chart. | |
virtual wxString | GetSoundingsDatum () |
Returns the vertical datum used for soundings in the chart. | |
virtual wxString | GetDatumString () |
Returns the horizontal geodetic datum of the chart. | |
virtual wxString | GetExtraInfo () |
Returns additional information about the chart. | |
virtual wxString | GetPubDate () |
Returns the publication date/year of the chart. | |
virtual double | GetChartErrorFactor () |
Returns the error factor for the chart. | |
virtual ChartDepthUnitTypePI | GetDepthUnitId () |
Returns the depth unit type identifier. | |
virtual bool | IsReadyToRender () |
Indicates whether the chart is ready for rendering. | |
virtual int | GetNativeScale () |
Returns the native scale of the chart. | |
virtual double | GetChartSkew () |
Returns the skew/rotation angle of the chart. | |
virtual wxDateTime | GetEditionDate (void) |
Returns the edition date of the chart. | |
virtual void | ComputeSourceRectangle (const PlugIn_ViewPort &vp, wxRect *pSourceRect) |
Computes the source rectangle for the chart based on a given viewport. | |
virtual double | GetRasterScaleFactor () |
Returns the scale factor for raster chart rendering. | |
virtual bool | GetChartBits (wxRect &source, unsigned char *pPix, int sub_samp) |
Gets pixel data for a portion of a raster chart. | |
virtual int | GetSize_X () |
Gets the width of the chart in pixels. | |
virtual int | GetSize_Y () |
Gets the height of the chart in pixels. | |
virtual void | latlong_to_chartpix (double lat, double lon, double &pixx, double &pixy) |
Converts geographic coordinates to chart pixel coordinates. | |
virtual void | chartpix_to_latlong (double pixx, double pixy, double *plat, double *plon) |
Converts chart pixel coordinates to geographic coordinates. | |
Protected Attributes | |
ChartTypeEnumPI | m_ChartType |
ChartFamilyEnumPI | m_ChartFamily |
wxString | m_FullPath |
OcpnProjTypePI | m_projection |
int | m_Chart_Scale |
double | m_Chart_Skew |
wxDateTime | m_EdDate |
bool | m_bReadyToRender |
wxString | m_Name |
wxString | m_Description |
wxString | m_ID |
wxString | m_SE |
wxString | m_SoundingsDatum |
wxString | m_datum_str |
wxString | m_PubYear |
wxString | m_DepthUnits |
wxString | m_ExtraInfo |
ChartDepthUnitTypePI | m_depth_unit_id |
double | m_Chart_Error_Factor |
Base class for implementing custom chart types in OpenCPN plugins.
The PlugInChartBase class provides the interface between custom chart types implemented by plugins and OpenCPN's chart display and management system. Plugin developers can create derived classes to support custom chart formats, enabling the display of proprietary or specialized charts within OpenCPN.
When implementing a chart plugin, you need to:
Definition at line 445 of file ocpn_plugin.h.
PlugInChartBase::PlugInChartBase | ( | ) |
Definition at line 3438 of file pluginmanager.cpp.
|
virtual |
Definition at line 3440 of file pluginmanager.cpp.
|
virtual |
Adjusts viewport parameters for chart-specific requirements.
This method allows charts to modify proposed viewport changes before they are applied. It can be used to enforce chart-specific constraints or optimize display for particular chart types.
vp_last | Previous viewport parameters |
vp_proposed | Proposed new viewport parameters (may be modified) |
Definition at line 3465 of file pluginmanager.cpp.
|
virtual |
Converts chart pixel coordinates to geographic coordinates.
This method transforms a position in the chart's native pixel coordinate system into latitude and longitude.
pixx | X pixel coordinate |
pixy | Y pixel coordinate |
plat | Will receive latitude in decimal degrees |
plon | Will receive longitude in decimal degrees |
Definition at line 3500 of file pluginmanager.cpp.
|
virtual |
Computes the source rectangle for the chart based on a given viewport.
This method calculates the rectangle within the chart's source image that corresponds to the visible area in the given viewport. It is used primarily by raster chart plugins to determine which portion of the chart needs to be rendered for the current view.
vp | The viewport parameters defining the current view |
pSourceRect | Pointer to a wxRect that will be filled with the calculated source rectangle |
Definition at line 3483 of file pluginmanager.cpp.
|
virtual |
Gets pixel data for a portion of a raster chart.
This method retrieves bitmap data from the source chart image for a specified rectangular region. The data can be subsampled to support efficient chart display at different zoom levels.
source | Rectangle defining the region to extract in chart native coordinates |
pPix | Pointer to a pre-allocated buffer to receive the pixel data |
sub_samp | Subsampling factor:
|
Definition at line 3488 of file pluginmanager.cpp.
|
inlinevirtual |
Returns the error factor for the chart.
This method provides a scaling factor that represents the estimated positional error in the chart. It can be used to calculate accuracy at different scales.
Definition at line 965 of file ocpn_plugin.h.
|
virtual |
Gets the geographic boundaries of the chart.
This method provides the latitude and longitude limits of the chart, which OpenCPN uses to determine chart coverage, selection, and quilting. The extent should encompass all valid data in the chart.
pext | Pointer to an ExtentPI structure to be filled with boundary values:
|
Definition at line 3458 of file pluginmanager.cpp.
|
inlinevirtual |
Returns the chart family classification.
This method identifies the broader family category of the chart, grouping similar chart types. OpenCPN uses this for feature availability and rendering decisions.
Definition at line 805 of file ocpn_plugin.h.
|
inlinevirtual |
Returns the projection type used by the chart.
This method identifies the cartographic projection used in the chart. Different projections have different characteristics for representing the curved Earth on a flat surface.
Definition at line 825 of file ocpn_plugin.h.
|
inlinevirtual |
Returns the skew/rotation angle of the chart.
This method provides the rotation angle of the chart with respect to true north. It's used for proper alignment of the chart in the display.
Definition at line 1022 of file ocpn_plugin.h.
|
inlinevirtual |
Returns the chart type identifier.
This method identifies the general category of the chart, such as raster, vector, or other specialized types. OpenCPN uses this for chart management, display settings, and feature availability.
Definition at line 791 of file ocpn_plugin.h.
|
inlinevirtual |
Returns the number of coverage table entries for this chart.
This method reports how many distinct coverage regions the chart contains. Charts may have multiple valid regions within the lat/lon box described by the chart extent. For example:
Definition at line 675 of file ocpn_plugin.h.
|
inlinevirtual |
Returns a pointer to the coverage table data for a specific entry.
This method provides access to the actual coordinate data defining the boundary polygon of a coverage area. The data is stored as an array of float values, organized as lat/lon pairs.
iTable | Index of the coverage table entry (0 to GetCOVREntries()-1) |
Definition at line 726 of file ocpn_plugin.h.
|
inlinevirtual |
Alternative method to get the number of points in a coverage table entry.
This method is functionally identical to GetCOVRTablePoints() and exists for historical compatibility reasons.
iTable | Index of the coverage table entry (0 to GetCOVREntries()-1) |
Definition at line 705 of file ocpn_plugin.h.
|
inlinevirtual |
Returns the number of points in a specific coverage table entry.
This method reports how many coordinate pairs (lat/lon points) define the boundary polygon of a particular coverage area.
iTable | Index of the coverage table entry (0 to GetCOVREntries()-1) |
Definition at line 691 of file ocpn_plugin.h.
|
inlinevirtual |
Returns the horizontal geodetic datum of the chart.
This method identifies the reference coordinate system used for horizontal positioning in the chart, which affects coordinate transformations.
Definition at line 924 of file ocpn_plugin.h.
|
inlinevirtual |
Returns the depth unit type identifier.
This method provides an enumerated identifier for the depth units used in the chart, which can be used for programmatic unit conversions.
Definition at line 981 of file ocpn_plugin.h.
|
inlinevirtual |
Returns the depth units used in the chart.
This method identifies the units used for depth measurements in the chart, which is important for display and conversion purposes.
Definition at line 891 of file ocpn_plugin.h.
|
inlinevirtual |
Returns a descriptive text about the chart.
This method provides additional descriptive information about the chart, which OpenCPN displays in chart information panels and tooltips.
Definition at line 849 of file ocpn_plugin.h.
|
inlinevirtual |
Returns the edition date of the chart.
This method provides the date of the current edition or update of the chart, which can be used to identify the most recent version.
Definition at line 1035 of file ocpn_plugin.h.
|
inlinevirtual |
Returns additional information about the chart.
This method provides any extra information about the chart that doesn't fit into the other specific accessor methods. OpenCPN displays this in chart information panels.
Definition at line 938 of file ocpn_plugin.h.
|
virtual |
Returns file pattern(s) for chart files this plugin can handle.
This method is called by OpenCPN during chart directory scanning to identify which files should be examined by this chart type. The returned pattern is used with wxDir::GetAllFiles() to locate potential chart files.
Definition at line 3442 of file pluginmanager.cpp.
|
inlinevirtual |
Returns the full file path of the chart.
This method provides access to the complete file path of the chart as it was loaded. OpenCPN uses this for chart identification, database management, and subsequent loading operations.
Definition at line 768 of file ocpn_plugin.h.
|
inlinevirtual |
Returns a unique identifier for the chart.
This method provides a unique string identifier for the chart that can be used for database references and identification.
Definition at line 861 of file ocpn_plugin.h.
|
inlinevirtual |
Returns the chart's name or title.
This method provides the human-readable name of the chart as displayed in chart information panels, selection dialogs, and tooltips.
Definition at line 838 of file ocpn_plugin.h.
|
inlinevirtual |
Returns the native scale of the chart.
This method provides the natural or intended display scale of the chart, typically expressed as the scale denominator (e.g., 50000 for 1:50,000).
Definition at line 1009 of file ocpn_plugin.h.
|
virtual |
Returns the nearest preferred scale value for this chart.
This method allows charts to define preferred or standard scale points that OpenCPN should snap to when zooming. If your chart type doesn't have specific preferred scales, simply return the input value.
target_scale_ppm | Target scale in pixels per meter |
Definition at line 3475 of file pluginmanager.cpp.
|
virtual |
Returns the maximum recommended scale for this chart.
This method defines how far a user can zoom out before the chart is considered "under-zoomed" or too small to be useful. The value is expressed as a multiple of the chart's native scale. OpenCPN uses this for chart selection in quilt mode.
canvas_scale_factor | Current display scale factor |
canvas_width | Width of the display canvas in pixels |
Definition at line 3453 of file pluginmanager.cpp.
|
virtual |
Returns the minimum recommended scale for this chart.
This method defines how far a user can zoom in before the chart is considered "over-zoomed". The value is expressed as a fraction of the chart's native scale. OpenCPN uses this to determine when to display over-zoom indicators and to manage chart selection in quilt mode.
canvas_scale_factor | Current display scale factor |
b_allow_overzoom | Whether the user has enabled chart over-zoom in settings |
Definition at line 3448 of file pluginmanager.cpp.
|
inlinevirtual |
Returns the publication date/year of the chart.
This method provides the original publication date of the chart, which can be different from the edition date or file modification date.
Definition at line 951 of file ocpn_plugin.h.
|
virtual |
Returns the scale factor for raster chart rendering.
This method provides the scale factor needed to convert between the chart's native pixel resolution and the display resolution. It is used by OpenCPN to properly scale raster chart images during rendering.
Definition at line 3486 of file pluginmanager.cpp.
|
inlinevirtual |
Returns the chart's source edition identifier.
This method provides information about the source edition of the chart, which can be used to identify its origin and version.
Definition at line 875 of file ocpn_plugin.h.
|
virtual |
Gets the width of the chart in pixels.
This method returns the full width of the source chart image in pixels. This is used for coordinate transforms and display calculations.
Definition at line 3493 of file pluginmanager.cpp.
|
virtual |
Gets the height of the chart in pixels.
This method returns the full height of the source chart image in pixels. This is used for coordinate transforms and display calculations.
Definition at line 3495 of file pluginmanager.cpp.
|
inlinevirtual |
Returns the vertical datum used for soundings in the chart.
This method identifies the reference level used for depth measurements in the chart, which is important for navigational safety.
Definition at line 908 of file ocpn_plugin.h.
|
virtual |
Generates a thumbnail image of the chart.
This method creates a small preview image for the chart manager and chart selection interfaces. It should produce a representative, simplified view of the chart that helps users identify it.
tnx | Desired thumbnail width in pixels |
tny | Desired thumbnail height in pixels |
cs | Color scheme to use for rendering:
|
Definition at line 3479 of file pluginmanager.cpp.
|
virtual |
Determines the valid display area for this chart.
This method defines the region of the viewport where the chart has valid data. OpenCPN uses this information for chart quilting to determine where this chart should be displayed versus other charts.
VPoint | Current viewport parameters |
pValidRegion | Pointer to wxRegion to be filled with the valid area |
Definition at line 3470 of file pluginmanager.cpp.
|
virtual |
Initializes a chart instance from a file.
This method is called when OpenCPN needs to load a chart that matches the file search mask. It should parse the chart file's headers or content based on the initialization level requested and populate the chart object's properties.
full_path | Full path to the chart file to be loaded |
init_flags | Level of initialization to perform:
|
Definition at line 3444 of file pluginmanager.cpp.
|
inlinevirtual |
Indicates whether the chart is ready for rendering.
This method tells OpenCPN whether the chart has loaded sufficient data to be rendered. It can be used to defer rendering until asynchronous loading operations are complete.
Definition at line 996 of file ocpn_plugin.h.
|
virtual |
Converts geographic coordinates to chart pixel coordinates.
This method transforms a latitude/longitude position into the chart's native pixel coordinate system.
lat | Latitude in decimal degrees |
lon | Longitude in decimal degrees |
pixx | Will receive X pixel coordinate |
pixy | Will receive Y pixel coordinate |
Definition at line 3497 of file pluginmanager.cpp.
|
virtual |
Renders a region of the chart for display.
This is the primary rendering method called when the chart needs to be drawn. It should create and return a bitmap containing the rendered chart image for the specified view parameters and region.
VPoint | Current viewport parameters:
|
Region | wxRegion defining the area to be rendered (in screen coordinates) |
Definition at line 3460 of file pluginmanager.cpp.
|
virtual |
Sets the color scheme for chart display.
This method is called when the user changes OpenCPN's color scheme (day/dusk/night). Chart plugins should update their rendering colors and styles to match the specified scheme.
cs | Color scheme to use:
|
bApplyImmediate | True to immediately refresh display, False to defer |
Definition at line 3473 of file pluginmanager.cpp.
|
protected |
Definition at line 1163 of file ocpn_plugin.h.
|
protected |
Definition at line 1177 of file ocpn_plugin.h.
|
protected |
Definition at line 1159 of file ocpn_plugin.h.
|
protected |
Definition at line 1160 of file ocpn_plugin.h.
|
protected |
Definition at line 1155 of file ocpn_plugin.h.
|
protected |
Definition at line 1154 of file ocpn_plugin.h.
|
protected |
Definition at line 1170 of file ocpn_plugin.h.
|
protected |
Definition at line 1175 of file ocpn_plugin.h.
|
protected |
Definition at line 1172 of file ocpn_plugin.h.
|
protected |
Definition at line 1166 of file ocpn_plugin.h.
|
protected |
Definition at line 1162 of file ocpn_plugin.h.
|
protected |
Definition at line 1173 of file ocpn_plugin.h.
|
protected |
Definition at line 1157 of file ocpn_plugin.h.
|
protected |
Definition at line 1167 of file ocpn_plugin.h.
|
protected |
Definition at line 1165 of file ocpn_plugin.h.
|
protected |
Definition at line 1158 of file ocpn_plugin.h.
|
protected |
Definition at line 1171 of file ocpn_plugin.h.
|
protected |
Definition at line 1168 of file ocpn_plugin.h.
|
protected |
Definition at line 1169 of file ocpn_plugin.h.