 | CCHIMERARosePlot Method |
Plot a Rose plot of up to 8 channels.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void RosePlot(
CMVIEW mview,
string data_group,
string offset_group,
CVV xvv,
CVV yvv,
CVV dvv,
CVV cvv,
int col,
int offset,
double offset_size
)
public static void RosePlot(
CMVIEW mview,
string data_group,
string offset_group,
CVV xvv,
CVV yvv,
CVV dvv,
CVV cvv,
int col,
int offset,
double offset_size
)
Public Shared Sub RosePlot (
mview As CMVIEW,
data_group As String,
offset_group As String,
xvv As CVV,
yvv As CVV,
dvv As CVV,
cvv As CVV,
col As Integer,
offset As Integer,
offset_size As Double
)
Public Shared Sub RosePlot (
mview As CMVIEW,
data_group As String,
offset_group As String,
xvv As CVV,
yvv As CVV,
dvv As CVV,
cvv As CVV,
col As Integer,
offset As Integer,
offset_size As Double
)
public:
static void RosePlot(
CMVIEW^ mview,
String^ data_group,
String^ offset_group,
CVV^ xvv,
CVV^ yvv,
CVV^ dvv,
CVV^ cvv,
int col,
int offset,
double offset_size
)
public:
static void RosePlot(
CMVIEW^ mview,
String^ data_group,
String^ offset_group,
CVV^ xvv,
CVV^ yvv,
CVV^ dvv,
CVV^ cvv,
int col,
int offset,
double offset_size
)
static member RosePlot :
mview : CMVIEW *
data_group : string *
offset_group : string *
xvv : CVV *
yvv : CVV *
dvv : CVV *
cvv : CVV *
col : int *
offset : int *
offset_size : float -> unit
static member RosePlot :
mview : CMVIEW *
data_group : string *
offset_group : string *
xvv : CVV *
yvv : CVV *
dvv : CVV *
cvv : CVV *
col : int *
offset : int *
offset_size : float -> unit
Parameters
- mview
- Type: GeoEngine.Core.GXNetCMVIEW
View object to plot to - data_group
- Type: SystemString
Data group name - offset_group
- Type: SystemString
Offset group name - xvv
- Type: GeoEngine.Core.GXNetCVV
X locations - yvv
- Type: GeoEngine.Core.GXNetCVV
Y locations - dvv
- Type: GeoEngine.Core.GXNetCVV
Data handles, stored as INT values - cvv
- Type: GeoEngine.Core.GXNetCVV
Colors - col
- Type: SystemInt32
Color for edges - offset
- Type: SystemInt32
Offset symbols (0: No, 1: Yes) - offset_size
- Type: SystemDouble
Offset symbol size
Remarks
The number of channels is taken from the Data handles VV.
The values in each data VV give the radius, in view units,
of the sector arc to plots. Values <=0 or dummies are not
plotted.
Offset symbols: When selected, the symbols plot without
overlap, away from the original locations. The original
location is marked with a small symbol and a line joins the
original position and the relocated symbol.
Care should be taken when choosing the symbol size, because
if the point density is too high, all the points will get
pushed to the outside edge and your plot will look like a
hedgehog (it also takes a lot longer!).
See Also