<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic convert WGS84 to 27700 using geometry service - what datum transformation? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526778#M49134</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to convert coordinates from WGS84 to British National Grid using the geometry service but when I do this, the points all seem to be a bit out (maybe 100m or so). From reading up on this it seems that the reason is probably I'm not doing a datum transformation to the coordinates. However, I can't find out what value to put in for the datum transformation. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The starting coordinates come from the geolocation API so are in WKID 4326, so the starting datum should be WGS1984 I think. The output spatial reference is British National Grid (WKID 27700) so it's datum is OSGB_1936. I've been searching to find out what the value for the datum transformation should be and the closest I've come is EPSG::1314 which is for WGS1984_To_OSGB_1936. I've tried specifying this as the datum transformation value but the output point is in the same location as if I leave this datum transformation parameter blank. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Has anyone else come across this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp; function zoomToLocation(location) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; var pt = new Point(location.coords.longitude, location.coords.latitude, new SpatialReference({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wkid : 4236
&amp;nbsp;&amp;nbsp;&amp;nbsp; }));
&amp;nbsp;&amp;nbsp;&amp;nbsp; var outSR = new SpatialReference({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wkid : 27700
&amp;nbsp;&amp;nbsp;&amp;nbsp; });

&amp;nbsp;&amp;nbsp;&amp;nbsp; var PrjParams = new ProjectParameters();
&amp;nbsp;&amp;nbsp;&amp;nbsp; PrjParams.geometries = [pt];
&amp;nbsp;&amp;nbsp;&amp;nbsp; PrjParams.outSR = outSR;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var datumtrans = 1314;
&amp;nbsp;&amp;nbsp;&amp;nbsp; PrjParams.transformation = datumtrans;

&amp;nbsp;&amp;nbsp;&amp;nbsp; geometryService.project(PrjParams, function(projectedPoints) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log('Conversion completed. Datum Transformation: ' + datumtrans + '.');
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pt = projectedPoints[0];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.centerAndZoom(pt, 8);
&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Apr 2014 14:28:54 GMT</pubDate>
    <dc:creator>MikeSteven</dc:creator>
    <dc:date>2014-04-08T14:28:54Z</dc:date>
    <item>
      <title>convert WGS84 to 27700 using geometry service - what datum transformation?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526778#M49134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to convert coordinates from WGS84 to British National Grid using the geometry service but when I do this, the points all seem to be a bit out (maybe 100m or so). From reading up on this it seems that the reason is probably I'm not doing a datum transformation to the coordinates. However, I can't find out what value to put in for the datum transformation. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The starting coordinates come from the geolocation API so are in WKID 4326, so the starting datum should be WGS1984 I think. The output spatial reference is British National Grid (WKID 27700) so it's datum is OSGB_1936. I've been searching to find out what the value for the datum transformation should be and the closest I've come is EPSG::1314 which is for WGS1984_To_OSGB_1936. I've tried specifying this as the datum transformation value but the output point is in the same location as if I leave this datum transformation parameter blank. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Has anyone else come across this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp; function zoomToLocation(location) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; var pt = new Point(location.coords.longitude, location.coords.latitude, new SpatialReference({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wkid : 4236
&amp;nbsp;&amp;nbsp;&amp;nbsp; }));
&amp;nbsp;&amp;nbsp;&amp;nbsp; var outSR = new SpatialReference({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wkid : 27700
&amp;nbsp;&amp;nbsp;&amp;nbsp; });

&amp;nbsp;&amp;nbsp;&amp;nbsp; var PrjParams = new ProjectParameters();
&amp;nbsp;&amp;nbsp;&amp;nbsp; PrjParams.geometries = [pt];
&amp;nbsp;&amp;nbsp;&amp;nbsp; PrjParams.outSR = outSR;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var datumtrans = 1314;
&amp;nbsp;&amp;nbsp;&amp;nbsp; PrjParams.transformation = datumtrans;

&amp;nbsp;&amp;nbsp;&amp;nbsp; geometryService.project(PrjParams, function(projectedPoints) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log('Conversion completed. Datum Transformation: ' + datumtrans + '.');
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pt = projectedPoints[0];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.centerAndZoom(pt, 8);
&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 14:28:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526778#M49134</guid>
      <dc:creator>MikeSteven</dc:creator>
      <dc:date>2014-04-08T14:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: convert WGS84 to 27700 using geometry service - what datum transformation?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526779#M49135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;your methodology seems correct to me and i can see by adding and removing the datum transformation in the request below that the output x and y are affected by about 100 units.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://sampleserver6.arcgisonline.com/arcgis/rest/services/Utilities/Geometry/GeometryServer/project?inSR=4326&amp;amp;outSR=27700&amp;amp;geometries=1.8300%2C60.8900&amp;amp;transformation=1314&amp;amp;transformForward=false&amp;amp;f=html"&gt;http://sampleserver6.arcgisonline.com/arcgis/rest/services/Utilities/Geometry/GeometryServer/project?inSR=4326&amp;amp;outSR=27700&amp;amp;geometries=1.8300%2C60.8900&amp;amp;transformation=1314&amp;amp;transformForward=false&amp;amp;f=html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;are you sure your own geometry service supports adding a transformation?&amp;nbsp; this capability wasn't added until 10.1&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/arcgis-rest-api/index.html#/Project/02r3000000pv000000/"&gt;http://resources.arcgis.com/en/help/arcgis-rest-api/index.html#/Project/02r3000000pv000000/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;HowTo:&amp;nbsp; Select the correct geographic (datum) transformation when projecting between datums&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://support.esri.com/fr/knowledgebase/techarticles/detail/21327"&gt;http://support.esri.com/fr/knowledgebase/techarticles/detail/21327&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 14:56:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526779#M49135</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2014-04-08T14:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: convert WGS84 to 27700 using geometry service - what datum transformation?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526780#M49136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your reply. Yeah I had been using ArcGIS Server 10.0 without thinking about it. We've also got a server running ArcGIS Server v10.2 and I've put the code into a javascript map on that server and when I put in the datum transformation as 1314 it shifts the results further to the west (they should be getting shifted to the east). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In your link&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://sampleserver6.arcgisonline.com/arcgis/rest/services/Utilities/Geometry/GeometryServer/project"&gt;http://sampleserver6.arcgisonline.com/arcgis/rest/services/Utilities/Geometry/GeometryServer/project&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've just seen the transform forward parameter and notice that when I change it there it changes the values. How do I change this parameter in my code? I've tried playing about with something along the lines of &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PrjParams.transformationForward = true;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;or &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PrjParams.transformationForward = false;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;but it doesn't change the output value.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 15:34:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526780#M49136</guid>
      <dc:creator>MikeSteven</dc:creator>
      <dc:date>2014-04-08T15:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: convert WGS84 to 27700 using geometry service - what datum transformation?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526781#M49137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;unfortunately thats a bug:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[NIM090102: When projecting using geometry service in a JavaScript application, the transformationForward parameter is not passed to the request parameters even it is defined in the code.]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;you might want to try using something like esriRequest.&lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/esri.request-amd.html#esrirequest.setrequestprecallback"&gt;setRequestPreCallback()&lt;/A&gt;&lt;SPAN&gt; until the issue is resolved.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 15:45:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526781#M49137</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2014-04-08T15:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: convert WGS84 to 27700 using geometry service - what datum transformation?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526782#M49138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry you've lost me here, how can I use esriRequest.setRequestPreCallback() to set the transformationForward boolean? (it's false I need to set the transformationForward boolean to)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 15:56:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526782#M49138</guid>
      <dc:creator>MikeSteven</dc:creator>
      <dc:date>2014-04-08T15:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: convert WGS84 to 27700 using geometry service - what datum transformation?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526783#M49139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;setRequestPreCallback() is a generic method which gives you an opportunity to manipulate parameters in any AJAX request before it is sent.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if you'd like to take a stab at writing up a simple sample and incorporating the technique, i would happy to provide additional assistance if you get stuck.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 15:58:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526783#M49139</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2014-04-08T15:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: convert WGS84 to 27700 using geometry service - what datum transformation?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526784#M49140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Erm, callbacks are not something I've worked with much so I'm struggling a bit. I've tried a few different things but I can't see how I should use the callback to set the parameters, sorry.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp; function zoomToLocation(location) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.debug(location);
&amp;nbsp;&amp;nbsp;&amp;nbsp; var pt = new Point(location.coords.longitude, location.coords.latitude, new SpatialReference({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wkid : 4236
&amp;nbsp;&amp;nbsp;&amp;nbsp; }));
&amp;nbsp;&amp;nbsp;&amp;nbsp; //alert("input x = " + location.coords.longitude + " , y = " + location.coords.latitude);
&amp;nbsp;&amp;nbsp;&amp;nbsp; var outSR = new SpatialReference({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wkid : 27700
&amp;nbsp;&amp;nbsp;&amp;nbsp; });

&amp;nbsp;&amp;nbsp;&amp;nbsp; PrjParams = esriRequest.setRequestPreCallback(setTransformationForward);
&amp;nbsp;&amp;nbsp;&amp;nbsp; alert("prjParams datumtrans = " + PrjParams.transformation);
&amp;nbsp;&amp;nbsp;&amp;nbsp; /*geometryService.project(PrjParams, function(projectedPoints) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log('Conversion completed. Datum Transformation: ' + PrjParams.transformationForward + '.');
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pt = projectedPoints[0];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.centerAndZoom(pt, 8);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });*/
&amp;nbsp;&amp;nbsp; }

&amp;nbsp;&amp;nbsp; function setTransformationForward() {
&amp;nbsp;&amp;nbsp;&amp;nbsp; alert("got here");
&amp;nbsp;&amp;nbsp;&amp;nbsp; var PrjParams = new ProjectParameters();
&amp;nbsp;&amp;nbsp;&amp;nbsp; PrjParams.geometries = [pt];
&amp;nbsp;&amp;nbsp;&amp;nbsp; PrjParams.outSR = outSR;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var datumtrans = 1314;
&amp;nbsp;&amp;nbsp;&amp;nbsp; PrjParams.transformation = datumtrans;
&amp;nbsp;&amp;nbsp;&amp;nbsp; PrjParams.transformationForward = false;

&amp;nbsp;&amp;nbsp;&amp;nbsp; return PrjParams;
&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:57:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526784#M49140</guid>
      <dc:creator>MikeSteven</dc:creator>
      <dc:date>2021-12-11T22:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: convert WGS84 to 27700 using geometry service - what datum transformation?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526785#M49141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;the crux of this issue is that setting the property on your ProjectParms object doesn't have the effect it should.&amp;nbsp; because of this we need to be listening for the AJAX request all the time and modify it manually.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
//we call this method once when the application loads so that it will execute afterwards when AJAX requests are fired.
esriRequest.setRequestPreCallback(addTransformationForward);
...
var params = new ProjectParameters();
params.geometries = [point];
...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
//setting this parameter is not working (because of NIM090102)
params.transformationForward = false;

gsvc.project(params, function(projectedPoints) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; ...
});

function addTransformationForward(ioArgs) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; //lets add the parameter when we catch an AJAX request aimed at our geometry service
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (ioArgs.url == "http://sampleserver6.arcgisonline.com/arcgis/rest/services/Utilities/Geometry/GeometryServer/project")

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //add the request parameter manually
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ioArgs.content = ioArgs.content || {};
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ioArgs.content.transformForward = false;

&amp;nbsp;&amp;nbsp;&amp;nbsp; // don't forget to return ioArgs.
&amp;nbsp;&amp;nbsp;&amp;nbsp; return ioArgs;
}

&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;heres a working fiddle&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://jsfiddle.net/jagravois/9WXDx/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://jsfiddle.net/jagravois/9WXDx/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:57:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526785#M49141</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2021-12-11T22:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: convert WGS84 to 27700 using geometry service - what datum transformation?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526786#M49142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks John, that's it working now.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That's greatly appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 14:50:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526786#M49142</guid>
      <dc:creator>MikeSteven</dc:creator>
      <dc:date>2014-04-09T14:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: convert WGS84 to 27700 using geometry service - what datum transformation?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526787#M49143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;my pleasure Mike.&amp;nbsp; please consider marking this thread as 'answered'.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 15:01:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526787#M49143</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2014-04-09T15:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: convert WGS84 to 27700 using geometry service - what datum transformation?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526788#M49144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Unfortunately, this is a bug in the docs. It should be transformForward, not transformationForward. See &lt;/SPAN&gt;&lt;A href="http://jsfiddle.net/9WXDx/2/"&gt;http://jsfiddle.net/9WXDx/2/&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We'll get this updated next time we update the docs.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 18:23:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526788#M49144</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2014-04-09T18:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: convert WGS84 to 27700 using geometry service - what datum transformation?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526789#M49145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks for that fiddle -&amp;nbsp; I've just hit a similar issue (user collects in google maps, want to display in our 27700 maps) and a slightly modified version of your code works a treat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 14:27:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/convert-wgs84-to-27700-using-geometry-service-what/m-p/526789#M49145</guid>
      <dc:creator>AdrianMarsden</dc:creator>
      <dc:date>2014-11-14T14:27:21Z</dc:date>
    </item>
  </channel>
</rss>

