[GIS] Is a Helmert transform necessary to convert between WGS84 and NAD83

convertcoordinate systemnad83wgs84

I've read things all over the internet which claim that NAD83 and WGS84 are effectively equivalent (with minor ellipsoid differences). However, if I do geodetic (WGS84) -> ECEF -> geodetic (NAD83) conversions, using only the WGS84 and GRS80 ellipsoid parameters and no Helmert transformation, I can't replicate the results of government sponsored online converters like this one. My geodetic/ecef conversions are done following EPSG note 7.2 and have been rigorously tested for correctness.

Thus my questions are:

  • Is a Helmert transform required to convert WGS84 to NAD83?
  • Are there canonical or official coefficient values for doing so? I know there are variants of NAD83 and WGS84 over time, but I'm interested in coefficients that would be used today (I think that means NAD83 (2011) and WGS 84 (G1674)?)

Best Answer

Short answer is yes. You need to convert from your coordinates' native reference frame to the NAD83 realization's reference frame, then possibly add an adjustment. In the case of NAD83(CSRS), which I use, there are 3 steps:

  1. Native RF -> ITRF96(1997.0)
  2. ITRF96 (1997.0) -> NAD83(CSRS)
  3. Grid shift

Steps 1 and 2 require the Helmert transformation. Step 3 uses interpolated shifts from a raster to apply adjustments due to tectonic motion and isostatic rebound.

NAD83 is intended to be locked to the North American plate so its realization must rotate with respect to the reference frame. In CSRS this accounted for partly by the final reference frame transformation and partly by the grid shift. (It's fairly difficult to find complete information on this online -- when I was writing software to transform point clouds, I had some generous help from the NRCAN scientist who's responsible for it.)

The IERS publishes transformation parameters for going between various ITRF realizations: here.

I got the ones for CSRS from The Evolution of NAD83(CSRS) In Canada, by Mike Craymer (2006). This page has the transformation parameters between 2011 and ITRF. (This one has a spreadsheet with many transformations.)

Related Question