Solved

Coordinate conversion: from Gauss-Kruger to UTM what transformer to use?

  • 11 February 2019
  • 2 replies
  • 3 views

Badge

I have a csv file with both lat and long fields that I would like to be converted from GAUSS-Kruger to UTM system. I tried a .csv reader and a "reprojector" transformer and a csv writer. The output csv is simple the same as my original input. Any ideas? thanks!

icon

Best answer by erik_jan 11 February 2019, 21:21

View original

2 replies

Userlevel 2
Badge +12

Two transformers exist for reprojection:

The standard Reprojector and the more advanced CSMAPReprojector.

These links give you information on both.

In case of a CSV the reader needs to convert the X and Y to geometries for the transformers.

Another option would be using the AttributeReprojector on these attributes without creating a geometry.

Badge

thanks for that!

Reply