Transforms given feature using source and target spatial reference systems (SRS).


Namespace: FDF.Common.CoordinateSystems
Assembly: FDF.Common (in FDF.Common.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function Transform( _ 
   ByRef feature As FdoFeature,  _ 
   ByVal source As Integer,  _ 
   ByVal target As Integer _ 
) As Boolean
C#
public static bool Transform(
   ref FdoFeature feature,
   int source,
   int target
)
C++
public:
 static bool Transform(
   FdoFeature% feature,
   int source,
   int target
)
J#
public static bool Transform(
   FdoFeature feature,
   int source,
   int target
)
JScript
public static  function Transform(
   feature : FdoFeature,
   source : int,
   target : int
) : bool

Parameters

feature
Feature to transform (in-place).
source
Source SRS EPSG code.
target
Target SRS EPSG code.

Return Value

True if transformation suceeded, otherwise returns False.

See Also