 | CMVUTrndPath Method |
Plot min and max trend lines.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void TrndPath(
CGXNETCore gxNetShared,
CMVIEW mview,
CVV vv_x,
CVV vv_y,
int min_sect,
double min_dist
)
public static void TrndPath(
CGXNETCore gxNetShared,
CMVIEW mview,
CVV vv_x,
CVV vv_y,
int min_sect,
double min_dist
)
Public Shared Sub TrndPath (
gxNetShared As CGXNETCore,
mview As CMVIEW,
vv_x As CVV,
vv_y As CVV,
min_sect As Integer,
min_dist As Double
)
Public Shared Sub TrndPath (
gxNetShared As CGXNETCore,
mview As CMVIEW,
vv_x As CVV,
vv_y As CVV,
min_sect As Integer,
min_dist As Double
)
public:
static void TrndPath(
CGXNETCore^ gxNetShared,
CMVIEW^ mview,
CVV^ vv_x,
CVV^ vv_y,
int min_sect,
double min_dist
)
public:
static void TrndPath(
CGXNETCore^ gxNetShared,
CMVIEW^ mview,
CVV^ vv_x,
CVV^ vv_y,
int min_sect,
double min_dist
)
static member TrndPath :
gxNetShared : CGXNETCore *
mview : CMVIEW *
vv_x : CVV *
vv_y : CVV *
min_sect : int *
min_dist : float -> unit
static member TrndPath :
gxNetShared : CGXNETCore *
mview : CMVIEW *
vv_x : CVV *
vv_y : CVV *
min_sect : int *
min_dist : float -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - mview
- Type: GeoEngine.Core.GXNetXCMVIEW
View - vv_x
- Type: GeoEngine.Core.GXNetXCVV
X - vv_y
- Type: GeoEngine.Core.GXNetXCVV
Y - min_sect
- Type: SystemInt32
Minimum number of sections - min_dist
- Type: SystemDouble
Minimum length of sections
Remarks
Trend lines positions consist of X and Y VVs
interspersed with dummies, which separate the
individual trend sections.
Set the minimum number of sections to > 0 to
plot only the longer trend lines.
(The number of sections in one trend section is
equal to the number of points between dummies minus one.)
Set the minimum distance to > 0 to
plot only the longer trend lines.
See Also