<?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 Re: How do I modify automatic coordinate transformation in ArcMap? in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86916#M2267</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, Venkat.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there an event that fires before ArcMap starts the automatic transformation?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is this automatic transformation done using a geoprocessor?&amp;nbsp; If so, how do I get access to the geoprocessor so I can handle its ToolExecuting event?&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm looking for something that will allow me to hook into ArcMap in order to possibly update the IGeoTransformation before the input features get transformed to the data frame's coordinate system.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Bob&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Nov 2010 11:29:27 GMT</pubDate>
    <dc:creator>BobCave</dc:creator>
    <dc:date>2010-11-30T11:29:27Z</dc:date>
    <item>
      <title>How do I modify automatic coordinate transformation in ArcMap?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86914#M2265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;When loading layers, ArcMap will automatically transform input coordinates to the coordinate system currently defined on the data frame.&amp;nbsp; As part of this process, ArcMap may display a dialog that asks the user which datum transformation to use.&amp;nbsp; We have a requirement to implement an extension that will automate the selection of the datum transformation based on the source and target coordinate systems and the bounds of the data.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To this end, I need a mechanism to get access to the process before ArcMap performs the automatic transformation so that I can modify the IGeoTransformation parameters, but I have not been able to find an event or other way to do this.&amp;nbsp; I tried hooking up the IActiveViewEvents.ItemAdded event, but that gets fired after the transformation has already taken place.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there an event that will allow me to change the IGeoTransformation definition before ArcMap performs its transformation?&amp;nbsp; If so, a pointer to an example or a code snippet would be greatly appreciated (I will be using C#).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Bob&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Nov 2010 19:54:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86914#M2265</guid>
      <dc:creator>BobCave</dc:creator>
      <dc:date>2010-11-29T19:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: How do I modify automatic coordinate transformation in ArcMap?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86915#M2266</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;&amp;nbsp; Please find below code that might help you...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;private void Transform()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ISpatialReferenceFactory2 spatialReferenceFactory2 = new&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SpatialReferenceEnvironmentClass();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Mean for Great Britain.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IGeoTransformation geoTransformation =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; spatialReferenceFactory2.CreateGeoTransformation((int)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; esriSRGeoTransformationType.esriSRGeoTransformation_OSGB1936_To_WGS1984_1)as&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IGeoTransformation;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ISpatialReference fromSpatialReference;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ISpatialReference toSpatialReference;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoTransformation.GetSpatialReferences(out fromSpatialReference, out&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; toSpatialReference);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.Windows.Forms.MessageBox.Show(geoTransformation.Name);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.Windows.Forms.MessageBox.Show(fromSpatialReference.Name + ", " +&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; toSpatialReference.Name);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks and Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Venkat&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Nov 2010 03:37:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86915#M2266</guid>
      <dc:creator>Venkata_RaoTammineni</dc:creator>
      <dc:date>2010-11-30T03:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I modify automatic coordinate transformation in ArcMap?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86916#M2267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, Venkat.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there an event that fires before ArcMap starts the automatic transformation?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is this automatic transformation done using a geoprocessor?&amp;nbsp; If so, how do I get access to the geoprocessor so I can handle its ToolExecuting event?&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm looking for something that will allow me to hook into ArcMap in order to possibly update the IGeoTransformation before the input features get transformed to the data frame's coordinate system.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Bob&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Nov 2010 11:29:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86916#M2267</guid>
      <dc:creator>BobCave</dc:creator>
      <dc:date>2010-11-30T11:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do I modify automatic coordinate transformation in ArcMap?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86917#M2268</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;&amp;nbsp; Before start arcmap...you need to change coordinate system...means&amp;nbsp; you need to go for stand alone application ...from that you can play something before....but your using arcmap and you are looking for plugin.. i dont think it is possible for start arcmap...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; There is one option in VBA.you can look that option i think...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Private Function MxDocument_OpenDocument() As Boolean&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;End Function&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Something like that...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks and Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Venkat&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Dec 2010 02:31:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86917#M2268</guid>
      <dc:creator>Venkata_RaoTammineni</dc:creator>
      <dc:date>2010-12-01T02:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do I modify automatic coordinate transformation in ArcMap?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86918#M2269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thanks, Venkat.&lt;BR /&gt;&lt;BR /&gt;Is there an event that fires before ArcMap starts the automatic transformation?&lt;BR /&gt;Is this automatic transformation done using a geoprocessor?&amp;nbsp; If so, how do I get access to the geoprocessor so I can handle its ToolExecuting event?&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;I'm looking for something that will allow me to hook into ArcMap in order to possibly update the IGeoTransformation before the input features get transformed to the data frame's coordinate system.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Bob&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't know if there's an event, but part of what you're looking for is IMapGeographicTransformations. See VBA (sorry!) below on how to change the default transformation loaded upon opening a new map document. Only NAD_1927_To_NAD_1983_NADCON is loaded by default.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Private Function MXDocument_NewDocument() as Boolean

&amp;nbsp;&amp;nbsp; ' Start by getting a handle on the current FocusMap
&amp;nbsp;&amp;nbsp; Dim pMxDoc As IMxDocument
&amp;nbsp;&amp;nbsp; Set pMxDoc = Application.Document

&amp;nbsp;&amp;nbsp; Dim pMap As IMap
&amp;nbsp;&amp;nbsp; Set pMap = pMxDoc.FocusMap

&amp;nbsp;&amp;nbsp; Dim pSpRFc As SpatialReferenceEnvironment
&amp;nbsp;&amp;nbsp; Set pSpRFc = New SpatialReferenceEnvironment

&amp;nbsp;&amp;nbsp; Dim pAlaskaNADCON As IGeoTransformation
&amp;nbsp;&amp;nbsp; set pAlaskaNADCON = pSpRFc.CreateGeoTRansformation(esriSRGeoTransformation_NAD_1927_TO_NAD_1983_AK)&amp;nbsp;&amp;nbsp;&amp;nbsp; 

'&amp;nbsp; Add the transformation to the operation set
&amp;nbsp;&amp;nbsp; Dim pGTSet As IGeoTransformationOperationSet
&amp;nbsp;&amp;nbsp; Set pGTSet = New GeoTransformationOperationSet

'&amp;nbsp; The Map uses IMapGeographicTransformations to access the geogtrans
&amp;nbsp;&amp;nbsp; Dim pMapGeo As IMapGeographicTransformations
&amp;nbsp;&amp;nbsp; Set pMapGeo = pMap
&amp;nbsp;&amp;nbsp; Set pGTSet = pMapGeo.GeographicTransformations

&amp;nbsp;&amp;nbsp; pGTSet.Set esriTransformForward, pAlaskaNADCON
&amp;nbsp;&amp;nbsp; pGTSet.Set esriTransformReverse, pAlaskaNADCON

End Function&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Melita&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:19:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86918#M2269</guid>
      <dc:creator>MelitaKennedy</dc:creator>
      <dc:date>2021-12-10T23:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: How do I modify automatic coordinate transformation in ArcMap?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86919#M2270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, Melita.&amp;nbsp; That info looks promising.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;A couple of questions:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) In your example, you say that only NAD_1927_To_NAD_1983_NADCON is loaded by default, then the code adds NAD_1927_TO_NAD_1983_AK to the collection.&amp;nbsp; Does this replace the original NAD_1927_To_NAD_1983 transformation, or add a second one?&amp;nbsp; If it adds a second one, how does ArcMap determine which one to use when converting from NAD27 to NAD83?&amp;nbsp; Does it prompt the user?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Will changes to the geographic transformation list is be saved with the map document?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Bob&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Dec 2010 13:07:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86919#M2270</guid>
      <dc:creator>BobCave</dc:creator>
      <dc:date>2010-12-02T13:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: How do I modify automatic coordinate transformation in ArcMap?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86920#M2271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thanks, Melita.&amp;nbsp; That info looks promising.&lt;BR /&gt;&lt;BR /&gt;A couple of questions:&lt;BR /&gt;&lt;BR /&gt;1) In your example, you say that only NAD_1927_To_NAD_1983_NADCON is loaded by default, then the code adds NAD_1927_TO_NAD_1983_AK to the collection.&amp;nbsp; Does this replace the original NAD_1927_To_NAD_1983 transformation, or add a second one?&amp;nbsp; If it adds a second one, how does ArcMap determine which one to use when converting from NAD27 to NAD83?&amp;nbsp; Does it prompt the user?&lt;BR /&gt;&lt;BR /&gt;2) Will changes to the geographic transformation list is be saved with the map document?&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;Bob&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Bob, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm sorry that I wasn't clearer. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Only one transformation per pair of GCS is allowed, so the Alaska transformation will replace the "NADCON" (actually for contiguous US, the lower 48). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Yes, the GeographicTransformationOperationSet is saved in the map document. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Melita&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Dec 2010 19:27:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86920#M2271</guid>
      <dc:creator>MelitaKennedy</dc:creator>
      <dc:date>2010-12-02T19:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: How do I modify automatic coordinate transformation in ArcMap?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86921#M2272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, Melita.&amp;nbsp; Just a couple more questions:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Is it possible to store the geographic transformation on the layer, rather than on the map, so that each layer could use a different transformation?&amp;nbsp; I looked through the documentation and I didn't see anything, so I suspect the answer is 'no', but I thought I would ask anyway.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Can I create an IGeoTransformation using an EPSG code instead of the ESRI code, or map an EPSG code to its associated ESRI code?&amp;nbsp; I tried to create a NAD83 to WGS84 NADCON transformation using the EPSG code, but I got an error saying that the code was not valid for a geographic transformation.&amp;nbsp; The documentation describes a method for creating a spatial reference from an EPSG code, but not a geographic transformation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Bob&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Dec 2010 16:21:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86921#M2272</guid>
      <dc:creator>BobCave</dc:creator>
      <dc:date>2010-12-03T16:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: How do I modify automatic coordinate transformation in ArcMap?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86922#M2273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thanks, Melita.&amp;nbsp; Just a couple more questions:&lt;BR /&gt;&lt;BR /&gt;1) Is it possible to store the geographic transformation on the layer, rather than on the map, so that each layer could use a different transformation?&amp;nbsp; I looked through the documentation and I didn't see anything, so I suspect the answer is 'no', but I thought I would ask anyway.&lt;BR /&gt;&lt;BR /&gt;2) Can I create an IGeoTransformation using an EPSG code instead of the ESRI code, or map an EPSG code to its associated ESRI code?&amp;nbsp; I tried to create a NAD83 to WGS84 NADCON transformation using the EPSG code, but I got an error saying that the code was not valid for a geographic transformation.&amp;nbsp; The documentation describes a method for creating a spatial reference from an EPSG code, but not a geographic transformation.&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;&lt;BR /&gt;Bob&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Bob, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) No. We have had several people ask for that functionality, but haven't scheduled it for a software release yet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) ISpatialReferenceFactory:CreateGeoTransformation which takes an integer 'code'. Where we can, we use the EPSG codes for our well-known IDs/codes. If you use an EPSG code and the object isn't created (using the appropriate function), we don't support it yet. We also have macros, or enumerations, under esriSR&amp;lt;objtype&amp;gt;. There's some code on GeoTransformationOperationSet here:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#/How_to_use_the_IGeoTransformationOperationSet_methods/000100000m6z000000/"&gt;http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#/How_to_use_the_IGeoTransformationOperationSet_methods/000100000m6z000000/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Melita&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Dec 2010 18:56:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-do-i-modify-automatic-coordinate/m-p/86922#M2273</guid>
      <dc:creator>MelitaKennedy</dc:creator>
      <dc:date>2010-12-03T18:56:51Z</dc:date>
    </item>
  </channel>
</rss>

