Skip to main content

Greetings,

 

I have tried several formulae, but no convert metric to DD??

Any suggestions appreciated.

@Value(_inside_x)(@CoordSys(EPSG:4326))
 
@Value(_inside_x(@CoordSys(EPSG:4326))

Thanks

Clive

Hi @Clive Swan​,

You can use the AttributeReprojector transformer to convert your attribute values from EPSG:22770 to EPSG:4227, which will give you the lat/long coordinates in the same datum.


Hi @Clive Swan​,

You can use the AttributeReprojector transformer to convert your attribute values from EPSG:22770 to EPSG:4227, which will give you the lat/long coordinates in the same datum.

Hi Dave,

Thanks for the suggestion.

I want to keep the Easting/Northing and add Lat/Long from the _x,_y​ coordinates.

Thanks

Clive​


Hi Dave,

Thanks for the suggestion.

I want to keep the Easting/Northing and add Lat/Long from the _x,_y​ coordinates.

Thanks

Clive​

Use an AttributeCopier to copy _inside_x to Longitude and _inside_y to Latitude, then use the AttributeReprojector on Longitude and Latitude


Reply