1

I'm trying to find a solution to convert my epsg:32632 coordinates into meters. epsg:32632 coordinates look like: 13.39453125, 58.34765625.

Does anyone know how can i do this in java?

Thanks,

Ares

Tomas
  • 57,621
  • 49
  • 238
  • 373
Ares
  • 23
  • 3

1 Answers1

2

You're going to need to look at one of the geo toolkits out there. GeoTools (geotools.org) may have something to do this. What you're going to need to do is create a line geometry in the SRID you have above, then convert it to another SRID that more or less matches your spheroid etc but has a unit of meters.

Dave G
  • 9,639
  • 36
  • 41