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

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

Namespace: GeoEngine.Core.GXNetX
Assembly: geoengine.core.gxnetx (in geoengine.core.gxnetx.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 min_x,
	double min_y,
	double max_x,
	double max_y,
	double max_dev,
	CPLY pply
)

Parameters

min_x
Type: SystemDouble
Min X (or Longitude...)
min_y
Type: SystemDouble
Min Y (or Latitude...)
max_x
Type: SystemDouble
Max X
max_y
Type: SystemDouble
Max Y
max_dev
Type: SystemDouble
Max deviation in degrees
pply
Type: GeoEngine.Core.GXNetXCPLY
PLY to be filled
See Also