Hello to all,
I need to convert latitude and longitude expressed in degrees into UTM zone.
I use the code used in this form:
data have;
id=1; lat=45.5; long=73.5;
run;
proc gproject latlon degrees westlong
project=proj4 to="EPSG:32618" /* WGS 84 / UTM zone 18N */
data=have out=want;
id id;
run;
proc print data=want noobs; run;
but if I have some latitude and longitudes that do not fall as indicated in the instruction:
project=proj4 to="EPSG:32618"
how can i do to convert correctly? there's a way? Thank you all