FARE BASED TRANSIT NETWORKS. Hyper-Network Generation Procedure and Specification

Size: px
Start display at page:

Download "FARE BASED TRANSIT NETWORKS. Hyper-Network Generation Procedure and Specification"

Transcription

1 FARE BASED TRANSIT NETWORKS Hyper-Network Generation Procedure and Specification Peter Kucirek, M.A.Sc. June 6, 2014

2 1 Preface The GTHA system of transit fares largely comprises individual agencies with an initial boarding fare and free transfers intra-agency. It unusually complex and very difficult to model using Emme, which lacks the ability to apply initial fare costs selectively. Prior work has experimented with the idea of using a hyper-network to model fares. The concept is theoretically sound, however its implementation was inflexible and utilized centroid connectors as key elements in its implementation. This feature made it difficult to apply to different zone systems, of which there are several in the region. Additionally, it is very advantageous to be able to not only model the current state of fares in the GTHA, but to also be able to test alternate fare scenarios. Therefore, it is desirable to create a general solution to problem; one that can be used to model both existing and alternate systems and that is not constrained to work with only one zone system. TMG has developed a procedure to generate the base fare-based transit network (FBTN), implemented as a Modeller Tool inside of the TMG Toolbox: Network Editing -> FBTA -> Create from schema 1. The remainder of this document split into four parts. The first part describes the structure of the resulting hyper-network, and how it is generated using a Modeller Tool. The second part details the input fare schema file, and how it is applied by the Tool. The third part provides some additional detail on usage and performance. The last part describes how the 2012 base fare schema was compiled, its sources, assumptions, and behaviours. 2 Hyper Network Generation Procedure The concept of a hyper network is that each agency has its own layer of virtual links and nodes, which are only connected to the base network by auxiliary transit (walk) links that contain the transit fare cost 2. In this implementation, this has been generalized to have each transit line belong to a group (instead of a hard-coded operator), in order to give the procedure more flexibility. The groups are specified using a fare schema file (see next section for details). The main assumption of this approach is that transfers between lines within the same group are free (unless a boarding cost is applied during assignment). To generate the appropriate hyper-network, six steps are followed: 1. Transit lines are classified into groups based on the fare schema file. 2. The network is pre-processed. The procedure attaches to each node a two sets of data: groups which are stopping at the node, and groups which are passing through the node. The two sets are mutually exclusive. Two groups of (non-zone) nodes are identified: 1 Also implemented as an XTMF module: GTAModel.NetworkAssignment.BuildFbtnFromSchema 2 Historical footnote: in prior implementations, these virtual links were only created when two operators shared links. Fare costs were applied to centroid connectors only. Page 1 of 15

3 a. Road (or Surface) nodes are connected to at least one link with the auto mode. b. Transit (or Station) nodes are connected to links with only transit or walk modes. 3. Surface nodes are processed first. For each group using a surface node (either stopping at or passing through), a new virtual node is created. The base node s attributes are copied over. For groups stopping at the node, the associated virtual node is connected using walk links to the base node and to each other. These walk links are indexed for later use The same procedure is followed for station nodes, except that virtual nodes are only created when two or more groups use the station node 4. This is done as station nodes already exist in their own layer in the network (e.g. subway links and nodes), and therefore do not need to moved over to a new layer. Any existing connected walk links are indexed appropriately. 5. Virtual surface nodes and virtual station nodes are connected to each other using walk links. 6. Finally, each transit line is moved over to its appropriate layer in the hyper network. In-vehicle links are created between virtual nodes when none exist. It should be noted that, currently, no effort is made to make the network look visually appealing. Virtual nodes are given the exact same coordinates as their base node, and virtual links copy the same shape as their base links. Therefore, the created hyper-network appears to be identical to the base network since the virtual nodes and links overlap the base precisely. 3 Fare Schema File Specification The new TMG implementation uses a fare schema file, implemented in Extensible Markup Language (XML). XML is a widely-used, hierarchical format which is human-readable. The fare schema file specification prescribes 3 collections of items necessary for generating the hyper-network : <groups>, <zones>, and <fare_rules>. 3.1 Groups Contains a list of transit line groupings. Conceptually, these groupings can be distinct transit agencies (e.g., TTC, GO Transit), but could also be distinct sub-groups of one agency (e.g. TTC Regular vs. TTC Downtown Express). It is important that ALL transit lines belong to a group to ensure proper behaviour when modelling transit. Also important to note is that each group will become its own layer in the hyper network generation procedure. Fewer groups reduces the size of the hyper network which, in trials, have surpassed maximum size allowed by the standard Emme license. Each group element contains a set of transit line selector expressions (used by Emme s Network Calculator) to select its lines. Groups are processed IN ORDER, so if a line meets the criteria for multiple groups, it will be assigned to the LAST group in the schema file. Each group must have a unique ID. <group id="ttc Regular"> <selection>line=t </selection> 3 A matrix data structure (NOT an actual Emme Matrix) stores sets of links, where each row and each column correspond with a transit line group. The 0 th index of the matrix refers to the base network. 4 In practise, this is very rare; with less than 5 occurrences in the TMG base network. Page 2 of 15

4 <group id="ttc DT Express"> <selection>line=t14 </selection> 3.2 Zones An optional element containing a list of fare zones and a list of shapefiles. Each node in the network can be assigned to a single zone. If a node meets the requirements for multiple zones it will be assigned to the LAST zone in the schema file (similar to groups). Each zone must have a unique ID. Two different types of fare zones are supported: node_selection and from_shapefile. Node selection zones apply a set of node selector expressions (used by Emme s Network Calculator). Zones loaded from shapefile reference an FID (feature ID) in one of the included shapefile elements. <shapefile id="1" path="d:/workspace/08 GTAModel V4/Data/Fares/York_Region_Zones.shp" /> <zone id="toronto" type="node_selection"> <node_selector>i=10000,20000</node_selector> </zone> <zone id="york 1" type="from_shapefile"> <from_shapefile id="1" FID="1" /> </zone> 3.3 Fare Rules Contains a list of fare rules to be applied to the hyper network once it has been generated. Each fare rule element has an associated cost and type, and sub-elements to determine which links or segments it applied to. During processing, fare rules are applied in order; with each fare rule s cost being added to its selected links or transit segments. This is an important distinction, as it allows fare rule costs to be negative, so long as the resulting summed value is greater than zero. For example, Hamilton Street Railway (HSR) has an initial fare of $1.65 5, with a special co-fare of $0.50 to GO Transit, which discounts the initial fare when riders transfer to GO train stations using HSR. To model this, two fare rules are required: A fare of $1.65 applied to all links incoming to HSR s layer of the transit network. A negative fare of $1.15 applied to links transferring from HSR to GO and from GO to HSR. 5 Average adult fares, taking into account passes, tickets, and other discounts. Page 3 of 15

5 So, when egressing from GO to HSR, the on-link fare is $ $1.15 = $0.50, which is the appropriate cofare. In the other direction, the discount is actually applied to the access-link to GO Transit, which uses an initial fare of $3.55. This works out to be $ $1.15 = $2.40; which is the resulting discount for transferring to GO. There are four fare rule types: initial boarding, transfer, zone crossing, and distance in vehicle Initial Boarding Rule (group, [in_zone]) Initial boarding rules have their cost applied to all LINKS inbound to the layer of the specified group. This rule can be further restricted to applying only to links starting from a specified ZONE. <fare cost="1.98" type="initial_boarding"> <group>ttc Regular <fare cost="0.15" type="initial_boarding"> <group>ttc Regular <in_zone>york 1</in_zone> Transfer (from_group, to_group, [bidirectional= False]) Transfer rules have their cost applied to all LINKS connecting one group s layer to another s. By default, this rule is applied one-way (to links from to to ) but can also be set to bidirectional (also applied to links to to from ). <fare cost="-2.23" type="transfer"> <from_group>hsr</from_group> <to_group>burlington Transit</to_group> <fare cost="-1.28" type="transfer"> <from_group>miway</from_group> Zone Crossing Rule (group, from_zone, to_zone, [bidirectional= False]) Zone crossing rules have their cost applied to all SEGMENTS whose i-node belong to the specified fromzone and whose j-node belong to the specified to-zone, for the specified group. Like transfer rules, they too can be applied in a bidirectional fashion. Page 4 of 15

6 <fare cost="2.13" type="zone_crossing"> <group>ttc Regular <from_zone>toronto</from_zone> <to_zone>york 1</to_zone> <fare cost="1.00" type="zone_crossing"> <group>yrt <from_zone>york 1</from_zone> <to_zone>york 2</to_zone> Distance In-Vehicle Rule (group) Distance in-vehicle rules have their cost applied to all SEGMENTS belonging to their specified group. This cost is multiplied by the segment LENGTH attribute (inherited from the segment s link) in other words, the cost attribute is specified in $ per km. <fare cost="0.0825" type="distance_in_vehicle"> <group>go Transit 4 Usage and Performance This section will cover how to use the above specification to generate new fare scenarios, as well as how to use the FBTN to run transit assignments. 4.1 Constructing New Fare Scenarios The fare rule types specified in the Fare Schema File (FSF) can be combined to generate flexible fare scenarios to test. Fare costs are applied to two types of network elements Links and Transit Segments saved into user-specified Extra Attributes. Rules in the FSF are applied sequentially and additively; if a link or transit segment meets the criteria for multiple rules, the resulting value will be the sum of the costs. See Section 3.3 for an example of how these rules can be set up. Internally, the tool indexes Links and Segments while creating the FBTN. Links are indexed into a table whose rows and columns correspond to the group number (where 0 represents the base network). For example, if the TTC is group 1, then the grid at [0, 1] contain all of the links from the base network to the TTC virtual layer. A similar table indexes Segments based on which zones they cross. This framework leaves room for future extensibility, should new fare rule types be required. Page 5 of 15

7 4.2 Limitations There are limits to the types of fare rules that can be expressed using the above framework. Rules that are time-dynamic, that require information about the time that has elapsed since the beginning of a path, are not possible to model within Emme s time-static framework. Rules which apply to different classes of passenger (e.g. student and/or senior fares) are not supported by this framework, although it might be possible to model using multiple Emme assignments. Finally, rules which require origin-to-destination information, or access-point-to-egress-point (e.g. GO transit fare zones) are not possible to model without access to the path-building algorithm, which Emme does not provide. However the last rules can be approximated using either in-vehicle distance or using zone-crossing rules. 4.3 Transit Assignment The generated FBTN is compatible with Emme Transit Assignment tools (Standard, Extended, Congested, etc.), although the Standard Transit Assignment cannot be used to run fare-based transit assignment (FBTA). It is easy enough to configure the Extended Transit Assignment tool (and the others) to run an FBTA: Use the Link Extra Attribute containing transfer fares and an Auxiliary transit cost (with the appropriate perception factor), and use the Transit Segment Extra Attribute containing in-vehicle fares as an In-vehicle cost (with the appropriate perception factor). See Figure 1 below for an example. Figure 1: Setting up FBTA using Extended Transit Assignment 4.4 Performance There are no significant performance issues when using this tool. The FBTN generation procedure took approximately 30 seconds to run on the TMG machines. A non-fbta was run on the resulting network and there were no noticeable lags in the performance. Page 6 of 15

8 An important detail to note: while developing this tool, TMG staff ran into issues with network size. The procedure required more nodes than a Size 13 license permitted. To address this issue, another tool was developed to reduce the node requirements by deleting mid-block nodes while preserving link attributes. Over 3,000 nodes were removed from the 2012 Base Network, which was sufficient to successfully run the FBTN generation procedure. A separate tool to estimate the required network size has also been developed Base Fare Schema In creating the base fare schema file, 2012 fare prices were obtained from every GTHA transit agency. However, these data are what each agency shows to the public and do not reflect what is actually paid per-ride. A different value must be calculated, which blends the effects of different fare media: cash, tokens, and monthly passes. Fortunately, the TTC was able to provide a figure for average adult fare, which was used to pro-rate the unit price for 10 tickets for other agencies. This data is summarized in Table 1 below. The full base schema is transcribed in Appendix A. 5.1 Co-fares and Transfers With the exception of the TTC, all agencies offer a lower co-fare when transferring to and from GO Transit. These have been implemented as negative-cost fare rules, where the initial boarding fare is subtracted from the co-fare to get the difference applied to the appropriate transfer links. These co-fares are documented in Table 1. Additionally, several non-toronto agencies accept free transfers from each other (for example, Hamilton and Burlington). However, these are usually restricted by time of trip (e.g. within a two-hour period from the original time of purchase). This is just not possible to model within a time-static framework, and so these free transfers were omitted from the base schema. Agency Ticket price Average adult fare Applied initial boarding fare GO Transit Co-fare Applied Co-fare Toronto Transit Commission $ 2.60 $1.98 $1.98 #N/A #N/A (TTC) Durham Region Transit (DRT) $2.70 #N/A $2.05 $0.75 -$1.30 York Region Transit (YRT) $2.80 #N/A $2.13 $0.75 -$1.38 Mississauga Transit (MiWay) $2.60 #N/A $1.98 $0.70 -$1.28 Brampton Transit $2.75 #N/A $2.09 $0.65 -$1.44 Oakville Transit $2.65 $2.27 $2.27 $0.65 -$1.62 Milton Transit $2.40 #N/A $1.82 $0.70 -$1.12 Burlington Transit $2.50 $2.23 $2.23 $0.65 -$1.58 Hamilton Street Railway (HSR) #N/A $1.65 $1.65 $0.50 -$1.15 Table 1: Initial Fares and GO Co-fares Page 7 of 15

9 5.2 TTC Downtown Express, TTC Routes in York Region The TTC operates a handful of premium routes as Downtown Express routes: 141, 142, 143, 144, and 145. In addition to the normal TTC initial boarding fare, an additional fare of $2.70 is required (if transferring from the TTC). Boardings from other agencies or first boardings are required the initial TTC fare plus the surcharge, which works out to be $4.68. A negative cost rule is applied when transferring from TTC to DT Express (and vice-versa) routes to account for having paid the TTC fare already. Additionally, the TTC operates a number of routes north of Steeles Avenue, which is the official N/S boundary between Toronto and York Region. Passengers on-board pay an additional surcharge to cross in to or out from York Region. Within York Region, passengers pay YRT price for the initial boarding (the difference between YRT and TTC is $0.15), and must pay the surcharge when crossing Steeles. 5.3 YRT Fare Zones YRT divides York Region into three fare zones (1, 2, and 3). The boundaries between the fare zones are fairly wide (containing several stops), where the $1.00 surcharge is applied only if a passenger s trip starts on one side of the fare boundary and ends on the other side. This soft boundary is not possible to model using Emme, since it involves knowing both end of the trip in advance (see GO Transit below), and so it is approximated using a hard zone crossing halfway through the soft boundary. Figure 2 below illustrates the location of each of the YRT fare zone boundaries. The boundary between Zone 1 and Zone 2 follows King Road, while the boundary between Zone 2 and Zone 3 follows Ravenshore Road. Page 8 of 15

10 Figure 2: York Region Fare Zones Page 9 of 15

11 Average Adult Fare Between Zones Fare Based Transit Networks 5.4 GO Transit GO Transit fares work on a zone system, where the cost of a ticket depends on which station one boards at and which station one alights at the cost paid per ticket was provided as an origin-destination matrix. This is difficult to model from the route-choice perspective given the constructive nature of path-building. Therefore GO fares are approximated as a per-km fare, with an initial boarding fare. The initial fare comes directly from the fare matrix and is the minimum cost of a GO trip and also the cost of travelling within a single zone. The per-km fare was estimated using linear regression, based on the network distance between fare zones; where the network distance is the minimum shortest path distance between GO stations/stops in each zone. If between two zones there existed a path using just railway links, that path s distance was used. Figure 3 shows the results of the linear regression. The actual fares used in the estimation were blended across different fare media, since the given fares were for cash-only (the highest price). Data from Metrolinx indicated that 60% of GO riders paid using a PRESTO card, realizing a 17.5% discount on the ticket price. It was assumed that the remaining 40% of riders paid by cash. With this blending, the final applied initial boarding fare was $4.07, and the final perkm fare was $ (8.28 cents). $30.00 $25.00 $20.00 y = x R² = $15.00 $10.00 $5.00 $ Minimum Distance (km) Between Zones Figure 3: Linear Regression on GO Fares vs. Distance Page 10 of 15

12 Appendix A: Transcribed 2012 Fare Schema File <?xml version="1.0" encoding="utf-8"?> <root> <version number="1.0" /> <groups> <group id="ttc Regular"> <selection>line=t </selection> <group id="ttc DT Express"> <selection>line=t14 </selection> <group id="go Transit"> <selection>mode=rg</selection> <group id="drt"> <selection>line=d </selection> <group id="yrt"> <selection>line=y </selection> <group id="miway"> <selection>line=m </selection> <group id="brampton Transit"> <selection>line=b </selection> <group id="oakville Transit"> <selection>line=ho </selection> <group id="burlington Transit"> <selection>line=hb </selection> <group id="milton Transit"> <selection>line=hm </selection> <group id="hsr"> <selection>line=w </selection> </groups> <zones> <shapefile id="1" path="d:/...yorkzones.shp /> Page 11 of 15

13 <zone id="toronto" type="node_selection"> <node_selector>i=10000,20000</node_selector> </zone> <zone id="york 1" type="from_shapefile"> <from_shapefile id="1" FID="1" /> </zone> <zone id="york 2" type="from_shapefile"> <from_shapefile id="1" FID="0" /> </zone> <zone id="york 3" type="from_shapefile"> <from_shapefile id="1" FID="2" /> </zone> </zones> <fare_rules> <!--TTC (Toronto Transit Commission)--> <fare cost="1.98" type="initial_boarding"> <group>ttc Regular <fare cost="4.68" type="initial_boarding"> <group>ttc DT Express <fare cost="-1.98" type="transfer"> <from_group>ttc Regular</from_group> <to_group>ttc DT Express</to_group> <fare cost="0.15" type="initial_boarding"> <group>ttc Regular <in_zone>york 1</in_zone> <fare cost="2.13" type="zone_crossing"> <group>ttc Regular <from_zone>toronto</from_zone> <to_zone>york 1</to_zone> <fare cost="1.98" type="zone_crossing"> <group>ttc Regular <from_zone>york 1</from_zone> <to_zone>toronto</to_zone> <!-- GO Transit Fares --> <fare cost="4.07" type="initial_boarding"> Page 12 of 15

14 <group>go Transit <fare cost="0.0825" type="distance_in_vehicle"> <group>go Transit <!-- Durham Transit --> <fare cost="2.06" type="initial_boarding"> <group>drt <fare cost="-1.41" type="transfer"> <from_group>drt</from_group> <!-- York Region --> <fare cost="2.13" type="initial_boarding"> <group>yrt <fare cost="-1.38" type="transfer"> <from_group>yrt</from_group> <fare cost="1.00" type="zone_crossing"> <group>yrt <from_zone>york 1</from_zone> <to_zone>york 2</to_zone> <fare cost="1.00" type="zone_crossing"> <group>yrt <from_zone>york 2</from_zone> <to_zone>york 3</to_zone> <!-- MiWay --> <fare cost="1.98" type="initial_boarding"> <group>miway <fare cost="-1.28" type="transfer"> <from_group>miway</from_group> Page 13 of 15

15 <!-- Brampton Transit --> <fare cost="2.09" type="initial_boarding"> <group>brampton Transit <fare cost="-1.44" type="transfer"> <from_group>brampton Transit</from_group> <!-- Oakville Transit --> <fare cost="2.27" type="initial_boarding"> <group>oakville Transit <fare cost="-1.62" type="transfer"> <from_group>oakville Transit</from_group> <!-- Burlington Transit --> <fare cost="2.23" type="initial_boarding"> <group>burlington Transit <fare cost="-1.58" type="transfer"> <from_group>burlington Transit</from_group> <fare cost="-2.23" type="transfer"> <from_group>hsr</from_group> <to_group>burlington Transit</to_group> <!-- Milton Transit --> <fare cost="1.83" type="initial_boarding"> <group>milton Transit <fare cost="-1.23" type="transfer"> <from_group>milton Transit</from_group> Page 14 of 15

16 <!-- HSR --> <fare cost="1.65" type="initial_boarding"> <group>hsr <fare cost="-1.15" type="transfer"> <from_group>hsr</from_group> </fare_rules> </root> Page 15 of 15

12 Approval of a New PRESTO Agreement Between York Region and Metrolinx

12 Approval of a New PRESTO Agreement Between York Region and Metrolinx Clause 12 in Report No. 7 of Committee of the Whole was adopted, without amendment, by the Council of The Regional Municipality of York at its meeting held on April 20, 2017. 12 Approval of a New PRESTO

More information

SUBJECT: PRESTO operating agreement renewal update. Committee of the Whole. Transit Department. Recommendation: Purpose: Page 1 of Report TR-01-17

SUBJECT: PRESTO operating agreement renewal update. Committee of the Whole. Transit Department. Recommendation: Purpose: Page 1 of Report TR-01-17 Page 1 of Report TR-01-17 SUBJECT: PRESTO operating agreement renewal update TO: FROM: Committee of the Whole Transit Department Report Number: TR-01-17 Wards Affected: All File Numbers: 465-12, 770-11

More information

Figure 1: Summary Status of Actions Recommended in June 2016 Committee Report. Status of Actions Recommended # of Actions Recommended

Figure 1: Summary Status of Actions Recommended in June 2016 Committee Report. Status of Actions Recommended # of Actions Recommended Chapter 3 Section 3.05 Metrolinx Regional Transportation Planning Standing Committee on Public Accounts Follow-Up on Section 4.08, 2014 Annual Report In November 2015, the Standing Committee on Public

More information

Collaborative Intelligent Transportation Systems (ITS) Initiatives with Neighbouring Jurisdictions

Collaborative Intelligent Transportation Systems (ITS) Initiatives with Neighbouring Jurisdictions STAFF REPORT ACTION REQUIRED Collaborative Intelligent Transportation Systems (ITS) Initiatives with Neighbouring Jurisdictions Date: March 21, 2011 To: From: Wards: Reference Number: Public Works and

More information

Transportation Network Development and Algorithm

Transportation Network Development and Algorithm Chapter 5 Transportation Network Development and Algorithm Key words: network development, network properties, shortest path algorithms. 5.1 Transportation Networks In order to predict how the demand for

More information

What is Network Analyst?

What is Network Analyst? What is Network Analyst? Extension for analyzing transportation networks Four network solvers Route Closest Facility Service Area Uses Network Datasets Origin-Destination (OD) Cost Matrix Specialized layers

More information

CIE4801 Transportation and spatial modelling (Uncongested) Assignment

CIE4801 Transportation and spatial modelling (Uncongested) Assignment CIE4801 Transportation and spatial modelling (Uncongested) Assignment Rob van Nes, Transport & Planning 17/4/13 Delft University of Technology Challenge the future Content What do we want to know? Shortest

More information

Greater Toronto Area

Greater Toronto Area Greater Toronto Area Transit Fare System Smart Card Alliance Transportation Council Salt Lake City, March 2007 David McIlwraith Ontario Topics GTA Fare System Overview Project Preparation Current Status

More information

Community Update. May 31, 2011

Community Update. May 31, 2011 Community Update May 31, 2011 Presented to: Leaside Community Presented by: Honourable Kathleen Wynne, Minister of Transportation Councillor Karen Stintz, Chair, Toronto Transit Commission Eglinton-Scarborough

More information

Community Update. June 21, 2011

Community Update. June 21, 2011 Community Update June 21, 2011 Presented at Beth Sholom Synagogue Presented by: Honourable Kathleen Wynne, Minister of Transportation Councillor Karen Stintz, Chair, Toronto Transit Commission Eglinton-Scarborough

More information

Preliminary Review of the PDP Requirements

Preliminary Review of the PDP Requirements Preliminary Review of the PDP Requirements Planning RSTWG Meeting March 22, 2010 Prepared by Paula Okunieff Objectives, Clarifications, Assumptions Planning Data Typology and Classification Document Organization

More information

Community Update. June 8, 2011

Community Update. June 8, 2011 Community Update June 8, 2011 Presented to: Scarborough Community Presented by: Honourable Kathleen Wynne, Minister of Transportation Councillor Karen Stintz, Chair, Toronto Transit Commission Eglinton-Scarborough

More information

Automatically Balancing Intersection Volumes in A Highway Network

Automatically Balancing Intersection Volumes in A Highway Network Automatically Balancing Intersection Volumes in A Highway Network Jin Ren and Aziz Rahman HDR Engineering, Inc. 500 108 th Avenue NE, Suite 1200 Bellevue, WA 98004-5549 Jin.ren@hdrinc.com and 425-468-1548

More information

3.2 Pseudocode. Introduction. Definition. 1 Common pseudo code terms

3.2 Pseudocode. Introduction. Definition. 1 Common pseudo code terms 3.2 Introduction This section covers the use of pseudo code in the production of algorithms. Candidates should use standard computing text books to find out information on the features of programming languages

More information

How to make MetroWorks work for you:

How to make MetroWorks work for you: How to make MetroWorks work for you: Setup Select a dedicated program manager to coordinate and be a point of contact for the MetroWorks program. Your MetroWorks program manager will receive a customizable

More information

A Parallel Implementation of a Schedule- Based Transit Assignment Algorithm for Large Networks

A Parallel Implementation of a Schedule- Based Transit Assignment Algorithm for Large Networks Veröffentlichung / Publication A Parallel Implementation of a Schedule- Based Transit Assignment Algorithm for Large Networks Autoren / Authors: Markus Friedrich, Gerd Schleupen Lehrstuhl für Verkehrsplanung

More information

Release Notes (P)

Release Notes (P) Release Notes 14.5.06(P) TFS ID 64052 Booking Management Module Scenarios GALILEO: Support has been implemented to capture the sell fare from the new OTHER FARE LEVEL (A28) section of the MIR file. 63923

More information

TRANSPORT PLANNING AND

TRANSPORT PLANNING AND Tutorial TRANSPORT PLANNING AND MODELING Using TFTP (Teacher Friendly Transportation Program) WHAT IS MODEL? Ortusar and Willumsen, 1994, A simplified representation of a part of the real world the system

More information

Community Update. June 30, Presented at: York Civic Centre

Community Update. June 30, Presented at: York Civic Centre Community Update June 30, 2011 Presented at: York Civic Centre Presented by: Honourable Kathleen Wynne, Minister of Transportation MPP Laura Albanese Councillor Frances Nunziata, Councillor Frank Di Giorgio

More information

amaysim Price Table Valid as of 30 November 2017 AMAYSIM PRICE TABLE

amaysim Price Table Valid as of 30 November 2017 AMAYSIM PRICE TABLE AMAYSIM PRICE TABLE Valid as of 30 November 2017 amaysim Price Table amaysim Australia Ltd, P.O. Box R567, Royal Exchange NSW 1225, Australia, ABN 65 143 613 478, ACN 143 613 478 Table of Contents 1. ABOUT

More information

York Region Transit (YRT/Viva) 2014 Annual Service Plan

York Region Transit (YRT/Viva) 2014 Annual Service Plan York Region Transit (YRT/Viva) 2014 Annual Service Plan Presentation to Development Services Committee City of Markham Adrian Kawun October 1, 2013 Slide 2 YRT/ Viva System Overview YRT/Viva 475 Vehicles

More information

Chrome River Guide for OTE Supervisors

Chrome River Guide for OTE Supervisors Chrome River Guide for OTE Supervisors Travel expense reimbursements can only be provided via a new TC-wide online platform known as Chrome River. Access to Chrome River will be via the TC portal through

More information

Condo Market Conditions Tightened Further in Q1

Condo Market Conditions Tightened Further in Q1 TREB Member Inquiries: Condo Market Report () - Media/Public Inquiries: First Quarter () - Economic Indicators Real GDP Growth Q.6% Toronto Employment Growth.% Toronto Unemployment Rate.% Inflation (Yr./Yr.

More information

Travel Time on the Highway 7 Corridor YORK REGION. Robert Bruce President TPA North America Inc.

Travel Time on the Highway 7 Corridor YORK REGION. Robert Bruce President TPA North America Inc. Travel Time on the Highway 7 Corridor YORK REGION Robert Bruce President TPA North America Inc. Presentation Overview Introduction to vivanext project Project Description Bluetooth Traffic Monitoring Overview

More information

REINFORCEMENT LEARNING: MDP APPLIED TO AUTONOMOUS NAVIGATION

REINFORCEMENT LEARNING: MDP APPLIED TO AUTONOMOUS NAVIGATION REINFORCEMENT LEARNING: MDP APPLIED TO AUTONOMOUS NAVIGATION ABSTRACT Mark A. Mueller Georgia Institute of Technology, Computer Science, Atlanta, GA USA The problem of autonomous vehicle navigation between

More information

The new paradigm for transit communications

The new paradigm for transit communications White paper The new paradigm for transit communications BAI Communications Bringing the connection to your journey The common network paradigm shift NETWORK USERS COMMON SERVICES COLOCATION FACILITIES

More information

Network Analyst Creating Network Datasets. Colin Childs Alan Hatakeyama

Network Analyst Creating Network Datasets. Colin Childs Alan Hatakeyama Network Analyst Creating Network Datasets Colin Childs Alan Hatakeyama Agenda Preparing street data for use in a network dataset - Oneway streets - Hierarchy - RoadClass attribute Using turns, signposts,

More information

Network Analyst Creating Network Datasets. Jay Sandhu Frank Kish

Network Analyst Creating Network Datasets. Jay Sandhu Frank Kish Network Analyst Creating Network Datasets Jay Sandhu Frank Kish Agenda Preparing Street Data for use in a network dataset - One-way streets - Hierarchy - RoadClass attribute Using turns, signposts, and

More information

Drivesave Frequently Asked Questions (FAQ)

Drivesave Frequently Asked Questions (FAQ) Drivesave Frequently Asked Questions (FAQ) This FAQ document has been created to answer most of your questions on Drivesave. Should you not find the answer you re looking for, feel free to contact us on

More information

Trip Assignment models in TransCAD. Murtaza Haider Tel: , ext. 2480

Trip Assignment models in TransCAD. Murtaza Haider Tel: , ext. 2480 Trip Assignment models in TransCAD Murtaza Haider murtaza.haider@ryerson.ca Tel: 416.979.5000, ext. 2480 Trip Assignment Procedures Goal: understand how to use TransCAD to: Generate inputs for trip assignment

More information

Int 1 Checklist (Unit 1) Int 1 Checklist (Unit 1) Whole Numbers

Int 1 Checklist (Unit 1) Int 1 Checklist (Unit 1) Whole Numbers Whole Numbers Know the meaning of count and be able to count Know that a whole number is a normal counting number such as 0, 1, 2,, 4, Know the meaning of even number and odd number Know that approximating

More information

METRO SHORT RANGE TRANSIT PLAN FY Executive Summary May 2009 DIVERSIFIED TRANSPORTATION SOLUTIONS

METRO SHORT RANGE TRANSIT PLAN FY Executive Summary May 2009 DIVERSIFIED TRANSPORTATION SOLUTIONS METRO SHORT RANGE TRANSIT PLAN FY 2010 2014 2014 Executive Summary May 2009 DIVERSIFIED TRANSPORTATION SOLUTIONS OVERVIEW Purpose of Metro SRTP Develop multi year strategic plan to improve transit quality,

More information

The Number Plane THE NUMBER PLANE PASSPORT.

The Number Plane THE NUMBER PLANE PASSPORT. THE NUMBER PLANE PASSPORT www.mathletics.co.nz Fill in the mind-map below with what you already know about number planes. A start has been made for you! Uses a coordinate system developed by the French

More information

Metrobus 30s Line Enhancements

Metrobus 30s Line Enhancements Customer Service, Operations and Safety Committee Action Item III-C February 14, 2008 Metrobus 30s Line Enhancements Washington Metropolitan Area Transportation Authority Board Action/Information Summary

More information

Lesson 2: Analyzing a Data Set

Lesson 2: Analyzing a Data Set Student Outcomes Students recognize linear, quadratic, and exponential functions when presented as a data set or sequence, and formulate a model based on the data. Lesson Notes This lesson asks students

More information

Veirs Mill Road Metrobus Improvements Request to Conduct Public Hearing

Veirs Mill Road Metrobus Improvements Request to Conduct Public Hearing Customer Services, Operations, and Safety Committee Board Information Item III-B September 24, 2009 Veirs Mill Road Metrobus Improvements Request to Conduct Public Hearing Washington Metropolitan Area

More information

Downtown Boise Multimodal Center

Downtown Boise Multimodal Center Treasure Valley High Capacity Transit Study Downtown Boise Multimodal Center Environmental Assessment June 2009 Prepared by the Federal Transit Administration and Valley Regional Transit. U.S. Department

More information

November 28, 2012 ALTERNATIVES ANALYSIS PUBLIC MEETING

November 28, 2012 ALTERNATIVES ANALYSIS PUBLIC MEETING November 28, 2012 ALTERNATIVES ANALYSIS PUBLIC MEETING Project Background Description of the Project Alternatives Analysis Process Project Progress Activity Stations Comments Adjourn 2 VIA spent 2 years

More information

Due Diligence Checklist #20

Due Diligence Checklist #20 INDEX Page Summary Implementation of TTC & Coroner s Jury Recommendations...i Coroner s Jury Recommendations... 1 Signals Design... 4 Note: This updated checklist contains updates to recommendations that

More information

7. Decision or classification trees

7. Decision or classification trees 7. Decision or classification trees Next we are going to consider a rather different approach from those presented so far to machine learning that use one of the most common and important data structure,

More information

Different Optimal Solutions in Shared Path Graphs

Different Optimal Solutions in Shared Path Graphs Different Optimal Solutions in Shared Path Graphs Kira Goldner Oberlin College Oberlin, OH 44074 (610) 324-3931 ksgoldner@gmail.com ABSTRACT We examine an expansion upon the basic shortest path in graphs

More information

SIRRVA. and MRUN. Control Center. Tel: (514) Fax: (514)

SIRRVA. and MRUN. Control Center. Tel: (514) Fax: (514) USER MANUAL SIRRVA and MRUN Control Center 201 Laurier Street East Suite 630 Montreal, Quebec Canada H2T 3E6 Tel: (514) 273-0008 Fax: (514) 273-0199 www.softvoyage.com 30 PensylvanniaAve. Suite 17 Vaughan,

More information

OneUSG Benefit Reconciliation User s Guide

OneUSG Benefit Reconciliation User s Guide OneUSG Benefit Reconciliation User s Guide Office of Information and Instructional Technology Version 1 Last Updated: 02-05-2019 Page 1 BENEFIT ACCOUNTING PROCESS FLOW......3 HR ACCOUNTING LINE VALIDATION...

More information

Seller's Market Conditions Continue in Q4 2017

Seller's Market Conditions Continue in Q4 2017 TREB Member Inquiries: Condo Market Report () -8 Media/Public Inquiries: Fourth Quarter Economic Indicators Real GDP Growth Q.% Toronto Employment Growth December.% () -88 Seller's Market Conditions Continue

More information

A note on logit choices in strategy transit assignment

A note on logit choices in strategy transit assignment EURO J Transp Logist (2012) 1:29 46 DOI 10.1007/s13676-012-0007-8 RESEARCH PAPER A note on logit choices in strategy transit assignment Michael Florian Isabelle Constantin Received: 21 October 2011 / Accepted:

More information

Travel Demand Modeling and Project Coding Procedures

Travel Demand Modeling and Project Coding Procedures Travel Demand Modeling and Project Coding Procedures Revised July 2008 As described in the Final Transportation Conformity Rule (section 93.122), travel demand models used to generate emission estimates

More information

Transit Development Plan/Transportation Demand. Chuck Steigerwald Director of Strategic Planning. Management Plan

Transit Development Plan/Transportation Demand. Chuck Steigerwald Director of Strategic Planning. Management Plan Transit Development Plan/Transportation Demand Chuck Steigerwald Director of Strategic Planning Management Plan OmniRide Strategic Plan Phase III TDP/TDMP Recommended service changes Ten-year plan Final

More information

The new paradigm for transit communications

The new paradigm for transit communications White paper The new paradigm for transit communications Bringing the connection to your journey The common network paradigm shift NETWORK USERS COMMON SERVICES COLOCATION FACILITIES TRUNK CONNECTIVITY

More information

Appendix-A: Usage of EventFilter Utility Program

Appendix-A: Usage of EventFilter Utility Program The present the usage of the utility programs developed for the purpose of the subarea focusing study in TRANSIMS. The running method of the program in a command line is shown first, followed by the explanation

More information

2. An implementation-ready data model needn't necessarily contain enforceable rules to guarantee the integrity of the data.

2. An implementation-ready data model needn't necessarily contain enforceable rules to guarantee the integrity of the data. Test bank for Database Systems Design Implementation and Management 11th Edition by Carlos Coronel,Steven Morris Link full download test bank: http://testbankcollection.com/download/test-bank-for-database-systemsdesign-implementation-and-management-11th-edition-by-coronelmorris/

More information

2.1 Algorithm design and problem-solving

2.1 Algorithm design and problem-solving Introduction to Pseudocode This section covers the use of pseudocode in the production of algorithms. Students should use standard computing text books to find out information on the features of programming

More information

Financials Module: General Ledger

Financials Module: General Ledger The Priority Enterprise Management System Financials Module: General Ledger Contents Introduction... 2 Chart of Accounts... 2 Entry Journal... 4 Reconciliations... 7 Financial Statements... 9 Cash Flow...

More information

ROUND THE WORLD (RTW) and CIRCLE (CT) FARES DATA APPLICATION OVERVIEW

ROUND THE WORLD (RTW) and CIRCLE (CT) FARES DATA APPLICATION OVERVIEW ROUND THE WORLD (RTW) and CIRCLE (CT) FARES DATA APPLICATION OVERVIEW The information contained in this document is the property of ATPCO. No part of this document may be reproduced, stored in a retrieval

More information

Bringing wireless to transit

Bringing wireless to transit Rider Connectivity Public Safety Transit Operations Bringing wireless to transit Bringing the connection to your journey The Common Network Paradigm Shift NETWORK USERS COMMON SERVICES COLOCATION FACILITIES

More information

SEMESTER 1, 2011 EXAMINATIONS. CITS1200 Java Programming FAMILY NAME: GIVEN NAMES:

SEMESTER 1, 2011 EXAMINATIONS. CITS1200 Java Programming FAMILY NAME: GIVEN NAMES: Computer Science & Software Engineering SEMESTER 1, 2011 EXAMINATIONS CITS1200 Java Programming FAMILY NAME: GIVEN NAMES: STUDENT ID: SIGNATURE: This Paper Contains: 26 pages (including title page) Time

More information

Network Analyst Creating Network Datasets

Network Analyst Creating Network Datasets 2013 Esri International User Conference July 8 12, 2013 San Diego, California Technical Workshop Network Analyst Creating Network Datasets Colin Childs Alan Hatakeyama Esri UC2013. Technical Workshop.

More information

5 th Grade MCA3 Standards, Benchmarks, Examples, Test Specifications & Sampler Questions

5 th Grade MCA3 Standards, Benchmarks, Examples, Test Specifications & Sampler Questions 5 th Grade 3 Standards, Benchmarks, Examples, Test Specifications & Sampler Questions Strand Standard No. Benchmark (5 th Grade) Sampler Item Number & Operation 18-22 11-14 Divide multidigit numbers; solve

More information

BT Assure Cloud Identity Annex to the General Service Schedule

BT Assure Cloud Identity Annex to the General Service Schedule 1 Defined Terms The following definitions apply, in addition to those in the General Terms and Conditions and the General Service Schedule of the Agreement. Administrator means a Customer-authorised person

More information

RIDESHARING SOFTWARE KEY BENEFITS

RIDESHARING SOFTWARE KEY BENEFITS RIDESHARING SOFTWARE TripSpark provides municipal planning organizations, transit agencies and other transportation management organizations with the tools they require to manage rideshare services. TripSpark

More information

Transport Modelling in OmniTRANS. Exercise book

Transport Modelling in OmniTRANS. Exercise book Transport Modelling in OmniTRANS Exercise book Course and Contact Information Course: Exercise book: Transport Modelling in OmniTRANS Course Description: This exercise book has been developed to offer

More information

Standardized XML cache format for describing hotel availability data and geographic hierarchy

Standardized XML cache format for describing hotel availability data and geographic hierarchy Standardized XML cache format for describing hotel availability data and geographic hierarchy Version 1.2.0, 2013-06-10 Specification Version 1.2.0 1 Contents Contents 2 Introduction 2 Changelog 4 Version

More information

Chattanooga Cell Phone External O-D Matrix Development

Chattanooga Cell Phone External O-D Matrix Development Chattanooga Cell Phone External O-D Matrix Development Process and Findings Presented to Tennessee Model Users Group (TNMUG) November 10, 2011 1 Background Chattanooga RPA/CHCNGA TPO wanted to update their

More information

OFFICIAL RELEASE OF REVISION 1 OF THE AUTOMATED FARE COLLECTION DATA/FILE STRUCTURE

OFFICIAL RELEASE OF REVISION 1 OF THE AUTOMATED FARE COLLECTION DATA/FILE STRUCTURE Private Bag X193, PRETORIA, 0001, Forum Building, corner Struben and Bosman Streets, PRETORIA Enq: I. Seedat 012 309 3656 0835449707 seedati@dot.gov.za 7 May 2009 TO WHOM IT MAY CONCERN OFFICIAL RELEASE

More information

User Guide HWeb Agent

User Guide HWeb Agent Table of Contents OVERVIEW... 1 GENERAL KEYBOARD NAVIGATION TOOLS... 2 FREQUENTLY USED HOT KEYS... 2 BASIC TERMS... 2 ENTERING A NEW RESERVATION... 2 CHECK PRICE AND AVAILABILITY... 3 ADDITIONAL AGENT

More information

Predicting Bus Arrivals Using One Bus Away Real-Time Data

Predicting Bus Arrivals Using One Bus Away Real-Time Data Predicting Bus Arrivals Using One Bus Away Real-Time Data 1 2 3 4 5 Catherine M. Baker Alexander C. Nied Department of Computer Science Department of Computer Science University of Washington University

More information

National RTAP in the Cloud

National RTAP in the Cloud National RTAP in the Cloud GTFS Builder August 16, 2011 U.S. Department of Transportation Federal Transit Administration Welcome Introductions Overview of National RTAP in the Cloud GTFS Builder demonstration

More information

Product Guide Verizon Pennsylvania Inc. Verizon Pennsylvania Inc. Original Sheet 1 TABLE OF CONTENTS. Business Exchange Service...

Product Guide Verizon Pennsylvania Inc. Verizon Pennsylvania Inc. Original Sheet 1 TABLE OF CONTENTS. Business Exchange Service... Verizon Pennsylvania Inc. Verizon Pennsylvania Inc. Original Sheet 1 TABLE OF CONTENTS Business Exchange Service... Operator Services Exchange Service Calling... A June 1, 2011 2nd Revised Sheet 2 Cancels

More information

CEMDAP User s Manual

CEMDAP User s Manual CEMDAP User s Manual Home 12:30 PM 7:30 AM 8:20 AM 9:16 AM Pers. Buss. 11:37 AM Pers. Buss. 9:40 AM Table of Contents INTRODUCTION... 1 1. SYSTEM REQUIREMENTS AND INSTALLATION INSTRUCTIONS... 2 1.1 MINIMUM

More information

SAND: Simulator and Analyst of Network Design 1.0

SAND: Simulator and Analyst of Network Design 1.0 SAND: Simulator and Analyst of Network Design 0 OUTLINE Introduction Model Structure Interface User Instructions Click here for a PDF version of this file. INTRODUCTION Simulator and Analyst of Network

More information

MTAT Systems Modelling

MTAT Systems Modelling MTAT.03.083 Systems Modelling Homework 2 (HW2) - Interaction Modelling, Application Modelling, and Coding (24 points + BONUS) Due on 20.11.2017 at 23:59 complete the homework in groups of 2 students. SUBMISSIONS:

More information

CHAPTER 2: DATA MODELS

CHAPTER 2: DATA MODELS CHAPTER 2: DATA MODELS 1. A data model is usually graphical. PTS: 1 DIF: Difficulty: Easy REF: p.36 2. An implementation-ready data model needn't necessarily contain enforceable rules to guarantee the

More information

Midterm practice problems

Midterm practice problems Midterm practice problems Note: A feasible algorithm is an algorithm which runs in polynomial time, i.e., such that there exists a fixed positive integer k (thus independent of the input size n) such that

More information

An Android Smartphone Application for Collecting, Sharing and Predicting the Niagara Frontier Border Crossings Waiting Time

An Android Smartphone Application for Collecting, Sharing and Predicting the Niagara Frontier Border Crossings Waiting Time An Android Smartphone Application for Collecting, Sharing and Predicting the Niagara Frontier Border Crossings Waiting Time Lei Lin 1, Qian Wang 1, Adel W. Sadek 1, Yan Li 2 1 Civil, Structural and Environmental

More information

Verification Plan: Mitchell Hammock Road. Adaptive Traffic Signal Control System. Prepared by: City of Oviedo. Draft 1: June 2015

Verification Plan: Mitchell Hammock Road. Adaptive Traffic Signal Control System. Prepared by: City of Oviedo. Draft 1: June 2015 Verification Plan: Mitchell Hammock Road Adaptive Traffic Signal Control System Red Bug Lake Road from Slavia Road to SR 426 Mitchell Hammock Road from SR 426 to Lockwood Boulevard Lockwood Boulevard from

More information

FAQs to your Premium-Transfer at fixed prices

FAQs to your Premium-Transfer at fixed prices TABLE OF CONTENTS FAQs to your Premium-Transfer at fixed prices I. Product overview. 2 II. Registration... 2 III. Booking 2 IV. After the booking... 5 V. During the ride.. 5 VI. After the ride.. 5 1 Product

More information

April

April Intecom Systems Feature Transparency Application Manual April 1994 590-2270-002 MPANY PROPRIETARY STATEMENT All information contained herein is considered company proprietary and is restricted solely to

More information

CHAPTER 2: DATA MODELS

CHAPTER 2: DATA MODELS Database Systems Design Implementation and Management 12th Edition Coronel TEST BANK Full download at: https://testbankreal.com/download/database-systems-design-implementation-andmanagement-12th-edition-coronel-test-bank/

More information

Regional Multi-Modal Public Transit Automated Fare Collection Study Tasks 2 & 3 Findings

Regional Multi-Modal Public Transit Automated Fare Collection Study Tasks 2 & 3 Findings Regional Multi-Modal Public Transit Automated Fare Collection Study Tasks 2 & 3 Findings Regional Transit Committee October 10, 2013 Project Status Task 1 Task 2 Task 3 Task 4 Mar 2013 Apr May Jun Jul

More information

NTS ONLINE BOOKING TOOL SABRE.RES

NTS ONLINE BOOKING TOOL SABRE.RES NTS ONLINE BOOKING TOOL SABRE.RES National Travel Systems is pleased to present its online booking tool that offers state travelers another means to search fares and schedules that offer the best value

More information

RooWay: A Web-based Application for UA Campus Directions

RooWay: A Web-based Application for UA Campus Directions 2015 International Conference on Computational Science and Computational Intelligence RooWay: A Web-based Application for UA Campus Directions Hoang Nguyen, Haitao Zhao, Suphanut Jamonnak, Jonathan Kilgallin,

More information

Filling out the Pre-Trip Form

Filling out the Pre-Trip Form Filling out the Pre-Trip Form 1. Log into the TWF with your NetID and password once you click the link located on the top right of the www.travel.uconn.edu home page. 2. Once you log in a new WebForm will

More information

Volumes 1 and 2. Grade 5. Academic Standards in Mathematics. Minnesota. Grade 5. Number & Operation

Volumes 1 and 2. Grade 5. Academic Standards in Mathematics. Minnesota. Grade 5. Number & Operation Academic Standards in Mathematics Minnesota Volumes 1 and 2 2013 STANDARDS Number & Operation Divide multi-digit numbers; solve real-world and mathematical problems using arithmetic. 5.1.1.1 Divide multi-digit

More information

Move to open-loop transit payments inevitable in North America

Move to open-loop transit payments inevitable in North America Cards International» CI 472 January 2012» Move to open-loop transit payments inevitable in North America By Robin Arnfield 08 December 2011 After several years of open-payments trials, North American transit

More information

Routing in packet-switching networks

Routing in packet-switching networks Routing in packet-switching networks Circuit switching vs. Packet switching Most of WANs based on circuit or packet switching Circuit switching designed for voice Resources dedicated to a particular call

More information

Concur Travel User Guide

Concur Travel User Guide Concur Travel User Guide 1 Table of Contents What is Concur?... 3 Concur Modules... 3 Logging on to Concur... 5 Exploring the Home Page... 6 Updating Your Travel Profile... 7 Personal Information... 7

More information

Direct Fare Filing (Sabre MyFares) STUDENT GUIDE

Direct Fare Filing (Sabre MyFares) STUDENT GUIDE Direct Fare Filing (Sabre MyFares) STUDENT GUIDE Table of Contents Objectives... 4 Testing your Input... 4 Getting Started... 5 Overview... 5 Organize Contract Information... 6 Authorization to Use the

More information

How to understand a pdf file invoice

How to understand a pdf file invoice How to understand a pdf file invoice.pdf files are used by Eseye to send invoices to customers. For help in finding an invoice, see: How to locate an invoice. The.pdf invoice is comprised of a front page

More information

Bringing broadband to transit

Bringing broadband to transit Rider Connectivity Public Safety Transit Operations Bringing broadband to transit BAI Communications Bringing the connection to your journey Across the globe, BAI Communications (BAI) delivers advanced

More information

PEGASUS DISTRIBUTOR S GUIDE

PEGASUS DISTRIBUTOR S GUIDE PEGASUS DISTRIBUTOR S GUIDE GPS /GPRS SOLUTION FOR YOUR FLEET Web Based Tracking System Tel: +44 (0)1509 808168 E- Mail: info@naxertech.com. www.naxertech.co.uk www.naxertech.com Revision History Note:

More information

Using GPS Based Origin-Destination Data to Improve Traffic Studies. Michael R. Wahlstedt, PE, PTOE OTEC October 11, 2017

Using GPS Based Origin-Destination Data to Improve Traffic Studies. Michael R. Wahlstedt, PE, PTOE OTEC October 11, 2017 Using GPS Based Origin-Destination Data to Improve Traffic Studies Michael R. Wahlstedt, PE, PTOE OTEC October 11, 2017 Overview Benefits of using O-D data for traffic analysis, particularly for operational

More information

Postage Statement First-Class Mail and First-Class Package Service

Postage Statement First-Class Mail and First-Class Package Service United States Postal Service Postage Statement First-Class Mail and First-Class Package Service Use this form for First-Class Mail and First-Class Package Service. Post Office: Note Mail Arrival Date &

More information

Automated Refunds for Galileo Desktop TM Viewpoint 4.0 TM. Quick Reference

Automated Refunds for Galileo Desktop TM Viewpoint 4.0 TM. Quick Reference Automated Refunds for Galileo Desktop TM Viewpoint 4.0 TM Quick Reference Acknowledgement: This document was developed by Galileo International, Training and Development. Customer feedback is important

More information

Data-Driven Mesoscopic Simulation of Large-Scale Surface Transit Networks

Data-Driven Mesoscopic Simulation of Large-Scale Surface Transit Networks Data-Driven Mesoscopic Simulation of Large-Scale Surface Transit Networks by Bo Wen Wen A thesis submitted in conformity with the requirements for the degree of Master of Applied Science Department of

More information

Written examination 1

Written examination 1 INSIGHT YEAR 12 Trial Exam Paper 2013 Further Mathematics Written examination 1 s This book presents: correct solutions with full working explanatory notes tips This trial examination produced by Insight

More information

LAWRENCE-DOUGLAS COUNTY INTELLIGENT JOURNEY

LAWRENCE-DOUGLAS COUNTY INTELLIGENT JOURNEY LAWRENCE-DOUGLAS COUNTY INTELLIGENT JOURNEY L-DC REGIONAL ITS ARCHITECTURE AND STRATEGIC DEPLOYMENT PLAN EXECUTIVE SUMMARY The Lawrence-Douglas County Metropolitan Planning Organization (L- DC MPO) has

More information

Metrolinx / Toronto Transit Plan April 28, Jack Collins Vice President, Rapid Transit Implementation

Metrolinx / Toronto Transit Plan April 28, Jack Collins Vice President, Rapid Transit Implementation Metrolinx / Toronto Transit Plan April 28, 2011 Jack Collins Vice President, Rapid Transit Implementation 1 Overview 1. Principles in Developing the Plan 2. Metrolinx / Toronto Transit Plan 3. The Plan

More information

APPENDIX G. VMT Spreadsheet Tool. FINAL REPORT Improved Data & Tools for Integrated Land Use-Transportation Planning in California TOPICS:

APPENDIX G. VMT Spreadsheet Tool. FINAL REPORT Improved Data & Tools for Integrated Land Use-Transportation Planning in California TOPICS: FINAL REPORT Improved Data & Tools for Integrated Land Use-Transportation Planning in California APPENDIX G VMT Spreadsheet Tool TOPICS: 1. Overview of Tool 2. Code Documentation 3. User Guide 4. Validation

More information

y (s,e) y=x+b (i, j) y=x+a y=x

y (s,e) y=x+b (i, j) y=x+a y=x Covering Bitmap with Trapezoids is Hard Changzhou Wang, X. Sean Wang Department of Information and Software Engineering George Mason University, Fairfax, Virginia, USA fcwang, xywangg@gmu.edu Abstract

More information

Section 3.1 Graphing Using the Rectangular Coordinate System

Section 3.1 Graphing Using the Rectangular Coordinate System Objectives Section 3.1 Graphing Using the Rectangular Coordinate System n Construct a rectangular coordinate system n Plot ordered pairs and determine the coordinates of a point n Graph paired data n Read

More information

The Blue Line Extension

The Blue Line Extension The Blue Line Extension NORTH CAROLINA JOINT TRANSPORTATION OVERSIGHT COMMITTEE Presented by Carolyn Flowers CATS Chief Executive Officer Raleigh, NC February 10, 2012 Overview Charlotte Area Transit System

More information