<?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 Combining Coordinate Frame transformation method and grid-based NTV2 method? in ArcGIS Enterprise Portal Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-portal-questions/combining-coordinate-frame-transformation-method/m-p/476829#M6658</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a way to combine Coordinate Frame transformation method and custom grid-based NTV2 method into single transformation method? Right now, in ArcGIS Desktop there is only possibility to choose either first or second method, but have anybody tried to combine these two into singular one?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Many greets,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Vojkan Gajovic,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;GISDATA Belgrade&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Serbia&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Jan 2011 08:07:05 GMT</pubDate>
    <dc:creator>VojkanGajovic</dc:creator>
    <dc:date>2011-01-05T08:07:05Z</dc:date>
    <item>
      <title>Combining Coordinate Frame transformation method and grid-based NTV2 method?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-portal-questions/combining-coordinate-frame-transformation-method/m-p/476829#M6658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a way to combine Coordinate Frame transformation method and custom grid-based NTV2 method into single transformation method? Right now, in ArcGIS Desktop there is only possibility to choose either first or second method, but have anybody tried to combine these two into singular one?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Many greets,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Vojkan Gajovic,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;GISDATA Belgrade&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Serbia&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 08:07:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-portal-questions/combining-coordinate-frame-transformation-method/m-p/476829#M6658</guid>
      <dc:creator>VojkanGajovic</dc:creator>
      <dc:date>2011-01-05T08:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Coordinate Frame transformation method and grid-based NTV2 method?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-portal-questions/combining-coordinate-frame-transformation-method/m-p/476830#M6659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hello!&lt;BR /&gt;&lt;BR /&gt;Is there a way to combine Coordinate Frame transformation method and custom grid-based NTV2 method into single transformation method? Right now, in ArcGIS Desktop there is only possibility to choose either first or second method, but have anybody tried to combine these two into singular one?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!&lt;BR /&gt;&lt;BR /&gt;Many greets,&lt;BR /&gt;&lt;BR /&gt;Vojkan Gajovic,&lt;BR /&gt;GISDATA Belgrade&lt;BR /&gt;Serbia&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Vojkan, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We plan to add this functionality at 10.1 to ArcMap--at least to combine two existing transformations. If they're new, you could then define them with the GP tool, Create Custom Geographic Transformation, and then use them in ArcMap. For now, the only in ArcMap is to create a tool/script. I'll post a VBA sample, but I haven't made a similar add-in for ArcGIS 10 yet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Melita&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Sub twoGT()
&amp;nbsp; 
&amp;nbsp; '1)Create our factory
&amp;nbsp; Dim pSpatRefFact As ISpatialReferenceFactory2
&amp;nbsp; Set pSpatRefFact = New SpatialReferenceEnvironment
&amp;nbsp; Dim pGeoTrans_A As IGeoTransformation
&amp;nbsp; Dim pGeoTrans_B As IGeoTransformation
&amp;nbsp; 
&amp;nbsp; '2)Use the factory to create our geotransformation objects
&amp;nbsp; Set pGeoTrans_A = _
&amp;nbsp;&amp;nbsp;&amp;nbsp; pSpatRefFact.CreateGeoTransformation(esriSRGeoTransformation_ED1950_To_WGS1984_1)
&amp;nbsp; Set pGeoTrans_B = _
&amp;nbsp;&amp;nbsp;&amp;nbsp; pSpatRefFact.CreateGeoTransformation(esriSRGeoTransformation_Belge_1972_To_WGS_1984_1)
&amp;nbsp; 
&amp;nbsp; '3)Create a composite geotransformation object
&amp;nbsp; Dim pGeoTransComposite As ICompositeGeoTransformation
&amp;nbsp; Set pGeoTransComposite = New CompositeGeoTransformation
&amp;nbsp; 
&amp;nbsp; '4)Add the two separate geotransformations to the composite
&amp;nbsp; pGeoTransComposite.Add esriTransformForward, pGeoTrans_A
&amp;nbsp; pGeoTransComposite.Add esriTransformReverse, pGeoTrans_B

&amp;nbsp; '5)Give the new transformation a name.
&amp;nbsp; Dim pNewGeoTrans as IGeoTransformation
&amp;nbsp; Set pNewGeoTrans = pGeoTransComposite
&amp;nbsp; pNewGeoTrans.Name = "ED_1950_To_BD_1972"
&amp;nbsp;&amp;nbsp;&amp;nbsp; 

End Sub&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 21:04:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-portal-questions/combining-coordinate-frame-transformation-method/m-p/476830#M6659</guid>
      <dc:creator>MelitaKennedy</dc:creator>
      <dc:date>2021-12-11T21:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Coordinate Frame transformation method and grid-based NTV2 method?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-portal-questions/combining-coordinate-frame-transformation-method/m-p/476831#M6660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dear Melita,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for VBA sample, it did help us. While exploring this combination of transformations, we have spotted some problems. We are trying to do transformations from Gauss-Kruger to ETRS89 using combination of Helmert transformation of 7 parameters and custom grid-based transformation. Grid has cells of 1000x1000 meters, and covers entire territory of Serbia, is based on residuals from Helmert transformation, while for gridding method was used Inverse Distance to a Power, with radius of 10000 meters. Doing such transformations, we got results that differs from results we got using other software (non-GIS) that calculates transformations: 95% of coordinates were exact, whilst 5% were wrong (not satisfying standards of our client, since coordinates must have error not larger than 10 cm). By researching all the methods we have used, we spotted that NTV2 custom grid in ArcGIS is in arc-seconds. Is it possible to have custom NTV2 grid in Cartesian coordinates rather than in arc-seconds, in ArcGIS? Also, is there a tool that can convert grid from ASCII to GSB format in ArcGIS?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you in advance!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Vojkan Gajovic,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;GISDATA Belgrade&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Serbia&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2011 06:09:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-portal-questions/combining-coordinate-frame-transformation-method/m-p/476831#M6660</guid>
      <dc:creator>VojkanGajovic</dc:creator>
      <dc:date>2011-04-11T06:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Coordinate Frame transformation method and grid-based NTV2 method?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-portal-questions/combining-coordinate-frame-transformation-method/m-p/476832#M6661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Dear Melita,&lt;BR /&gt;&lt;BR /&gt;Thank you for VBA sample, it did help us. While exploring this combination of transformations, we have spotted some problems. We are trying to do transformations from Gauss-Kruger to ETRS89 using combination of Helmert transformation of 7 parameters and custom grid-based transformation. Grid has cells of 1000x1000 meters, and covers entire territory of Serbia, is based on residuals from Helmert transformation, while for gridding method was used Inverse Distance to a Power, with radius of 10000 meters. Doing such transformations, we got results that differs from results we got using other software (non-GIS) that calculates transformations: 95% of coordinates were exact, whilst 5% were wrong (not satisfying standards of our client, since coordinates must have error not larger than 10 cm). By researching all the methods we have used, we spotted that NTV2 custom grid in ArcGIS is in arc-seconds. Is it possible to have custom NTV2 grid in Cartesian coordinates rather than in arc-seconds, in ArcGIS? Also, is there a tool that can convert grid from ASCII to GSB format in ArcGIS?&lt;BR /&gt;&lt;BR /&gt;Thank you in advance!&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Vojkan Gajovic,&lt;BR /&gt;GISDATA Belgrade&lt;BR /&gt;Serbia&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dear Vojkan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Unfortunately, the software is set up so that a 'geographic transformation' (datum transformation) must be between two geographic coordinate systems. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Werner Flacke at ESRI-Germany wrote tools a few years ago (for 9.1 and 9.2) that could convert a shapefile to an NTv2 file (it's still in ArcScripts), but I don't believe the source code was released. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There was a thread recently on the PROJ4 mailing about converting some Dutch information into an NTv2 file: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://lists.maptools.org/pipermail/proj/2011-April/thread.html#5634"&gt;http://lists.maptools.org/pipermail/proj/2011-April/thread.html#5634&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It mentions that a recent version of GDAL now supports NTv2 as a format. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Melita&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 00:05:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-portal-questions/combining-coordinate-frame-transformation-method/m-p/476832#M6661</guid>
      <dc:creator>MelitaKennedy</dc:creator>
      <dc:date>2011-04-12T00:05:09Z</dc:date>
    </item>
  </channel>
</rss>

