Select to view content in your preferred language

Datum transformation using 10.1 Geometry service

695
1
03-14-2013 02:17 AM
KarlBarker-Ottley
Emerging Contributor
Hi,

I wondering whether anyone can help me apply a data transformation on some co-ordinates?

The input co-ordinate will be in BNG (WKID 27700) but I need to plot it on a service using tiled map services in Web-Mercator (WKID 102100). I use the following transformation in ArcGIS Desktop: OSGB_1936_To_WGS_1984_Petroleum - I understand that datum transformations are possible using the 10.1 Geometry service? I code my applications in Flex, so if anyone can offer some advice or guidance here, it would be appreciated.

Thanks,
Karl
Tags (2)
0 Kudos
1 Reply
KarlBarker-Ottley
Emerging Contributor
Following this on - many thanks to ESRI support here. The following code can fix this:

var datumTransform: DatumTransform = new DatumTransform();
datumTransform.wkid = 1314;
datumTransform.wkt = "OSGB_1936_To_WGS_1984_Petroleum";
projectParameters.datumTransform = datumTransform;
projectParameters.transformForward = false;
0 Kudos