Skip to main content
Question

How to plugin a local projection grid into FME?

  • October 17, 2017
  • 3 replies
  • 28 views

aguan
Supporter
Forum|alt.badge.img+11
  • Supporter
  • 140 replies

We have a locally customized projection grid in Chile, presented as (X,Y) values in an Excel spreadsheet. How can I plugin the grid into FME to be recognized?

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

3 replies

erik_jan
Contributor
Forum|alt.badge.img+22
  • Contributor
  • 2179 replies
  • October 17, 2017

A good place to start is in this documentation:

About Coordinate Systems


daveatsafe
Safer
Forum|alt.badge.img+19
  • Safer
  • 1637 replies
  • October 17, 2017

Hi @ag,

There are two different ways you can apply the XY transformation grid:

1. The simplest way is to use the grid as input for the RubberSheeter transformer. This transformer will apply the grid adjustments to the source data using an inverse distance weighting. However, this is a specific operation that must be included in all the workspaces doing the reprojection.

2. You can create your own NTv2 grid file that can be used by FME's reprojection. FME uses only the binary version of the NTv2 grid, but the Australian utility GDay can convert from an ascii NTv2 grid to a binary. The GDay documentation also includes the definition for the ascii version of NTv2, so you can create an FME workspace to convert from your Excel file to the ascii file, using the Text File writer. This is much more work, but the result is easier to use within your workspaces.


aguan
Supporter
Forum|alt.badge.img+11
  • Author
  • Supporter
  • 140 replies
  • October 17, 2017

@DaveAtSafe and @erik_jan, thanks a lot for the information. Very helpful.