<div dir="ltr"><div><div><br><br>On Sat, May 19, 2018 at 11:35 AM, Ken Mankoff <<a href="mailto:mankoff@gmail.com">mankoff@gmail.com</a>> wrote:<br>><br>> Hi GRASS List,<br>><br>> I've just spent 30 days on a field campaign collecting data. I have a large amount of it in a GRASS mapset with location EPSG:3413. I'd like to set up a new location with (0,0) centered on our basecamp and everything nearby relative to that. Can someone advise how to use "proj" to create a new location centered on either a (lon,lat) location but with units meter, or centered on an (x,y) location from a different projection?<br><br>You could create a custom CRS based on EPSG:3413<br>the PROJ.4 term for EPSG:3413 is:<br>+proj=stere +lat_0=90 +lat_ts=70 +lon_0=-45 +k=1 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs<br><br></div>now get the coordinates of the basecamp, invert the sign of the coordinates and use these as false easting / false northing<br></div>e.g. if the basecamp is at 4000000, 5000000, use<br><div><div><div>+proj=stere +lat_0=90 +lat_ts=70 +lon_0=-45 +k=1 +x_0=-4000000 +y_0=-5000000 +datum=WGS84 +units=m +no_defs<br><br></div><div>to define a custom projection centered on the basecamp<br><br></div><div>HTH,<br><br></div><div>Markus M<br><br></div><div>><br>> The reason for this is so I can push data to ParaView which doesn't work well with coordinate systems far removed from the origin.<br>><br>> Thanks,<br>><br>>   -k.<br>><br>> _______________________________________________<br>> grass-user mailing list<br>> <a href="mailto:grass-user@lists.osgeo.org">grass-user@lists.osgeo.org</a><br>> <a href="https://lists.osgeo.org/mailman/listinfo/grass-user">https://lists.osgeo.org/mailman/listinfo/grass-user</a><br></div></div></div></div>