Author Topic: GeoCoordinateTransformer  (Read 1781 times)

0 Members and 1 Guest are viewing this topic.

sybold

  • Newt
  • Posts: 62
GeoCoordinateTransformer
« on: January 23, 2015, 03:19:22 PM »
Looking for more information in how to use GeoCoordinateTransformer in 2015.
the documentation is not telling much about is, but TransformPoint would be as simple as is seems.

translating a point from one coordinate system to one other.

i tried a few things, but i get a eNotApplicable

Code: [Select]
        Dim transformer = GeoCoordinateTransformer.Create(sourcecs, targetcs)

sybold

  • Newt
  • Posts: 62
Re: GeoCoordinateTransformer
« Reply #1 on: January 23, 2015, 03:45:14 PM »
i got it working, seems you don't need to create a transformer

Code: [Select]
        Dim transformedpoint As Point3d = GeoCoordinateTransformer.TransformPoint(SourceCS, TargetCS, inputpoint)

worked just fine like that.  :lol: