Exemple #1
0
 /// Transforms the specified coordinate.
 /// </summary>
 /// <param name="coordinate">The coordinate.</param>
 /// <returns>The transformed coordinate.</returns>
 public Coordinate Transform(Coordinate coordinate)
 {
     return(_conversionFromGeographic.Transform(_geographicTransformation.Transform(_conversionToGeographic.Transform(coordinate))));
 }
 /// <summary>
 /// Computes the transformation of the coordinate.
 /// </summary>
 /// <param name="source">The source coordinate.</param>
 /// <returns>The coordinate in the specified reference system.</returns>
 private Coordinate Compute(Coordinate coordinate)
 {
     return(_transformation.Transform(coordinate));
 }