The CreateBorder process adds a border to a chart panel. The chart can be a database or a standalone PCC chart.
Input
HPD URI containing the Chart Version ID, Project ID, and a Panel Number. Standalone chart containing a Chart Version ID and a Panel Number.
Note that the Chart Version ID is always set to 1 for standalone charts.
Output
Same chart with a panel border.
Command Line Syntax
carisbatch --run CreateBorder --border-style-definition-file <value> --border-style-name <value> [options] <input>
Options
Long | Short | Description | Can Repeat | Notes |
|---|---|---|---|---|
--border-style-definition-file | -D | Path and file name of the border style definition file. | FALSE | Required |
--border-style-name | -N | Name of the border style applied to the panel. | FALSE | Required |
--scale-bar-scaling-latitude | -L | Scale bar scaling latitude in decimal degrees. | FALSE | Optional |
Example
Database Chart | ||
Objective | Add an IHO_E border to panel 1 of a database chart. The chart has scaling latitude of 43.607. | |
Description | Command Line Syntax | |
Location of the border definition file. | C:\Program Files\CARIS\HPD\<version>\system\PCEConfig\IH_BorderStyles.bsd" | |
Database chart to which the border is being applied. | hpd://username:password@ | |
Command Line | carisbatch --run CreateBorder --border-style-definition-file "C:\Program Files\CARIS\HPD\<version>\system\PCEConfig\IH_BorderStyles.bsd" --border-style-name "IHO_E" --scale-bar-scaling-latitude "43.607" hpd://username:password@ | |
Result | An IHO_E border is added panel 1 in chart 4. | |
Standalone Chart | ||
Objective | Add an IHO_E border to panel 1 of a standalone chart. The chart has a scaling latitude of 43.607. | |
Description | Command Line Syntax | |
Location of the border definition file. | C:\Program Files\CARIS\HPD\<version>\system\PCEConfig\IH_BorderStyles.bsd" | |
Standalone chart to which the border is being applied. | D:/AllMyCharts/MyChart.pcc?ChartVersionId=1?PanelNumber=1 | |
Command Line | carisbatch --run CreateBorder --border-style-definition-file "C:\Program Files\CARIS\HPD\<version>\system\PCEConfig\IH_BorderStyles.bsd" --border-style-name "IHO_E" --scale-bar-scaling-latitude "43.607" file:///D:/AllMyCharts/MyChart.pcc?ChartVersionId=1?PanelNumber=1 | |