<?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 Creating a weekly work schedule in ArcGIS Network Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-network-analyst-questions/creating-a-weekly-work-schedule/m-p/609074#M5841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;I have to find a way to create a schedule for a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;fleet of&amp;nbsp;service vehicles which serve a few thousands customers over a week. If I had to serve each point once a week, the solution was easy (by multiplying the&amp;nbsp;number of vehicles in the number of days in a week), but my problem is that some customers (let's say 15%), have to be served twice a week. An extra complication is that the twice a week must not be consecutive (for example- Monday + Thursday or Tuesday + Friday).&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;As far as I remember, this kind of things were available in the Arc Logistics which is no longer exist.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;Asaf.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Aug 2016 08:06:16 GMT</pubDate>
    <dc:creator>AsafBen-Ari</dc:creator>
    <dc:date>2016-08-17T08:06:16Z</dc:date>
    <item>
      <title>Creating a weekly work schedule</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/creating-a-weekly-work-schedule/m-p/609074#M5841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;I have to find a way to create a schedule for a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;fleet of&amp;nbsp;service vehicles which serve a few thousands customers over a week. If I had to serve each point once a week, the solution was easy (by multiplying the&amp;nbsp;number of vehicles in the number of days in a week), but my problem is that some customers (let's say 15%), have to be served twice a week. An extra complication is that the twice a week must not be consecutive (for example- Monday + Thursday or Tuesday + Friday).&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;As far as I remember, this kind of things were available in the Arc Logistics which is no longer exist.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;Asaf.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2016 08:06:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/creating-a-weekly-work-schedule/m-p/609074#M5841</guid>
      <dc:creator>AsafBen-Ari</dc:creator>
      <dc:date>2016-08-17T08:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a weekly work schedule</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/creating-a-weekly-work-schedule/m-p/609075#M5842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right in that the VRP Solver does not currently directly do periodic routing as you describe it of specifying twice a week. &amp;nbsp;There are two options for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. You can solve this problem on a daily bases where you have all of the orders available every day and then change the revenue values to match your needs for that day. &amp;nbsp;So on day one you could use a revenue of 50,000 for the customers that need to be visited twice a week and 30,000 for customers only needing to be visited once a week. &amp;nbsp;After the day's routes are created. &amp;nbsp;The revenue is adjusted to reflect which customers were visited so if a once a week customer was visited the revenue goes to zero and will stay there for the rest of the week. &amp;nbsp;A twice a week customer would go to zero for the next day since they can't be consecutive and then up to 40,000 the following day. &amp;nbsp;This method would take post and pre processing of the orders daily but that could be automated. &amp;nbsp;The revenues might also need to be tweaked to give values that are big enough to make a difference in the model based on other costs. &amp;nbsp;This method will tend to favor the twice a week customers at the beginning of the week because of the higher revenue value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The other option is to model the whole week at once and use specialties to indicate what days the customers can be visited. &amp;nbsp;The customers that are twice a week customers would also have to have two orders, one for each day they are to be visited. &amp;nbsp;One of them would have a specialty of say Mon/Tue and the other a specialty of Thr/Fri. &amp;nbsp;The customers only needing to be visited once a week would not be given a specialty since they can be visited any day of the week. &amp;nbsp;The routes are then duplicated for each day of the week and the week day included in the route name for easy recognition. &amp;nbsp;For routes the specialties indicate which orders they can accommodate so both the Monday routes and the Tuesday Routes would have the specialty Mon/Tue. &amp;nbsp;This method&amp;nbsp;doesn't give the complete flexibility of the twice a week but just not consecutive days requirement but does allow for a lot of flexibility in the solver still and allows for the whole week to be solved at once. &amp;nbsp;The break up of days for the twice a week customers could be specified differently then the example above or changed up for just some of the orders.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps and let me know if you have more questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Heather&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Aug 2016 23:04:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/creating-a-weekly-work-schedule/m-p/609075#M5842</guid>
      <dc:creator>HeatherMoe</dc:creator>
      <dc:date>2016-08-19T23:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a weekly work schedule</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/creating-a-weekly-work-schedule/m-p/609076#M5843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;Hi Heather,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;Thank you very much for responding.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;I must admit that the second option is better understood, and looks much simple to apply as well.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm 0cm 0.0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;Unfortunately, the whole project got into a small delay.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;Anyhow, I promise to update you&amp;nbsp;as soon as I will get the chance to work on it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0cm; margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.5pt;"&gt;Asaf.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Aug 2016 08:56:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/creating-a-weekly-work-schedule/m-p/609076#M5843</guid>
      <dc:creator>AsafBen-Ari</dc:creator>
      <dc:date>2016-08-28T08:56:52Z</dc:date>
    </item>
  </channel>
</rss>

