reyemtm / getbounds

My personal geospatial blog built with Hexo.
https://www.getbounds.com
Other
0 stars 0 forks source link

RTK to WGS84 #42

Open utterances-bot opened 1 year ago

utterances-bot commented 1 year ago

getBounds

In my day job we recently completed a project to field locate our water utility assets using a high-accuracy GPS unit. Now that this data is online and accessible in our web maps, our field crews requ

https://www.getbounds.com/blog/rtk-to-wgs84/

esutton commented 1 year ago

Thank you for the article!

I am struggling with RTK NAD83 to WGS84 coordinates conversion.

Like this? I get NaN

const latitude = 36.2929067;
const longitude = -97.308243;
const pointNad83 = [latitude, longitude];
const pointWgs84 = coordRTKtoWGS84(pointNad83);
console.log('pointNad83:', pointNad83);
console.log('pointWgs84:', pointWgs84);

Output:

pointNad83:  [ 36.2929067, -97.308243 ]
pointWgs84:  [ NaN, NaN ]
esutton commented 1 year ago

Never mind. I see point arguments are longitude then latitude. Thank you!