Tagged Questions
1
vote
2answers
619 views
How to convert Lat/Long to UTM using Proj(4j) similar to JScience UTM.latLongToUTM?
I'd like to use Proj(4j) to convert between UTM and Lat/Long coordinates.
I used to use JScience for UTM <-> LatLong conversions like this:
UTM.latLongToUtm(latlong, ReferenceEllipsoid.WGS84);
...
9
votes
9answers
4k views
Batch convert lat longs to UTM?
I've got a .csv file that contains a long list of latitude and longitude points. Is there an efficient way to batch convert the list into a projected UTM coordinate system?
Thanks.