<?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: nonexistent travel modes in the network dataset makes me unable to do python coding in ArcGIS Network Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078532#M7584</link>
    <description>&lt;P&gt;That's correct. Feature Class To Feature Class and Copy Features do not work with network datasets. There is no way to convert or export a shapefile network dataset. You have to recreate it from scratch in a file geodatabase.&amp;nbsp; Here is the procedure:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create a new file geodatabase&lt;/LI&gt;&lt;LI&gt;Create a new feature dataset within the file geodatabase in the spatial reference you want (you can even import the spatial reference from the shapefile to make sure it's the same)&lt;/LI&gt;&lt;LI&gt;Run Feature Class To Feature Class or Copy Features to export the la_streets_clip_UTM.shp shapefile (which has the streets data) to a new feature class in the feature dataset.&lt;/LI&gt;&lt;LI&gt;Use the Create Network Dataset tool to create a new network dataset in the feature dataset using that new street feature class as a source&lt;/LI&gt;&lt;LI&gt;Manually configure all the network dataset properties to match the properties of the original shapefile network dataset. Depending on how complex your shapefile network is, this may take some work. I'm sorry there isn't an easier way.&lt;/LI&gt;&lt;LI&gt;Run the Build Network tool to finalize the network. Address any build errors if needed, then test and validate your network.&lt;/LI&gt;&lt;/OL&gt;</description>
    <pubDate>Tue, 13 Jul 2021 23:34:36 GMT</pubDate>
    <dc:creator>MelindaMorang</dc:creator>
    <dc:date>2021-07-13T23:34:36Z</dc:date>
    <item>
      <title>nonexistent travel modes in the network dataset makes me unable to do python coding</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1077461#M7571</link>
      <description>&lt;P&gt;Hello. I'm using arcgis pro. I try to use Python to write codes to perform closest facility analysis under the network analyst tool. I need to set the travel modes. The following website provides the sample codes to update travel modes through python:&lt;A href="https://pro.arcgis.com/en/pro-app/latest/arcpy/network-analyst/travelmode.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/arcpy/network-analyst/travelmode.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If you look at the screenshot, the mode is gray at the top left corner. When I perform analyses in ArcGIS Pro by clicking buttons, I would go to travel settings and change the impedance. That lets me to choose whether I want to use distance or time to perform optimization.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The sample codes from&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/arcpy/network-analyst/travelmode.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/arcpy/network-analyst/travelmode.htm&lt;/A&gt;&amp;nbsp;that I use are the following:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="hljs-keyword"&gt;import&lt;/SPAN&gt;&lt;SPAN&gt; arcpy &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;network = &lt;/SPAN&gt;&lt;SPAN class="hljs-string"&gt;r"C:/Data/SanFrancisco.gdb/Transportation/Streets_ND"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="hljs-comment"&gt;# Get all travel modes from the network dataset&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;travel_modes = arcpy.na.GetTravelModes(network)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="hljs-comment"&gt;# Print the impedance attribute and restrictions used for each travel mode&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="hljs-keyword"&gt;for&lt;/SPAN&gt;&lt;SPAN&gt; travel_mode_name &lt;/SPAN&gt;&lt;SPAN class="hljs-keyword"&gt;in&lt;/SPAN&gt;&lt;SPAN&gt; travel_modes: travel_mode = travel_modes[travel_mode_name] print(travel_mode_name)&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;print(&lt;/SPAN&gt;&lt;SPAN class="hljs-string"&gt;"Impedance:"&lt;/SPAN&gt;&lt;SPAN&gt;, travel_mode.impedance)&lt;BR /&gt;print(&lt;/SPAN&gt;&lt;SPAN class="hljs-string"&gt;"Restrictions:"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN class="hljs-string"&gt;", "&lt;/SPAN&gt;&lt;SPAN&gt;.join(travel_mode.restrictions)) print(&lt;/SPAN&gt;&lt;SPAN class="hljs-string"&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;According to the codes, to set the impedance, I have to use&amp;nbsp;&lt;SPAN&gt;travel_mode.impedance. However, the travel_model I get using "travel_modes = arcpy.na.GetTravelModes(network)" is {}, which is blank.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me how I could set impedance through python even if the travel modes for my network data set is an empty set? Thank you.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jul 2021 00:23:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1077461#M7571</guid>
      <dc:creator>zhongying_gan</dc:creator>
      <dc:date>2021-07-10T00:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: nonexistent travel modes in the network dataset makes me unable to do python coding</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1077464#M7572</link>
      <description>&lt;P&gt;Does the newer nax module return the same issue?&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/arcpy/network-analyst/networkdataset.htm" target="_blank"&gt;NetworkDataset—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;check&amp;nbsp;&lt;SPAN&gt;travelModes under Properties for the network template you are working with&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jul 2021 01:52:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1077464#M7572</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-07-10T01:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: nonexistent travel modes in the network dataset makes me unable to do python coding</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078073#M7573</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you so much for pointing me to the newer nax module. I've used the command&amp;nbsp;arcpy.nax.GetTravelModes on my local network dataset, but it still returns {}. I have checked the properties of my local network dataset as you suggested. Under the "Travel Attributes" section of my network dataset, there are no travel modes, only costs (properties_localnetwork.png). I checked the San Francisco network dataset that is included in the arcgis pro tutorial, and there are travel modes (properties_tutorial.png). I tried to add a new travel mode to my own network dataset so that I can have a travel mode, following the instructions on&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/analysis/networks/create-travel-mode.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/analysis/networks/create-travel-mode.htm&lt;/A&gt;. However, my network dataset is read-only (properties_read_only.png). I tried to go to the properties of the network dataset and uncheck the box of "Read-only", but the next time I open the file, the&amp;nbsp;"Read-only" is checked again (read_only.png). Do you know how I could edit my network dataset?&lt;/P&gt;&lt;P&gt;I really don't know how I could perform closet facility analysis using Python now that there's no travel mode in my network dataset, and that I cannot create a new travel mode. If you could offer me some thoughts, I would really appreciate it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jul 2021 23:23:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078073#M7573</guid>
      <dc:creator>zhongying_gan</dc:creator>
      <dc:date>2021-07-12T23:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: nonexistent travel modes in the network dataset makes me unable to do python coding</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078080#M7574</link>
      <description>&lt;P&gt;I have move the threads to ArcGIS Network Analyst Questions.&lt;/P&gt;&lt;P&gt;You will have better luck getting a fuller response here than in the ArcGIS Pro or Python questions sections.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jul 2021 23:38:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078080#M7574</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-07-12T23:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: nonexistent travel modes in the network dataset makes me unable to do python coding</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078100#M7575</link>
      <description>&lt;P&gt;The recommended way to do Closest Facility analysis in Python in Pro is to use the Closest Facility python solver object.&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/arcpy/network-analyst/performing-network-analysis.htm" target="_blank" rel="noopener"&gt;Here is some documentation about network analysis with python generally.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/arcpy/network-analyst/closestfacility.htm" target="_blank" rel="noopener"&gt;Here is some documentation about the Closest Facility python object specifically.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;However, in order to do an analysis that way, your network dataset does need to have at least one travel mode, so you need to figure out how to create one for your network dataset. If your network dataset is a licensed non-editable network dataset, I believe you&amp;nbsp;&lt;EM&gt;should&lt;/EM&gt; be able to create travel modes anyway. That functionality should be available.&amp;nbsp; However, it sounds like something strange has happened and caused your network to be read only for some other reason. I'm not sure how to resolve that issue, but maybe &lt;A href="https://support.esri.com/en/" target="_self"&gt;Esri Support&lt;/A&gt; can help.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jul 2021 00:10:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078100#M7575</guid>
      <dc:creator>MelindaMorang</dc:creator>
      <dc:date>2021-07-13T00:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: nonexistent travel modes in the network dataset makes me unable to do python coding</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078129#M7576</link>
      <description>&lt;P&gt;Thank you so much for your reply. The network dataset I'm using is the following:&amp;nbsp;&lt;A href="https://apps.gis.ucla.edu/geodata/dataset/los-angeles-network-data" target="_blank"&gt;https://apps.gis.ucla.edu/geodata/dataset/los-angeles-network-data&lt;/A&gt;. I just noticed that it's supposed to be used in ArcMap instead of ArcGIS Pro. Do you think maybe this has something to do with the issue I'm encountering? However, I'm able to use this network dataset in ArcGIS Pro if I just use network analyst through clicking buttons instead of writing python codes. The attached screenshot is the network dataset in the catalog pane.&lt;/P&gt;&lt;P&gt;I would really appreciate it if you could offer some insights. Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jul 2021 04:16:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078129#M7576</guid>
      <dc:creator>zhongying_gan</dc:creator>
      <dc:date>2021-07-13T04:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: nonexistent travel modes in the network dataset makes me unable to do python coding</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078260#M7579</link>
      <description>&lt;P&gt;Ohhhhhh, it's because it's a shapefile network dataset. Shapefile network datasets are not editable in ArcGIS Pro. Shapefile is an older format we are trying to move users away from. A file geodatabase network dataset is preferred and fully compatible with Pro and ArcMap.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have ArcMap, you&amp;nbsp;&lt;EM&gt;might&lt;/EM&gt; be able to add travel modes to the shapefile network there and then use them in Pro. I'm not really sure if that works, though.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jul 2021 14:53:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078260#M7579</guid>
      <dc:creator>MelindaMorang</dc:creator>
      <dc:date>2021-07-13T14:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: nonexistent travel modes in the network dataset makes me unable to do python coding</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078338#M7581</link>
      <description>&lt;P&gt;Thank you so much for your reply. I opened ArcMap and tried to add travel modes using the instructions in the following link:&amp;nbsp;&lt;A href="https://desktop.arcgis.com/en/arcmap/latest/extensions/network-analyst/travel-modes-steps.htm" target="_blank"&gt;https://desktop.arcgis.com/en/arcmap/latest/extensions/network-analyst/travel-modes-steps.htm&lt;/A&gt;. However, it doesn't allow me to do so (the screenshot is attached). May I ask whether you have any insights on this, or if you could point me to a specific sub-forum under Esri community where I may have the best chance to get an answer? Thank you so much.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jul 2021 16:33:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078338#M7581</guid>
      <dc:creator>zhongying_gan</dc:creator>
      <dc:date>2021-07-13T16:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: nonexistent travel modes in the network dataset makes me unable to do python coding</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078344#M7582</link>
      <description>&lt;P&gt;You are in the right place to get help with this problem. The issue is that shapefile networks just aren't well supported with newer functionality.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a tutorial that shows you how to create a file geodatabase network dataset in Pro:&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/analysis/networks/how-to-create-a-usable-network-dataset.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/analysis/networks/how-to-create-a-usable-network-dataset.htm&lt;/A&gt;&amp;nbsp;You may be able to use the street data from your shapefile network dataset if you copy the shapefile into a file geodatabase feature dataset. Try using Feature class To Feature Class or Copy Features.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jul 2021 16:49:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078344#M7582</guid>
      <dc:creator>MelindaMorang</dc:creator>
      <dc:date>2021-07-13T16:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: nonexistent travel modes in the network dataset makes me unable to do python coding</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078529#M7583</link>
      <description>&lt;P&gt;Thank you so much for pointing me to "&lt;SPAN&gt;Feature class To Feature Class" and "Copy Features". However, I am not able to export the network dataset into a geodatabase. There are three elements in my network dataset: two shp-files and one nd-file (network_dataset.png). However, no matter I use&amp;nbsp;"Feature class To Feature Class" or "Copy Features", I am only able to get the two shp-files into the geodatabase. I am not able to get the network dataset into the geodatabase (feature class to feature class.png and copy features.png). I was wondering whether there's any specific way to export a nd-file into the geodatabase. Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jul 2021 23:28:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078529#M7583</guid>
      <dc:creator>zhongying_gan</dc:creator>
      <dc:date>2021-07-13T23:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: nonexistent travel modes in the network dataset makes me unable to do python coding</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078532#M7584</link>
      <description>&lt;P&gt;That's correct. Feature Class To Feature Class and Copy Features do not work with network datasets. There is no way to convert or export a shapefile network dataset. You have to recreate it from scratch in a file geodatabase.&amp;nbsp; Here is the procedure:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create a new file geodatabase&lt;/LI&gt;&lt;LI&gt;Create a new feature dataset within the file geodatabase in the spatial reference you want (you can even import the spatial reference from the shapefile to make sure it's the same)&lt;/LI&gt;&lt;LI&gt;Run Feature Class To Feature Class or Copy Features to export the la_streets_clip_UTM.shp shapefile (which has the streets data) to a new feature class in the feature dataset.&lt;/LI&gt;&lt;LI&gt;Use the Create Network Dataset tool to create a new network dataset in the feature dataset using that new street feature class as a source&lt;/LI&gt;&lt;LI&gt;Manually configure all the network dataset properties to match the properties of the original shapefile network dataset. Depending on how complex your shapefile network is, this may take some work. I'm sorry there isn't an easier way.&lt;/LI&gt;&lt;LI&gt;Run the Build Network tool to finalize the network. Address any build errors if needed, then test and validate your network.&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Tue, 13 Jul 2021 23:34:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078532#M7584</guid>
      <dc:creator>MelindaMorang</dc:creator>
      <dc:date>2021-07-13T23:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: nonexistent travel modes in the network dataset makes me unable to do python coding</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078826#M7585</link>
      <description>&lt;P&gt;Thank you for your detailed explanation. Now I'm following the steps in&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/analysis/networks/how-to-create-a-usable-network-dataset.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/analysis/networks/how-to-create-a-usable-network-dataset.htm&lt;/A&gt;&amp;nbsp;to create a new network datasets after importing the two shapefiles into a geodatabase.&lt;/P&gt;&lt;P&gt;However, I encountered another problem. The sources of the original network dataset is la_streets_clip_UTM, and la_streets_clip_UTM_ND_Junctions (source in the original dataset.png). Therefore, I use these two sources to create a new network dataset called la_ND (create network dataset.png). However, a default junction file is automatically created, whose name is la_ND_Junctions. And I am unable to uncheck it through Add/Remove Sources (cannot remove default junction.png), nor am I able to delete it through the catalog pane. I was wondering how I should approach this issue. Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jul 2021 17:56:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078826#M7585</guid>
      <dc:creator>zhongying_gan</dc:creator>
      <dc:date>2021-07-14T17:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: nonexistent travel modes in the network dataset makes me unable to do python coding</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078827#M7586</link>
      <description>&lt;P&gt;When you create and build a network dataset, the build process automatically generates a feature class of "system junctions". These are point features representing locations in the network where edges intersect. You should not edit or remove or interact with this auto-generated feature class. It's just there so everything else will work right.&lt;/P&gt;&lt;P&gt;In your old shapefile network,&amp;nbsp;&lt;SPAN&gt;la_streets_clip_UTM_ND_Junctions is probably the auto-generated system junctions. Don't bother exporting that or using it to create your new network. Just leave it out. Then, when you run Build Network to build your new network, it will auto-generate a fresh system junctions feature class. This is the expected, correct behavior.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jul 2021 18:01:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1078827#M7586</guid>
      <dc:creator>MelindaMorang</dc:creator>
      <dc:date>2021-07-14T18:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: nonexistent travel modes in the network dataset makes me unable to do python coding</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1079061#M7587</link>
      <description>&lt;P&gt;Thank you. I just constructed a new network dataset from the original shapefile, and was also able to create travel modes. The&amp;nbsp;new network dataset worked well in ArcGIS Pro. Thank you so much for your help along the way. I really appreciate it.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jul 2021 03:18:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/nonexistent-travel-modes-in-the-network-dataset/m-p/1079061#M7587</guid>
      <dc:creator>zhongying_gan</dc:creator>
      <dc:date>2021-07-15T03:18:24Z</dc:date>
    </item>
  </channel>
</rss>

