Solved

Convert Lat/long coordinates to EPSG:28992


Badge +3

Hi,

I have a csv file with some coordinates in the following form:

 

Cordinaten gps longitude ; Cordinaten gps latitude

 

4.438.469 ; 5.186.713

How can I convert this to EPSG:28992? I've already tried the Reprojector, AttribureReprojector and CsmapAttributeReprojector but that didn't help.

 

Thank you in advance.

 

Greetings, Hans

icon

Best answer by redgeographics 6 June 2020, 17:21

View original

3 replies

Userlevel 5
Badge +26

Normally the AttributeReprojector would be the one to use but it looks like your coordinates are malformed (let me guess, they're coming out of Excel?)

Fortunately, knowing that EPSG:28992 is the Netherlands RD projection, we know that the longitudes are in single digit degrees (in this case 4) and the latitudes are in double digit degrees (51)

So what I would do is:

  1. StringReplacer to replace the . with an empty string, so you get 4438469 and 5186713
  2. AttributeManager to divide the longitude by 10 and the latitude by 100 so you get 4.438469 and 51.86713
  3. AttributeReprojector to reproject them from LL84 to EPSG:28992

And that should do the trick.

Userlevel 5
Badge +26

Normally the AttributeReprojector would be the one to use but it looks like your coordinates are malformed (let me guess, they're coming out of Excel?)

Fortunately, knowing that EPSG:28992 is the Netherlands RD projection, we know that the longitudes are in single digit degrees (in this case 4) and the latitudes are in double digit degrees (51)

So what I would do is:

  1. StringReplacer to replace the . with an empty string, so you get 4438469 and 5186713
  2. AttributeManager to divide the longitude by 10 and the latitude by 100 so you get 4.438469 and 51.86713
  3. AttributeReprojector to reproject them from LL84 to EPSG:28992

And that should do the trick.

What he said! ^

Badge +3

Thanks, I used the wrong projection. I thought it was Mercator but it is LL84. About the rest, you are right. I already made good coördinates with string replacer and divided then.

LL84 did the trick. Thanks.

 

 

Reply