<?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: R&amp;H usage in Roads and Highways User Group (RHUG) Questions</title>
    <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740638#M35</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"&lt;SPAN style="background-color: #ffffff;"&gt;I'm a little late to the discussion but wanted to get in here."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Charles, welcome aboard and there is no way to be late as we all start at different times. Interesting find with multiply LRMs.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Jan 2020 19:40:52 GMT</pubDate>
    <dc:creator>RyanKoschatzky</dc:creator>
    <dc:date>2020-01-09T19:40:52Z</dc:date>
    <item>
      <title>R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740616#M13</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know Nathan has stated the Lrs_Edit_Log is not meant for human consumption and I don’t disagree, but one can still find what I believe is useful information, especially if you compare years. Here is the type/number of edits I calculated for NCDOT for 2018 using 10.5.1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TransactionDate &amp;gt; '1/1/2018' AND TransactionDate &amp;lt; '1/1/2019' AND ActivityType = X&lt;BR /&gt;Edit log Code/R&amp;amp;H Route action name/number of records&lt;BR /&gt;1 Create Route 4684&lt;BR /&gt;3 Reverse Route 140&lt;BR /&gt;4 Retire Route 1260&lt;BR /&gt;5 Extend Route 1070&lt;BR /&gt;6 Reassign Route 1020&lt;BR /&gt;7 Realign Route 349&lt;BR /&gt;12 Cartographic Realignment 19139&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What are your stats?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2019 12:59:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740616#M13</guid>
      <dc:creator>RyanKoschatzky</dc:creator>
      <dc:date>2019-06-11T12:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740617#M14</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll take any opportunity I get to play with Pandas!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Those stats are very impressive. You guys are churning out the transactions! Hopefully once we get our implementation solidified, we'll see these numbers grow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's what I found for NYS:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;                            COUNT
ACTIVITY
01 - Create route             382
02 - Calibrate route         3204
03 - Reverse route            211
04 - Retire route            1169
05 - Extend route             494
06 - Reassign route          1272
07 - Realign route            806
12 - Carto realign/GP Tool   1404
13 - Load route                46

&amp;gt;&amp;gt;&amp;gt; sum(log_df_by_activity['COUNT'])
8988
&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;There was a lot of route loading that went on in 2018. I would need to parse out the ROUTE_IDs from the log table's blob field to get a true indication of how many routes were loaded into the system, and I don't think the juice is worth the squeeze.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's how I came up with the table:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; datetime
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; os

&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; numpy &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; np
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; pandas &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; pd

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'Database Connections\prod_elrs_elrs_ad_lockroot.sde'&lt;/SPAN&gt;

log_table &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListTables&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'*Edit_Log'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

where_clause &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;
    &lt;SPAN class="string token"&gt;"TRANSACTIONDATE &amp;gt;= '{}' "&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;datetime&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;datetime&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;2018&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;
    &lt;SPAN class="string token"&gt;"AND TRANSACTIONDATE &amp;lt; '{}'"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;datetime&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;datetime&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;2019&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
table_array &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;TableToNumPyArray&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;
    log_table&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'TRANSACTIONDATE'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'ROUTEID'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'ACTIVITYTYPE'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'USERNAME'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    where_clause&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;where_clause
&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
log_df &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; pd&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;DataFrame&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;table_array&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

condition_list &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;
    log_df&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ACTIVITYTYPE &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; log_df&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ACTIVITYTYPE &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    log_df&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ACTIVITYTYPE &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;3&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; log_df&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ACTIVITYTYPE &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;4&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    log_df&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ACTIVITYTYPE &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;5&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; log_df&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ACTIVITYTYPE &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;6&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    log_df&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ACTIVITYTYPE &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;7&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; log_df&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ACTIVITYTYPE &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;12&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    log_df&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ACTIVITYTYPE &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;13&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
choice_list &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;
    &lt;SPAN class="string token"&gt;'Create route'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Calibrate route'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    &lt;SPAN class="string token"&gt;'Reverse route'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Retire route'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    &lt;SPAN class="string token"&gt;'Extend route'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Reassign route'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    &lt;SPAN class="string token"&gt;'Realign route'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Carto realign/GP Tool'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    &lt;SPAN class="string token"&gt;'Load route'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

log_df&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'ACTIVITYDESCRIPTION'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; np&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;select&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;condition_list&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; choice_list&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

log_df&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'ACTIVITY'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;
    log_df&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'ACTIVITYTYPE'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;apply&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;lambda&lt;/SPAN&gt; x&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'{:02d}'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;x&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; 
    &lt;SPAN class="string token"&gt;' - '&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; 
    log_df&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'ACTIVITYDESCRIPTION'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

log_df_by_activity &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; log_df&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;groupby&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'ACTIVITY'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;count&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
log_df_by_activity &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; log_df_by_activity&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'ROUTEID'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
log_df_by_activity&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;columns &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'COUNT'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;log_df_by_activity&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

log_df_by_user &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; log_df&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;groupby&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'USERNAME'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;count&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:31:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740617#M14</guid>
      <dc:creator>AndrewVitale3</dc:creator>
      <dc:date>2021-12-12T07:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740618#M15</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Andrew,&lt;/P&gt;&lt;P&gt;This is good stuff and thanks for sharing the code.&amp;nbsp; I know what I would like is some way to do something similar to make a&amp;nbsp;readable audit trail of edits.&amp;nbsp; But to do that I would need a programmatic way to do the "Show XML" right-click to the edit log.&amp;nbsp; Have you (or anybody else) been able to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jun 2019 16:32:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740618#M15</guid>
      <dc:creator>PhilHardy</dc:creator>
      <dc:date>2019-06-20T16:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740619#M16</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice Andrew.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, we a have a few transactions but with up to 11 editors at one point I would hope so.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had dropped out calibration point because our numbers would look over inflated as we typically have more then the traditional 2 points per route from our data load. For 2018 our&amp;nbsp;Calibrate Route was 32463 records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We don't have any loaded routes because we did that work in 2016 before we started going live when we where fixing branched routes etc. Our 2017 number are slightly below 2018 totals but 2019 seems on pace with&amp;nbsp;2018 numbers. As with anything, I not 100% sure what numbers really mean other then we have touched a lot of data and if we want to put metrics behind them in the future we have something that can be comparable through the years.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jun 2019 17:05:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740619#M16</guid>
      <dc:creator>RyanKoschatzky</dc:creator>
      <dc:date>2019-06-20T17:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740621#M18</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Andrew, good stuff.&amp;nbsp; The edit log adds an extra difficulty over just working with XML.&amp;nbsp; It stores the XML as a blob in the EditData field.&amp;nbsp; That is the part that has me stuck.&amp;nbsp; I don't know how to unlock that blob data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jun 2019 17:34:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740621#M18</guid>
      <dc:creator>PhilHardy</dc:creator>
      <dc:date>2019-06-20T17:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740622#M19</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Phil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It definitely adds some complexity, but I can see why Esri made this decision. Our log table would be nothing but load route activities at this point. If you come up with a more efficient way to parse the xml once it's extracted in the cursor, I'd love to see it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jun 2019 17:52:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740622#M19</guid>
      <dc:creator>AndrewVitale3</dc:creator>
      <dc:date>2019-06-20T17:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740623#M20</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With a new year, I thought I would report on NCDOT's 2019 stats.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;TransactionDate &amp;gt; '1/1/2019' AND TransactionDate &amp;lt; '1/1/2020' AND ActivityType = X&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;Edit log Code/R&amp;amp;H Route action name/number of records&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;1 Create Route 7476&lt;/P&gt;&lt;P&gt;3 Reverse Route 127&lt;/P&gt;&lt;P&gt;4 Retire Route 4563&lt;/P&gt;&lt;P&gt;5 Extend Route 1992&lt;/P&gt;&lt;P&gt;6 Reassign Route 1058&lt;/P&gt;&lt;P&gt;7 Realign Route 795&lt;/P&gt;&lt;P&gt;12 Cartographic Realignment 32154&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please share your stats.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jan 2020 13:10:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740623#M20</guid>
      <dc:creator>RyanKoschatzky</dc:creator>
      <dc:date>2020-01-03T13:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740624#M21</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice! You've been busy. Here's where NYSDOT came in for the year:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;                            COUNT
ACTIVITY
01 - Create route            1425
02 - Calibrate route          964
03 - Reverse route            193
04 - Retire route             843
05 - Extend route             555
06 - Reassign route           196
07 - Realign route            626
12 - Carto realign/GP Tool   1512
13 - Load route                 7&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:31:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740624#M21</guid>
      <dc:creator>AndrewVitale3</dc:creator>
      <dc:date>2021-12-12T07:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740625#M22</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ACTIVITY for 2019-2020, 1471 total&lt;/P&gt;&lt;P&gt;1 - Create Route: 9&lt;/P&gt;&lt;P&gt;2- Calibrate Route: 1203&lt;/P&gt;&lt;P&gt;3 - Reverse Route: 0&lt;/P&gt;&lt;P&gt;4 - Retire: 86&lt;/P&gt;&lt;P&gt;5 - Extend: 11&lt;/P&gt;&lt;P&gt;6 - Reassign: 35&lt;/P&gt;&lt;P&gt;7- Realign: 17&lt;/P&gt;&lt;P&gt;12 - Carto Realign: 107&lt;/P&gt;&lt;P&gt;13 - Load: 3&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2020 21:24:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740625#M22</guid>
      <dc:creator>KyleGonterwitz</dc:creator>
      <dc:date>2020-01-07T21:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740626#M23</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;all of our KDOT stats start in&amp;nbsp;early July 2019 when we implemented into production roads and highways&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2020 21:32:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740626#M23</guid>
      <dc:creator>KyleGonterwitz</dc:creator>
      <dc:date>2020-01-07T21:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740627#M24</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maryland's Report:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 - Create Route - 227&lt;/P&gt;&lt;P&gt;2 - Calibrate Route - 4443&lt;/P&gt;&lt;P&gt;3 - Reverse Route - 37&lt;/P&gt;&lt;P&gt;4 - Retire Route - 175&lt;/P&gt;&lt;P&gt;5 - Extend Route - 51&lt;/P&gt;&lt;P&gt;6 - Reassign Route - 198&lt;/P&gt;&lt;P&gt;7 - Realign Route - 689&lt;/P&gt;&lt;P&gt;12 - Cartographic Realignment - 4037&lt;/P&gt;&lt;P&gt;13 - Load Route - 0&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2020 21:43:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740627#M24</guid>
      <dc:creator>MarshallStevenson__SHA_</dc:creator>
      <dc:date>2020-01-07T21:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740628#M25</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Iowa's Numbers:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH align="left" bgcolor="#C0C0C0"&gt;ACTIVITYTYPE&lt;/TH&gt;&lt;TH align="left" bgcolor="#C0C0C0"&gt;EDITS_2019&lt;/TH&gt;&lt;TH align="left" bgcolor="#C0C0C0"&gt;EDITS_2018&lt;/TH&gt;&lt;TH align="left" bgcolor="#C0C0C0"&gt;EDITS_2017&lt;/TH&gt;&lt;TH align="left" bgcolor="#C0C0C0"&gt;EDITS_2016&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;1&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;402&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;574&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;257&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;356&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;2&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;2137&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;3081&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;1655&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;625&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;3&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;15&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;34&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;7&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;5&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;4&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;340&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;334&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;232&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;126&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;5&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;293&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;452&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;175&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;203&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;6&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;210&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;257&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;84&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;37&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;7&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;223&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;270&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;130&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;78&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;12&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;429&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;600&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;429&lt;/DIV&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap"&gt;&lt;DIV align="right"&gt;72&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jan 2020 18:30:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740628#M25</guid>
      <dc:creator>MichaelClement</dc:creator>
      <dc:date>2020-01-08T18:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740629#M26</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Andrew, Kyle, Marshall and Michael for responding.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have any of you broken down the edit types per route class or system vs nonsystem? I have not yet for our data but that is planned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When looking at the activity type record numbers, did any of the values surprise you for the way your departments are set up? I was expecting most of our values to increase based on what the mid year results showed but not by the numbers I saw.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2020 12:13:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740629#M26</guid>
      <dc:creator>RyanKoschatzky</dc:creator>
      <dc:date>2020-01-09T12:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740630#M27</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;SELECT&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;ActivityType&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;count&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;ObjectId&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; Edits
  &lt;SPAN class="keyword token"&gt;FROM&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;RH&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;LRS_EDIT_LOG&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
  &lt;SPAN class="keyword token"&gt;group&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;by&lt;/SPAN&gt; ActivityType
  &lt;SPAN class="keyword token"&gt;order&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;by&lt;/SPAN&gt; ActivityType

&lt;SPAN class="keyword token"&gt;SELECT&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;ActivityType&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;count&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;ObjectId&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; Edits
  &lt;SPAN class="keyword token"&gt;FROM&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;RH&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;LRS_EDIT_LOG&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
      &lt;SPAN class="keyword token"&gt;WHERE&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;NetworkId &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;AND&lt;/SPAN&gt; Substring&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;RouteID&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;4&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;in&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;3&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;4&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;OR&lt;/SPAN&gt;  &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;NetworkId &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;2&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;AND&lt;/SPAN&gt; Substring&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;RouteID&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;in&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;3&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;4&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
  &lt;SPAN class="keyword token"&gt;group&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;by&lt;/SPAN&gt; ActivityType
  &lt;SPAN class="keyword token"&gt;order&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;by&lt;/SPAN&gt; ActivityType

&lt;SPAN class="keyword token"&gt;SELECT&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;ActivityType&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;count&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;ObjectId&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; Edits
&lt;SPAN class="keyword token"&gt;FROM&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;RH&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;LRS_EDIT_LOG&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;WHERE&lt;/SPAN&gt; NetworkId &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt; 
	&lt;SPAN class="operator token"&gt;AND&lt;/SPAN&gt; Substring&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;RouteID&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;4&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;in&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;3&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;4&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;group&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;by&lt;/SPAN&gt; ActivityType
&lt;SPAN class="keyword token"&gt;order&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;by&lt;/SPAN&gt; ActivityType
‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This SQL query give me breakdowns by state/nonstate system&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Total:&lt;/P&gt;&lt;P&gt;ActivityType Edits&lt;BR /&gt;1 9&lt;BR /&gt;2 1203&lt;BR /&gt;4 86&lt;BR /&gt;5 11&lt;BR /&gt;6 35&lt;BR /&gt;7 17&lt;BR /&gt;12 107&lt;BR /&gt;13 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State System Edits (we have 2 LRMS with state system) including ramps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActivityType Edits&lt;BR /&gt;1 2&lt;BR /&gt;2 243&lt;BR /&gt;4 31&lt;BR /&gt;5 5&lt;BR /&gt;6 6&lt;BR /&gt;7 1&lt;BR /&gt;12 51&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Non State System Edits&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActivityType Edits&lt;BR /&gt;1 7&lt;BR /&gt;2 960&lt;BR /&gt;4 55&lt;BR /&gt;5 6&lt;BR /&gt;6 29&lt;BR /&gt;7 16&lt;BR /&gt;12 56&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 3 "13" edit types were from a consultant and have null values on the row, I can't explain that.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is an interesting performance metric.&amp;nbsp; I thought our State System edits would be higher, but this makes sense because we put our greatest effort into loading the State System as clean as possible.&amp;nbsp; Most of these edits are calibrations of the nonstate classified system.&amp;nbsp; I can also break them down by editor - we have three editors, one has done about 89 edits, one has done about 15, and the third did all the rest.&amp;nbsp; I'm mostly surprised that we have not done or accounted for any reverse route edits.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:31:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740630#M27</guid>
      <dc:creator>KyleGonterwitz</dc:creator>
      <dc:date>2021-12-12T07:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740631#M28</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Either this table doesnt do what we think it does, or we will be filing a support ticket, because we are pretty sure it is not tracking all the edits we've done.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2020 14:38:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740631#M28</guid>
      <dc:creator>KyleGonterwitz</dc:creator>
      <dc:date>2020-01-09T14:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740632#M29</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's our stats by activity and "Roadway Type". We currently have 4 roadway types:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Ramp&lt;/LI&gt;&lt;LI&gt;Road (Local roads)&lt;/LI&gt;&lt;LI&gt;Route (Signed Routes)&lt;/LI&gt;&lt;LI&gt;Not in RIS (Dual-carriageway geometries that are waiting on the inventory)&lt;/LI&gt;&lt;/UL&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;                                        ROUTEID
ACTIVITY                   ROADWAYTYPE
01 - Create route          Not in RIS        87
                           Ramp              46
                           Road            1292
02 - Calibrate route       Not in RIS        12
                           Ramp              95
                           Road             816
                           Route             41
03 - Reverse route         Not in RIS         2
                           Road             188
                           Route              3
04 - Retire route          Not in RIS        64
                           Ramp             117
                           Road             622
                           Route             40
05 - Extend route          Not in RIS         7
                           Ramp              10
                           Road             531
                           Route              7
06 - Reassign route        Not in RIS         3
                           Ramp              10
                           Road             175
                           Route              8
07 - Realign route         Not in RIS       111
                           Ramp              39
                           Road             322
                           Route            154
12 - Carto realign/GP Tool Not in RIS         4
                           Ramp             112
                           Road            1386
                           Route             10

# Edit: My original "join" logic was adding rows to the table‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd say on the whole, the stats kind of match my expectations.&amp;nbsp;The vast majority of our edits are on local roads. This&amp;nbsp; makes sense given the shear quantity of local roads and our business practices. The most surprising stat to me in the above table is the fact that 3 of our state routes underwent a "Reverse Route" edit. If I had to guess, these were probably short administrative routes that we have in our system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We've had various "efforts" throughout the years that partially show up in these statistics, but I feel like a lot of the story is missing. For example, as we became comfortable with R&amp;amp;H's concurrency model, we made a concerted effort to remove local roads that were fully overlapped by state routes. Much of this work took place in 2018, hence we see a slightly larger number of retire route activities in 2018 compared to 2019. I'd&amp;nbsp;have expected the difference to be much greater. I think the interesting story for this particular example lies in the magnitude of the edits. We'd probably have to parse the XML from the edit log to test this, but I'd guess that the majority of the 2018 retire route activities were conducted on the entirety of a route, whereas 2019 probably saw more partial route retirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are still working towards managing our inventory as internal events. I'll be curious how the event edit statistics compare to the route geometry statistics once we get there. I'd imagine a lot more transactions take place on the event tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:31:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740632#M29</guid>
      <dc:creator>AndrewVitale3</dc:creator>
      <dc:date>2021-12-12T07:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740633#M30</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any pattern to the edits you believe are missing from the log?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2020 15:09:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740633#M30</guid>
      <dc:creator>AndrewVitale3</dc:creator>
      <dc:date>2020-01-09T15:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740634#M31</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We think&amp;nbsp;there could be a pattern related to undoing the edits though the act of not saving edits in a version and then redoing the edits in that version.&amp;nbsp; We are going to test this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2020 15:24:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740634#M31</guid>
      <dc:creator>KyleGonterwitz</dc:creator>
      <dc:date>2020-01-09T15:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740635#M32</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm a little late to the discussion but wanted to get in here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WV numbers are this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;TABLE height="267" style="width: 297px; border-width: 1px; border-color: rgba(0, 0, 0, 0); height: 267px;"&gt;&lt;TBODY&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px; width: 248px;"&gt;1 - Create Route&lt;/TD&gt;&lt;TD style="height: 25px; width: 34px;"&gt;351&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 16px;"&gt;&lt;TD style="height: 25px; width: 248px;"&gt;2 - Calibrate Route&lt;/TD&gt;&lt;TD style="height: 25px; width: 34px;"&gt;2194&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px; width: 248px;"&gt;3 - Reverse Route&lt;/TD&gt;&lt;TD style="height: 25px; width: 34px;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px; width: 248px;"&gt;4 - Retire Route&lt;/TD&gt;&lt;TD style="height: 25px; width: 34px;"&gt;15&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px; width: 248px;"&gt;5 - Extend Route&lt;/TD&gt;&lt;TD style="height: 25px; width: 34px;"&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px; width: 248px;"&gt;6 - Reassign Route&lt;/TD&gt;&lt;TD style="height: 25px; width: 34px;"&gt;64&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px; width: 248px;"&gt;7 - Realign Route&lt;/TD&gt;&lt;TD style="height: 25px; width: 34px;"&gt;10&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 50px;"&gt;&lt;TD style="height: 50px; width: 248px;"&gt;12 - Cartographic Realignment&lt;/TD&gt;&lt;TD style="height: 50px; width: 34px;"&gt;6379&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px; width: 248px;"&gt;TOTAL&lt;/TD&gt;&lt;TD style="height: 25px; width: 34px;"&gt;9017&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A note is needed.&amp;nbsp; WVDOT has two LRM's and these are numbers for NetworkID "1".&amp;nbsp; Further I'm not all that confident in those numbers since as I look at the NetworkID compared to the RouteID I see that they don't always match.&amp;nbsp; In other words, we use a different format for the RouteID between our LRM's so we can tell at a glance which network it is.&amp;nbsp; Problem is that doesn't always match the recorded attribute for NetworkID.&amp;nbsp; Makes me wonder how much we can glean from this table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2020 16:23:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740635#M32</guid>
      <dc:creator>CharlesMcNeel</dc:creator>
      <dc:date>2020-01-09T16:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: R&amp;H usage</title>
      <link>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740636#M33</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1- Create Route:&amp;nbsp;6571&lt;/P&gt;&lt;P&gt;2- Calibrate Route: 466&lt;/P&gt;&lt;P&gt;3- Reverse Route: 54&lt;/P&gt;&lt;P&gt;4- Retire Route: 117&lt;/P&gt;&lt;P&gt;5- Extend Route: 451&lt;/P&gt;&lt;P&gt;6- Reassign Route: 6&lt;/P&gt;&lt;P&gt;7- Realign Route: 14&lt;/P&gt;&lt;P&gt;12- Carto Realign: 246&lt;/P&gt;&lt;P&gt;13- Load: 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOL&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2020 16:33:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/roads-and-highways-user-group-rhug-questions/r-h-usage/m-p/740636#M33</guid>
      <dc:creator>NicoleHanson1</dc:creator>
      <dc:date>2020-01-09T16:33:31Z</dc:date>
    </item>
  </channel>
</rss>

