<?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: Editing routes - syncing chainage to original layer in ArcGIS Pipeline Referencing Questions</title>
    <link>https://community.esri.com/t5/arcgis-pipeline-referencing-questions/editing-routes-syncing-chainage-to-original-layer/m-p/874439#M53</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Esri has worked with IBM Maximo team on the GIS integration. Maximo Spatial is a licensed module that can be used to tie into the GIS asset database.&amp;nbsp;&lt;A href="https://www.ibm.com/support/knowledgecenter/en/SSG2D3_7.6.0/com.ibm.spl.doc/c_prod_overview.html"&gt;https://www.ibm.com/support/knowledgecenter/en/SSG2D3_7.6.0/com.ibm.spl.doc/c_prod_overview.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Oct 2019 15:59:47 GMT</pubDate>
    <dc:creator>AyanPalit</dc:creator>
    <dc:date>2019-10-01T15:59:47Z</dc:date>
    <item>
      <title>Editing routes - syncing chainage to original layer</title>
      <link>https://community.esri.com/t5/arcgis-pipeline-referencing-questions/editing-routes-syncing-chainage-to-original-layer/m-p/874435#M49</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have setup simple linear referencing on a pipes layer by feeding in a line featureclass that contained start/end chainage values.&amp;nbsp; This create a M aware routes layer.&amp;nbsp; All the data is loaded into an Oracle Enterprise GDB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is being used in IBM Maximo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maximo is conifgured to pull its chainage values from the original attributes in the line featureclass.&amp;nbsp; The route layer (pipes), is M aware, but does not contain the original start/end chainage values, and I think this is by design.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the problem is if I make changes to the route layer,&amp;nbsp;Maximo still refers to the old chainage values in the original featureclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to &lt;A href="https://www.ibm.com/developerworks/community/wikis/home?lang=zh#!/wiki/IBM%20Maximo%20Asset%20Management/page/Basic%20configuration%20of%20Maximo%20Spatial%20with%20Maximo%20Linear"&gt;the Maximo documentation&lt;/A&gt;:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;SPAN style="color: #222222; background-color: #ffffff;"&gt;You need to keep the route feature class in sync with the original feature class configured in Maximo Spatial Asset Management. You must define a process to recreate it periodically.&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;STRONG&gt;If a route layer changes, how can I automate updating the original Start/End chainage values?&amp;nbsp;&lt;/STRONG&gt;(which Maximo is dependent on).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not using Roads &amp;amp; Highways or the Gas Pipeline model.&amp;nbsp; Just plain old linear referencing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2018 11:17:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pipeline-referencing-questions/editing-routes-syncing-chainage-to-original-layer/m-p/874435#M49</guid>
      <dc:creator>SimonJackson</dc:creator>
      <dc:date>2018-09-13T11:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: Editing routes - syncing chainage to original layer</title>
      <link>https://community.esri.com/t5/arcgis-pipeline-referencing-questions/editing-routes-syncing-chainage-to-original-layer/m-p/874436#M50</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Simon,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am struggling with a similar problem. Have you ever gotten the answer? Did you find solution to automate updating the original values?&lt;/P&gt;&lt;P&gt;Aleksandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Sep 2019 09:14:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pipeline-referencing-questions/editing-routes-syncing-chainage-to-original-layer/m-p/874436#M50</guid>
      <dc:creator>AleksandraZietara</dc:creator>
      <dc:date>2019-09-11T09:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: Editing routes - syncing chainage to original layer</title>
      <link>https://community.esri.com/t5/arcgis-pipeline-referencing-questions/editing-routes-syncing-chainage-to-original-layer/m-p/874437#M51</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since you are using a measured polyline layer(M-aware), you can use ST_Geometry functions to calculate the measure as an attribute. The functions to call are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;START = sde.st_minm(shape)&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;END = sde.st_maxm(shape)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Length calculation =&amp;nbsp;sde.st_maxm(shape) - sde.st_minm(shape)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can script this using samples at:&amp;nbsp;&amp;nbsp;&lt;A class="link-titled" href="https://desktop.arcgis.com/en/arcmap/latest/manage-data/using-sql-with-gdbs/st-geometry.htm" title="https://desktop.arcgis.com/en/arcmap/latest/manage-data/using-sql-with-gdbs/st-geometry.htm"&gt;ST_Geometry—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Sep 2019 21:58:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pipeline-referencing-questions/editing-routes-syncing-chainage-to-original-layer/m-p/874437#M51</guid>
      <dc:creator>AyanPalit</dc:creator>
      <dc:date>2019-09-17T21:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: Editing routes - syncing chainage to original layer</title>
      <link>https://community.esri.com/t5/arcgis-pipeline-referencing-questions/editing-routes-syncing-chainage-to-original-layer/m-p/874438#M52</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ayan and thank you for the response!&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I am more interested in is a configuration between Enterprise database and Maximo and keeping data in sync.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have quite opposite situation to Simon but the general question about automating incoming updates is the same.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a feature layer with linear data which exists in Maximo. I have taken a copy of this feature layer, converted linear data to X,Y coordinates and saved in my SQL EnterpriseGDB. Then I have configured Maximo Spatial with ArcGIS Server by delivering feature layer with X, Y coordinates and linking object by using ObjectID attribute. What I am wondering about are all the updates and new objects coming to Maximo (which is an original source of data). How can I keep data from ArcGIS updated? Do I need to run a separate script which converts every new object in Maximo to X,Y coordinates and saves in SQL EnterpriseGDB or is there any out-of-the-box solution inside Maximo Spatial which supports this operation?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any ESRI team working with integrations with IBM software? I did not find so much resources online.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2019 09:47:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pipeline-referencing-questions/editing-routes-syncing-chainage-to-original-layer/m-p/874438#M52</guid>
      <dc:creator>AleksandraZietara</dc:creator>
      <dc:date>2019-09-18T09:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: Editing routes - syncing chainage to original layer</title>
      <link>https://community.esri.com/t5/arcgis-pipeline-referencing-questions/editing-routes-syncing-chainage-to-original-layer/m-p/874439#M53</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Esri has worked with IBM Maximo team on the GIS integration. Maximo Spatial is a licensed module that can be used to tie into the GIS asset database.&amp;nbsp;&lt;A href="https://www.ibm.com/support/knowledgecenter/en/SSG2D3_7.6.0/com.ibm.spl.doc/c_prod_overview.html"&gt;https://www.ibm.com/support/knowledgecenter/en/SSG2D3_7.6.0/com.ibm.spl.doc/c_prod_overview.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2019 15:59:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pipeline-referencing-questions/editing-routes-syncing-chainage-to-original-layer/m-p/874439#M53</guid>
      <dc:creator>AyanPalit</dc:creator>
      <dc:date>2019-10-01T15:59:47Z</dc:date>
    </item>
  </channel>
</rss>

