Click or drag to resize
CPJClipPLY Method
Create a clip polygon from a projected area.

Available since Oasis montaj version: 5.0.0
License: Available to anyone.  

Namespace: GeoEngine.Core.GXNet
Assembly: geoengine.core.gxnet (in geoengine.core.gxnet.dll)
Notes
A rectangular area from (MinX, MinY) to (MaxX, MaxY) is projected throught the PJ. The resulting (non-rectangular) area is then digitized along its edges, then thinned to remove near-collinear points. The thinning is done to any point whose neighbors subtend an angle greater than (180 degrees - maximum deviation). (i.e. if max. dev = 0, only co-linear points would be removed).
Syntax
public void ClipPLY(
	double d1,
	double d2,
	double d3,
	double d4,
	double d5,
	CPLY oPLY6
)

Parameters

d1
Type: SystemDouble
Min X (or Longitude...)
d2
Type: SystemDouble
Min Y (or Latitude...)
d3
Type: SystemDouble
Max X
d4
Type: SystemDouble
Max Y
d5
Type: SystemDouble
Max deviation in degrees
oPLY6
Type: GeoEngine.Core.GXNetCPLY
PLY to be filled
See Also