SelectDirect Select Link Analysis. Documentation. Jon Bergström BeLogic Systemutveckling

Size: px
Start display at page:

Download "SelectDirect Select Link Analysis. Documentation. Jon Bergström BeLogic Systemutveckling"

Transcription

1 SelectDirect Select Link Analysis Documentation Jon Bergström BeLogic Systemutveckling

2 TMALL 0004 Rapport generell v 1.0 Trafikverket Trafikverket, Box 388, Östersund. Besöksadress: Kyrkgatan 43 B. Telefon: , Texttelefon: Dokumenttitel: SelectDirect Select Link Analysis. Författare: Jon Bergström Dokumentdatum: Kontaktperson: Petter Hill, PLep 2

3 Content SELECTDIRECT DOCUMENTATION 4 Version features 4 What does it do? 4 Main purpose, selected transport flows 4 Auxiliary functions 5 Traversal matrices 5 GIS data 5 Domestic ratio 5 Compact Spanning Tree files 5 Cost for empty vehicles 5 CBA sum file 5 Command line 5 Command line arguments 5 Control file 6 - directories 6 --conditions for select link analysis 6 --output files: 8 --input files 8 --other input parameters 10 Program structure 11 Main classes 11 Utility classes 11 3

4 SelectDirect Documentation SelectDirect.jar is a Java program that performs select link analysis. Version features Generates Stan GIS data Runs select zone analysis Generates domestic ratio LOS files Generates compact Spanning Tree files Generates cost file for empty vehicles Generates foreign to foreign traversal matrices These features are further described under Auxiliary functions. The 1.2 version is backwards compatible and used also for version What does it do? SelectDirect uses spanning tree data to resolve transport flows to link and node level for various purposes. It also carries out some auxiliary tasks of aggregating traffic flows, and preparing files for further use in the Samgods model. Main purpose, selected transport flows The main purpose of SelectDirect is to generate input data for visualisation of selected transport flows. For this analysis the program generates five output files. Each contains flows that fulfil the selection criteria given in the program control file. LINKSFILE (LinksSumSL.dat) Total flow per link and vehicle type CONSUMFILE (ConSumSL.dat) Total flow per connection and vehicle type CHAINSFILE (ChainsSL.dat) Flow per each transport chain CONNECTIONSFILE ConnectionsSL.dat Flow and distance for each connection in each transport chain TotalFlows.dat Total flow per vehicle type Two different types of criteria can be used: Select link analysis: Transports that pass certain nodes or links. Select zone analysis: Transports that begins in a selected interval of zones and end in another selected interval of zones. 4

5 For the first case links and / or nodes are given by keywords LINKSSL and NODESSL. If neither of these keywords are used all transport chains for the selected commodities will be included. Output include transports that pass given by Selection can include any or all of the given nodes and links and can be required to be passed either in the order given in the keywords or in random order. These visit conditions are defined by the keywords VISITNODE and VISITLINK. For the second case start zones are given by keyword OZONE, and end zones by DZONE. Auxiliary functions Traversal matrices Using this option the program can produces so called traversal matrices, files specifying flows to and from the Swedish border zones. GIS data This option produces a file Stan.txt that contains flows for each link and Stan group as well as number of trains and used capacity for capacitated rail links. Domestic ratio For this option SelectDirect loops over all time and cost LOS matrices, and uses the resolved path together with time and cost data per link to produce new LOS matrices containing the domestic part of time and cost, respectively. Compact Spanning Tree files This option produces Spanning Tree files on a compact format, reducing the required storage space with approximately 90%. Cost for empty vehicles This function uses LOS data and vehicle cost data to produce a cost file for empty vehicles. CBA sum file Generates a file containing the total cost for all transports divided into the categories Domestic, Import, Export, and Transit transports. Also sums the total vehicle kms for these categories. Command line SelectDirect is a Java command line program. It is run by a command similar to: java -d64 -Xmx4g -Xms2024m -jar SelectDirect.JAR SelectDirect.ctl slnk Command line arguments The task the program is expected to carry out is defined by a command line argument. To run a select link analysis use argument slnk or leave out as this is the default action. 5

6 java -d64 -Xmx4g -Xms2024m -jar SelectDirect.JAR SelectDirect.ctl slnk To run a select zone analysis use zlnk java -d64 -Xmx4g -Xms2024m -jar SelectDirect.JAR SelectDirect.ctl zlnk To run a traversal matrices analysis use trav java -d64 -Xmx4g -Xms2024m -jar SelectDirect.JAR SelectDirect.ctl trav To run foreign to foreign traversal matrices analysis use f2ftrav java -d64 -Xmx4g -Xms2024m -jar SelectDirect.JAR SelectDirect.ctl f2ftrav To produce the Stan group GIS data use stan java -d64 -Xmx4g -Xms2024m -jar SelectDirect.JAR SelectDirect.ctl stan To produce domestic ratio files use ratio java -d64 -Xmx4g -Xms2024m -jar SelectDirect.JAR SelectDirect.ctl ratio To produce cost files for empty vehicles use empty java -d64 -Xmx4g -Xms2024m -jar SelectDirect.JAR SelectDirect.ctl ratio To write compact Spanning Tree files use packspt java -d64 -Xmx4g -Xms2024m -jar SelectDirect.JAR SelectDirect.ctl packspt To generate the CBA sum file containing total costs use cbasum java -d64 -Xmx4g -Xms2024m -jar SelectDirect.JAR SelectDirect.ctl cbasum Control file The last part of the command, SelectDirect.ctl, is the name of the control file containing a number of parameters for the program run. These are described below. The control file can contain comments. Those are rows starting with a hyphen ( - ). Not all parameters are required for all purposes (see table 1). - directories PATH=.. Path relative to the current directory, or absolute path. --conditions for select link analysis LINKSSL=

7 Selection criteria. One or more links which must be passed by the transport chains selected. If there is more than one link the list is comma separated: LINKSSL=46487,46130,63936,65471,3788 If the keyword LINKSSL is not included in the ctl file no transports are excluded on basis of the links passed. NODESSL= Selection criteria. One or more links which must be passed by the transport chains selected. For the traversal matrices these are the border nodes. If there is more than one node the list is comma separated: NODESSL=886000,886111,718017, COMMODITIESSL=1,6,11,15 Only transports of commodities given in the list are evaluated. If omitted all commodities are included. The list is comma separated. VISITNODE=ORDER VISITLINK=ORDER Options: VISITXXXX=ANY, any of the given nodes or links must be used VISITXXXX=ALL, all of the given nodes and links must be used, or VISITXXXX=ORDER, all nodes an links must be used, and nodes must be visited in order they are listed in the LINKSSL or NODESSL parameters, respectively. OZONE=711400, DZONE=960000, Origin and destination zone intervals required for select zone analysis. Instead of an interval a single zone can be give, for example OZONE=

8 --output files: CHAINSFILE=RCM\Output\ChainsSL.dat LINKSFILE= RCM\Output\LinksSumSL.dat CONNECTIONSFILE= RCM\Output\ConnectionsSL.dat CONSUMFILE= RCM\Output\ConSumSL.dat Paths will be relative to the PATH parameter. ERRORLOG=RCM\ErrorSL.txt Name of file to which errors are logged IO_LOG=RCM\SelLink_IO.log Input Output log file, logs which files are read and written. TRAVERSALPATH=RCM\OutputTM Path to a folder where traversal matrices are written. STANFILE=RCM\Output\Stan.dat The file that will contain output from the Stan group GIS data analysis. CBASUMFILE=RCM\Output\CBA_aggr.txt The output file for CBA total cost sum. --input files --Spanning tree SPT_RAIL=RCM\PathTreeRail.txt SPT_ROAD=RCM\PathTreeRoad.txt SPT_SEA=RCM\PathTreeSea.txt SPT_AIR=RCM\PathTreeAir.txt 8

9 Files containing spanning tree data. Paths relative to the PATH parameter. NODESLIST=RCM\Nodes_List.txt List of nodes in the network with Emme and Voyager numbers. LINKLIST=RCM\Links_List.txt List of links in the network with ID link and Voyager and Emme nodes CCFILES=ChainChoi\OUTPUT\ChainChoi[v]_ 01.out The output files from logistics model containing the transports from which data are selected. Also used for CBA sums. LOSPATH=Input\LOS Path to LOS files. The ddist, domestic distances, LOS files are used for the distance column in the ConnectionsSL.out files. ASEKLOS=D:\workfolder\Base2012ASEK\LogMod\Input\LOS Path to the ASEK LOS folder, used for CBA. This parameter can be either absolute or relative. COSTFILES=ChainChoi\Output\ChainChoi[v]_data_07FIN.out Cost data are generated in the ChainsSL, ConnectionsSL and ConSumSL files i f the parameter COSTFILES is specified in the CTL file. TM_EMPTY=EXTRACT\OUTPUT\OD_Emp[f]_STD.314 TM_VHCL=EXTRACT\OUTPUT\OD_Vhcl[f]_STD.314 TM_TONNES=EXTRACT\OUTPUT\OD_Tonnes[f]_STD.314 Files where Extract output files can be found. These files are used to generate traversal matrices. 9

10 CARGO=Input\COST\Cargo.txt The Cargo.txt file is used to translate from commodity to Stan group. CAPLINKS=RCM\RailLinkCapacitiesBidirectional_STD.DAT List of capacitated links. SL_EMPTY=EXTRACT\OUTPUT\OD_Emp[f]_FIN.314 Points to the Extract empty flow output files, used to calculate the empty flow in the CONSUMFILE, and for empty flows in the STAN file. LINKTIMECOST=RCM\TimeAndCost4LinksAndVehicles.txt The file that holds information of time and cost per link. Used in creating domestic ration LOS files for CBA. --other input parameters VEHICLES=101,102,.. Comma separated list of all vehicles used. Default is VEHICLES=101,102,103,104,105,106,201,202,203,204,205,206,207,208,209,210,211,212,3 01,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321, 401 VHCLEMPTYCOST=Input\COST\VHCLS_STAN1.txt The file from which the vehicle cost used for Empty Cost analysis is read. DFR=250 Number of days per year for rail traffic. MAX_CMD=16 Sets the highest commodity number. Default

11 Program structure The program is developed in Eclipse Java IDE. Main classes SelectDirect.java This class holds the java main procedure. It reads the control file and calls a procedure for the requested analysis. SPT_Select.java Reads and contains data for the spanning tree. Returns the path for a given connection. Utility classes Funcs.java A utility class that has various functions for string handling etc. CtlReader.java A utility class that reads and holds the values from the control file. LgFileReader.java A standard FileReader with the additional function that it logs the name of the file read. LgFileWriter.java A standard FileWriter with the additional function that it logs the name of the file written. Lists.java Lists keeps track of various input data.

12 Trafikverket, Box 388, Östersund. Besöksadress: Kyrkgatan 43 B. Telefon: , Texttelefon:

MPS Samgods Documentation. Jon Bergström BeLogic Systemutveckling

MPS Samgods Documentation. Jon Bergström BeLogic Systemutveckling MPS Samgods 1.1.1 Documentation Jon Bergström BeLogic Systemutveckling TMALL 0004 Rapport generell v 1.0 Trafikverket Trafikverket, Box 388, 831 25 Östersund. Besöksadress: Kyrkgatan 43 B. Telefon: 0771-921

More information

REPORT 1A Analysis of needs and possibilities with the technology of the future

REPORT 1A Analysis of needs and possibilities with the technology of the future REPORT 1A Analysis of needs and possibilities with the technology of the future Part of R&D project Infrastructure in 3D in cooperation between Innovation Norge, Trafikverket and TerraTec Trafikverket

More information

GPR ON RAILWAY REPORT 4D. Railway inspection using 3D Georadar

GPR ON RAILWAY REPORT 4D. Railway inspection using 3D Georadar REPORT 4D GPR ON RAILWAY Railway inspection using 3D Georadar Part of R&D project Infrastructure in 3D in cooperation between Innovation Norge, Trafikverket and TerraTec AS Trafikverket Postadress: Röda

More information

REPORT. GSM-R and LTE Coexistence study

REPORT. GSM-R and LTE Coexistence study REPORT GSM-R and LTE Coexistence study TMALL 0004 Rapport generell v 2.0 Trafikverket Postadress: Röda vägen 1, 789 81 Borlänge E-post: trafikverket@trafikverket.se Telefon: 0771-921 921 Dokumenttitel:

More information

WFCE - Build and deployment. WFCE - Deployment to Installed Polarion. WFCE - Execution from Workspace. WFCE - Configuration.

WFCE - Build and deployment. WFCE - Deployment to Installed Polarion. WFCE - Execution from Workspace. WFCE - Configuration. Workflow function and condition Example WFCE - Introduction 1 WFCE - Java API Workspace preparation 1 WFCE - Creating project plugin 1 WFCE - Build and deployment 2 WFCE - Deployment to Installed Polarion

More information

REPORT 5C Comparison of Vectorisation and Road Surface Analysis from Helicopterborne System and Mobile Mapping

REPORT 5C Comparison of Vectorisation and Road Surface Analysis from Helicopterborne System and Mobile Mapping REPORT 5C Comparison of Vectorisation and Road Surface Analysis from Helicopterborne System and Mobile Mapping Part of R&D-project Infrastructure in 3D in cooperation with Innovation Norway, Trafikverket

More information

1. Go to the URL Click on JDK download option

1. Go to the URL   Click on JDK download option Download and installation of java 1. Go to the URL http://www.oracle.com/technetwork/java/javase/downloads/index.html Click on JDK download option 2. Select the java as per your system type (32 bit/ 64

More information

OER uses the following default value if this command is not configured or if the no form of this command is entered: timer: 300

OER uses the following default value if this command is not configured or if the no form of this command is entered: timer: 300 holddown holddown To configure the Optimized Edge Routing (OER) prefix route dampening timer to set the minimum period of time that a new exit must be used before an alternate exit can be selected, use

More information

Ioannis Psarros Department of Civil Engineering and Intermodal Freight Transportation Institute, Memphis, TN

Ioannis Psarros Department of Civil Engineering and Intermodal Freight Transportation Institute, Memphis, TN Ioannis Psarros Department of Civil Engineering and Intermodal Freight Transportation Institute, Memphis, TN CIVL 7904/8904: Traffic Flow Theory (Spring 2014) April 5, 2014 Transportation Research Increased

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

set active-probe (PfR)

set active-probe (PfR) set active-probe (PfR) set active-probe (PfR) To configure a Performance Routing (PfR) active probe with a forced target assignment within a PfR map, use the set active-probe command in PfR map configuration

More information

Flexible NetFlow - Top N Talkers Support

Flexible NetFlow - Top N Talkers Support This document contains information about and instructions for using the Flexible NetFlow - Top N Talkers Support feature. The feature helps you analyze the large amount of data that Flexible NetFlow captures

More information

form layout - we will demonstrate how to add your own custom form extensions in to form layout

form layout - we will demonstrate how to add your own custom form extensions in to form layout Form Extension Example FEE - Introduction 1 FEE - Java API Workspace preparation 1 FEE - Creating project plugin 1 FEE - Deployment to Installed Polarion 1 FEE - Execution from Workspace 1 FEE - Configuration

More information

BGP Policy Accounting

BGP Policy Accounting Border Gateway Protocol (BGP) policy accounting measures and classifies IP traffic that is sent to, or received from, different peers. Policy accounting is enabled on an input interface, and counters based

More information

SE - Deployment to Installed Polarion. SE - Execution from Workspace. SE - Configuration.

SE - Deployment to Installed Polarion. SE - Execution from Workspace. SE - Configuration. Servlet Example SE - Introduction 1 SE - Java API Workspace preparation 1 SE - Import of the example 1 SE - Hints to develop your own plug-in 1 SE - Deployment to Installed Polarion 4 SE - Execution from

More information

Using Flexible NetFlow Top N Talkers to Analyze Network Traffic

Using Flexible NetFlow Top N Talkers to Analyze Network Traffic Using Flexible NetFlow Top N Talkers to Analyze Network Traffic Last Updated: September 4, 2012 This document contains information about and instructions for using the Flexible NetFlow--Top N Talkers Support

More information

User s Manual. Version

User s Manual. Version COPERT Street Level User s Manual Version 2.2.53 Contents Introduction... 3 Installing COPERT street level... 4 Main menu items... 5 Menu Project... 5 Project > Project > Create file... 5 Project > Project

More information

22 Cisco IOS Commands for the Catalyst 4500 Series Switches interface

22 Cisco IOS Commands for the Catalyst 4500 Series Switches interface Chapter 2 22 interface interface To select an interface to configure and to enter interface configuration mode, use the interface command. interface type number type number Type of interface to be configured;

More information

Chapter H through R. loss (PfR), page 28. load-balance, page 23 local (PfR), page 24 logging (PfR), page 26

Chapter H through R. loss (PfR), page 28. load-balance, page 23 local (PfR), page 24 logging (PfR), page 26 Chapter H through R holddown (PfR), page 3 host-address (PfR), page 5 hub, page 7 inside bgp (PfR), page 8 interface (PfR), page 10 interface tunnel (global configuration), page 12 jitter (PfR), page 13

More information

Inter-VSAN Routing Configuration

Inter-VSAN Routing Configuration CHAPTER 16 This chapter explains the inter-vsan routing (IVR) feature and provides details on sharing resources across VSANs using IVR management interfaces provided in the switch. This chapter includes

More information

Introduction to Computers and Engineering Problem Solving Spring 2012 Problem Set 5: MBTA routes Due: 12 noon, Friday, March 23

Introduction to Computers and Engineering Problem Solving Spring 2012 Problem Set 5: MBTA routes Due: 12 noon, Friday, March 23 Introduction to Computers and Engineering Problem Solving Spring 2012 Problem Set 5: MBTA routes Due: 12 noon, Friday, March 23 Problem statement a. Overview The Massachusetts Bay Transportation Authority

More information

A Performance Evaluation Architecture for Hierarchical PNNI and Performance Evaluation of Different Aggregation Algorithms in Large ATM Networks

A Performance Evaluation Architecture for Hierarchical PNNI and Performance Evaluation of Different Aggregation Algorithms in Large ATM Networks A Performance Evaluation Architecture for Hierarchical PNNI and Performance Evaluation of Different Aggregation Algorithms in Large ATM Networks Gowri Dhandapani 07/17/2000 Organization PNNI Basics Motivation

More information

IADS Batch Server User Guide. Version July 2014 SYMVIONICS Document SSD-IADS SYMVIONICS, Inc. All rights reserved.

IADS Batch Server User Guide. Version July 2014 SYMVIONICS Document SSD-IADS SYMVIONICS, Inc. All rights reserved. IADS Batch Server User Guide Version 8.1.2 July 2014 SYMVIONICS Document SSD-IADS-152 1996-2018 SYMVIONICS, Inc. All rights reserved. Table of Contents 1. IADS Batch Server...1 1.1. Batch Server... 1 1.2.

More information

The trade in Value Added of the European Union regions

The trade in Value Added of the European Union regions The trade in Value Added of the European Union regions Barbero J., Díaz-Lanchas J., Lecca P. and Mandras G. Joint Research Centre www.jrc.ec.europa.eu Serving society Stimulating innovation Supporting

More information

BGP Inbound Optimization Using Performance Routing

BGP Inbound Optimization Using Performance Routing BGP Inbound Optimization Using Performance Routing The PfR BGP Inbound Optimization feature introduced support for the best entrance selection for traffic that originates from prefixes outside an autonomous

More information

Stability analysis of Activity-Based models

Stability analysis of Activity-Based models Stability analysis of Activity-Based models Case study of the Tel Aviv Transportation Model Shlomo Bekhor Technion, Israel Institute of Technology Leonid Kheifits Independent Consultant, Israel Michael

More information

1. The Apache Derby database

1. The Apache Derby database 1. The Apache Derby database In these instructions the directory jdk_1.8.0_112 is named after the version 'number' of the distribution. Oracle tend to issue many new versions of the JDK/ JRE each year.

More information

EXCEL 2010 COMPETENCIES

EXCEL 2010 COMPETENCIES EXCEL 2010 COMPETENCIES Working with Cells Use undo and redo Clear cell content Enter text, dates, and numbers Edit cell content Go to a specific cell Insert and delete selected cells Cut, copy, paste,

More information

GNDraw Software Application for Creating Generalized Nets

GNDraw Software Application for Creating Generalized Nets Issues in IFSs and GNs, Vol. 13, 2017, 61 71 GNDraw Software Application for Creating Generalized Nets Nikolay Ikonomov Institute of Mathematics and Informatics Bulgarian Academy of Sciences 8 Acad. G.

More information

How to use Pivot table macro

How to use Pivot table macro How to use Pivot table macro Managing Pivot Tables Table Filter and Charts for Confluence add-on allows you to summarize your table data and produce its aggregated view in the form of a pivot table. You

More information

INTRODUCTION TO CUBE

INTRODUCTION TO CUBE INTRODUCTION TO CUBE 1 WELCOME TO CUBE... 2 1.1 OVERVIEW... 2 1.2 THE ARCHITECTURE OF CUBE... 3 1.3 THE CUBE USER ENVIRONMENT... 5 1.4 INTEGRATION WITH ARCGIS... 7 1.5 INTEGRATION OF THE CUBE EXTENSIONS...

More information

PTV VISUM 18 NEW FEATURES AT A GLANCE

PTV VISUM 18 NEW FEATURES AT A GLANCE PTV VISUM 18 NEW FEATURES AT A GLANCE Copyright: 2018 PTV AG, Karlsruhe PTV Visum is a trademark of PTV AG All brand or product names in this documentation are trademarks or registered trademarks of the

More information

Fairness Benchmarking of MACs

Fairness Benchmarking of MACs Fairness Benchmarking of MACs Harmen R. van As, Günter Remsak, Jon Schuringa Vienna University of Technology, Austria vas_benmac_3 22 Institute of Communication Networks Vienna University of Technology

More information

Monitoring and Analysis

Monitoring and Analysis CHAPTER 3 Cisco Prime Network Analysis Module 5.1 has two types of dashboards: One type is the summary views found under the Monitor menu, and the other type is the over time views found under the Analyze

More information

Hanover Traffic Control Centre a combination of various technologies

Hanover Traffic Control Centre a combination of various technologies main menu VISUM-online traffic management for the EXPO 2000 based on a traffic model Martin Fellendorf, Klaus Nökel (PTV AG, Karlsruhe, Germany) Norbert Handke (move GmbH, Hannover, Germany) Hanover Traffic

More information

Network Management Commands

Network Management Commands Network Management Commands ip wccp, page 3 monitor capture (interface/control plane), page 5 monitor capture buffer, page 9 monitor capture clear, page 10 monitor capture export, page 11 monitor capture

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

User Guide. Kronodoc Kronodoc Oy. Intelligent methods for process improvement and project execution

User Guide. Kronodoc Kronodoc Oy. Intelligent methods for process improvement and project execution User Guide Kronodoc 3.0 Intelligent methods for process improvement and project execution 2003 Kronodoc Oy 2 Table of Contents 1 User Guide 5 2 Information Structure in Kronodoc 6 3 Entering and Exiting

More information

Programming Project 5: NYPD Motor Vehicle Collisions Analysis

Programming Project 5: NYPD Motor Vehicle Collisions Analysis : NYPD Motor Vehicle Collisions Analysis Due date: Dec. 7, 11:55PM EST. You may discuss any of the assignments with your classmates and tutors (or anyone else) but all work for all assignments must be

More information

BeSt 1.0 Tutorial. by Cuaucihuatl Vital

BeSt 1.0 Tutorial. by Cuaucihuatl Vital BeSt 1.0 Tutorial by Cuaucihuatl Vital (cvital@indiana.edu) Before you start Download version j2sdk1.4.2 of java or later http://java.sun.com/j2se/1.4.2/download.html Follow the instructions for a straight-forward

More information

Parcelforce Worldwide Dashboard User Guide

Parcelforce Worldwide Dashboard User Guide Parcelforce Worldwide Dashboard User Guide PFW Dashboard User Guide July 2018 Page 1 Contents Welcome... 3 Accessing the Dashboard... 4 Level 1 Summary Domestic Dashboard tab... 5 Level 1 Summary International

More information

DYN-OPT Users Manual. Cenk Caliskan Randolph W. Hall. California PATH Working Paper UCB-ITS-PWP-97-6

DYN-OPT Users Manual. Cenk Caliskan Randolph W. Hall. California PATH Working Paper UCB-ITS-PWP-97-6 CALIFORNIA PATH PROGRAM INSTITUTE OF TRANSPORTATION STUDIES UNIVERSITY OF CALIFORNIA, BERKELEY DYN-OPT Users Manual Cenk Caliskan Randolph W Hall California PATH Working Paper UCB-ITS-PWP-97-6 This work

More information

Value added and participation in Global Value Chains: the case of Spain

Value added and participation in Global Value Chains: the case of Spain Value added and participation in Global Value Chains: the case of Spain Marta Solaz Universitat de València Fourth World KLEMS Conference, 23-24 May 2016 M. Solaz (U. de València) Value added and GVC World

More information

OER Commands. November Cisco IOS Optimized Edge Routing Command Reference OER-3

OER Commands. November Cisco IOS Optimized Edge Routing Command Reference OER-3 OER-3 active-probe active-probe To configure an Optimized Edge Routing (OER) active probe for a target prefix, use the active-probe command in OER master controller configuration mode. To disable the active

More information

Working with Variables: Primary Document Families

Working with Variables: Primary Document Families WORKING WITH VARIABLES: PRIMARY DOCUMENT FAMILIES 245 Working with Variables: Primary Document Families PD families as variables can be used in queries and SPSS jobs. Use PD-Family tables to assign PDs

More information

Alarms & Events Plug-In PTC Inc. All Rights Reserved.

Alarms & Events Plug-In PTC Inc. All Rights Reserved. 2017 PTC Inc. All Rights Reserved. 2 Table of Contents 1 Table of Contents 2 4 Overview 4 OPC AE Plug-In Terminology 4 OPC AE Plug-In Conditions 5 The OPC AE Plug-In from the OPC AE Clients' Perspective

More information

MASTER TERMINAL WEB PORTAL USER'S GUIDE VERSION Copyright 2018 Jade Logistics Group Limited. All rights reserved.

MASTER TERMINAL WEB PORTAL USER'S GUIDE VERSION Copyright 2018 Jade Logistics Group Limited. All rights reserved. MASTER TERMINAL WEB PORTAL USER'S GUIDE VERSION 8.5.1.200 Copyright 2018 Jade Logistics Group Limited. All rights reserved. Jade Logistics Group Limited cannot accept any financial or other responsibilities

More information

Implementing GMPLS UNI

Implementing GMPLS UNI The Generalized Multiprotocol Label Switching (GMPLS) User Network Interface (UNI) creates a circuit connection between two clients (UNI-C) of an optical network. This connection is achieved by signaling

More information

El Dorado County Travel Demand Model 2012 Update. October 14, FINAL User s Manual. Prepared for: El Dorado County.

El Dorado County Travel Demand Model 2012 Update. October 14, FINAL User s Manual. Prepared for: El Dorado County. El Dorado County Travel Demand Model 2012 Update October 14, 2013 FINAL User s Manual Prepared for: El Dorado County Prepared by: Copyright 2013, Kimley Horn and Associates, Inc. TABLE OF CONTENTS 1. USER

More information

Matrex Table of Contents

Matrex Table of Contents Matrex Table of Contents Matrex...1 What is the equivalent of a spreadsheet in Matrex?...2 Why I should use Matrex instead of a spreadsheet application?...3 Concepts...4 System architecture in the future

More information

Using NetFlow Sampling to Select the Network Traffic to Track

Using NetFlow Sampling to Select the Network Traffic to Track Using NetFlow Sampling to Select the Network Traffic to Track This module contains information about and instructions for selecting the network traffic to track through the use of NetFlow sampling. The

More information

User Guide for Tn-seq analysis software (TSAS) by

User Guide for Tn-seq analysis software (TSAS) by User Guide for Tn-seq analysis software (TSAS) by Saheed Imam email: saheedrimam@gmail.com Transposon mutagenesis followed by high-throughput sequencing (Tn-seq) is a robust approach for genome-wide identification

More information

Microsoft Excel. Part 2: Calculations & Functions. Department of Computer Science Faculty of Science Chiang Mai University

Microsoft Excel. Part 2: Calculations & Functions. Department of Computer Science Faculty of Science Chiang Mai University Microsoft Excel Part 2: Calculations & Functions Department of Computer Science Faculty of Science Chiang Mai University Outlines 1. Creating you own formula 2. Using functions in Excel 3. Using cell references

More information

SUM, AVERAGE, MEDIAN, MIN,

SUM, AVERAGE, MEDIAN, MIN, Lab 3 Activity Name Demonstration Notes Objective 12: Use the SUM, AVERAGE, MEDIAN, MIN, and MAX Functions 5.25 Using the SUM and AVERAGE Functions 5.26 Using the MEDIAN Function Start Excel. Open goaio_1e_08c_script_data.xlsx.

More information

EMC Isilon. Cisco UCS Director Support for EMC Isilon

EMC Isilon. Cisco UCS Director Support for EMC Isilon Cisco UCS Director Support for, page 1 Adding an Account, page 2 Storage Pool Tiers, page 3 Storage Node Pools, page 4 SMB Shares, page 5 Creating an NFS Export, page 7 Quotas, page 9 Configuring a space

More information

02/03/15. Compile, execute, debugging THE ECLIPSE PLATFORM. Blanks'distribu.on' Ques+ons'with'no'answer' 10" 9" 8" No."of"students"vs."no.

02/03/15. Compile, execute, debugging THE ECLIPSE PLATFORM. Blanks'distribu.on' Ques+ons'with'no'answer' 10 9 8 No.ofstudentsvs.no. Compile, execute, debugging THE ECLIPSE PLATFORM 30" Ques+ons'with'no'answer' What"is"the"goal"of"compila5on?" 25" What"is"the"java"command"for" compiling"a"piece"of"code?" What"is"the"output"of"compila5on?"

More information

-In windows explorer navigate to your Exercise_4 folder and right-click the DEC_10_SF1_P1.csv file and choose Open With > Notepad.

-In windows explorer navigate to your Exercise_4 folder and right-click the DEC_10_SF1_P1.csv file and choose Open With > Notepad. BIOL 4460/5460 and GEOL 4460 Introduction to GIS LAB 4 MAKING A THEMATIC MAP This exercise is to show you how to create a map for printing. As you have seen in the lecture, maps can have different purposes

More information

CS 215 Software Design Homework 3 Due: February 28, 11:30 PM

CS 215 Software Design Homework 3 Due: February 28, 11:30 PM CS 215 Software Design Homework 3 Due: February 28, 11:30 PM Objectives Specifying and checking class invariants Writing an abstract class Writing an immutable class Background Polynomials are a common

More information

Lab 11-1 Creating a Knowledge Base

Lab 11-1 Creating a Knowledge Base In this lab you will learn how to create and maintain a knowledge base. Knowledge bases help the trainable Group Locators improve their extraction results by providing trained extraction examples. Lab

More information

Command Reference for Voice VLAN

Command Reference for Voice VLAN APPENDIX A This section provides reference information for the following voice VLAN commands: interface range, page A-1 interface vlan, page A-3 monitor session, page A-4 spanning-tree, page A-6 spanning-tree

More information

APES step-by-step manual Version 1.1.8; by Chantal Vögeli

APES step-by-step manual Version 1.1.8; by Chantal Vögeli APES step-by-step manual Version 1.1.8; by Chantal Vögeli Dear APES User This step-by-step manual is designed as an introduction to APES and is mainly aimed at beginners using APES for the first time.

More information

2] Chapter 2 Cisco IOS Commands traceroute mac

2] Chapter 2 Cisco IOS Commands traceroute mac 2] Chapter 2 traceroute mac traceroute mac Use the traceroute mac privileged EXEC command on the switch stack or on a standalone switch to display the Layer 2 path taken by the packets from the specified

More information

Click on the GradeMark icon for the paper where the comment is to be added (see illustration below).

Click on the GradeMark icon for the paper where the comment is to be added (see illustration below). GRADEMARK-RUBRICS Rubrics can be attached to an assignment using the Rubric Manager. Rubrics that have been attached to an assignment can be accessed for grading through the Rubric Scorecard. A rubric

More information

Software AG Designer. Installing Plug-ins and Fixes Offline

Software AG Designer. Installing Plug-ins and Fixes Offline Software AG Designer Installing Plug-ins and Fixes Offline /1.0.3/ This document covers how to install features into Software AG Designer 8.2 for users without direct access to the update site. It is achieved

More information

Composer Guide for JavaScript Development

Composer Guide for JavaScript Development IBM Initiate Master Data Service Version 10 Release 0 Composer Guide for JavaScript Development GI13-2630-00 IBM Initiate Master Data Service Version 10 Release 0 Composer Guide for JavaScript Development

More information

Formula Editor/Data Mapping Tool User's Guide

Formula Editor/Data Mapping Tool User's Guide FUJITSU Software Interstage XWand V13 Formula Editor/Data Mapping Tool User's Guide Windows B1WD-3277-01ENZ0(00) August 2013 Preface Purpose of this Guide This is the User's Guide for Formula Editor /

More information

COGNOS BI I) BI introduction Products Introduction Architecture Workflows

COGNOS BI I) BI introduction Products Introduction Architecture Workflows COGNOS BI I) BI introduction Products Architecture Workflows II) Working with Framework Manager (Modeling Tool): Architecture Flow charts Creating Project Creating Data Sources Preparing Relational Metadata

More information

Eclipse Tool Stack Interchange Format

Eclipse Tool Stack Interchange Format Genuitec, LLC April 5, 2013 J. Anderson T. Webb Eclipse Tool Stack Interchange Format DRAFT - Version 0.1 Abstract This document defines a standard interchange format for Eclipse based development environments.

More information

Enable jquery Mobile on WebSphere Portal

Enable jquery Mobile on WebSphere Portal Enable jquery Mobile on WebSphere Portal Introduction jquery is a cross-browser JavaScript library that facilitates Data Object Model (DOM) traversal, event handling, animation, and Ajax interactions.

More information

Partition Setup. About Partition Setup

Partition Setup. About Partition Setup This chapter provides information to find, add, update, or delete route partitions. For additional information, see topics related to local route groups in the Cisco Unified Communications Manager Features

More information

CN 67 STATEMENT OF WEIGHTS A découvert priority/airmail items A découvert non-priority/surface items

CN 67 STATEMENT OF WEIGHTS A découvert priority/airmail items A découvert non-priority/surface items CN 67 STATEMENT OF WEIGHTS A découvert priority/airmail items A découvert non-priority/surface items Completion instructions Document version: 1.0 Date: 2017 09 21 UPU form template valid from: 2014 01

More information

TURNING MOVEMENT CALCULATOR VERSION 3.0

TURNING MOVEMENT CALCULATOR VERSION 3.0 TURNING MOVEMENT CALCULATOR VERSION 3.0 User Guide February 23, 2008 Whitehouse Group Inc. For support: +1 (202) 241-2008 software@wgianalytics.com TABLE OF CONTENTS INTRODUCTION... 1 Features... 1 Benefits...

More information

Manual Visy Access Net. Visy Oy Hatanpään valtatie 34 D FI FINLAND tel fax

Manual Visy Access Net. Visy Oy Hatanpään valtatie 34 D FI FINLAND tel fax Manual Visy Access Net Hatanpään valtatie 34 D FI-33100 FINLAND tel. +358-3-2110403 fax +358-3-2110402 Visy Access Net 13.11.2012 8:46 Page:2/8 1 Introduction Visy Access Net is web interface for Visy

More information

BIS1523 Homework Assignments 2.1

BIS1523 Homework Assignments 2.1 Homework Assignments 2.1 Folder: hw01 Assignment #1, Bio Overview: Create a web page with some information (real or made up) about yourself. Your web page should include the following: A header, with your

More information

Business Spreadsheets

Business Spreadsheets COURSE 6411 Computer Applications I Unit B COMPETENCY 4.00 B2 25% OBJECTIVE 4.01 B2 20% Software Applications for Business Understand spreadsheets, charts, and graphs used in business. Understand spreadsheets

More information

Release Notes for Cisco Transport Planner Release 9.1

Release Notes for Cisco Transport Planner Release 9.1 Release Notes for Cisco Transport Planner Release 9.1 Revised: October 2009, Release notes contain the new features and enhancements for the Cisco Transport Planner. For detailed information regarding

More information

The term "router" in this document refers to both routers and Layer 3 switches. Step Command Remarks. ipv6 host hostname ipv6-address

The term router in this document refers to both routers and Layer 3 switches. Step Command Remarks. ipv6 host hostname ipv6-address Contents Configuring IPv6 DNS 1 Overview 1 Configuring the IPv6 DNS client 1 Configuring static domain name resolution 1 Configuring dynamic domain name resolution 1 Displaying and maintaining IPv6 DNS

More information

Console Guide. Version 4.4

Console Guide. Version 4.4 Console Guide Version 4.4 Table of Contents Preface 4 Who Should Use This Guide 4 How This Guide is Organized 4 Document Feedback 4 Document Conventions Used in This Guide 5 Connecting to the Database

More information

Client Proxy interface reference

Client Proxy interface reference McAfee Client Proxy 2.3.3 Interface Reference Guide (McAfee epolicy Orchestrator) Client Proxy interface reference These tables provide information about the policy settings found in the Client Proxy UI.

More information

Writing Python Libraries. Import Statements and Packaging

Writing Python Libraries. Import Statements and Packaging Writing Python Libraries Import Statements and Packaging Basics A Python file is called either a script or a module, depending on how it s run: Script: Run file as a top-level script - python file.py -

More information

Homework 1: Programming Component Routing Packets Within a Structured Peer-to-Peer (P2P) Network Overlay VERSION 1.1

Homework 1: Programming Component Routing Packets Within a Structured Peer-to-Peer (P2P) Network Overlay VERSION 1.1 Homework 1: Programming Component Routing Packets Within a Structured Peer-to-Peer (P2P) Network Overlay VERSION 1.1 DUE DATE: Wednesday February 14 th, 2018 @ 5:00 pm Objectives & Overview The objective

More information

PEGA PLATFORM. Business Intelligence Exchange (BIX) 7.4 User Guide

PEGA PLATFORM. Business Intelligence Exchange (BIX) 7.4 User Guide PEGA PLATFORM Business Intelligence Exchange (BIX) 7.4 User Guide 2018 Pegasystems Inc., Cambridge, MA. All rights reserved. Trademarks For Pegasystems Inc. trademarks and registered trademarks, all rights

More information

Border Patrol. Shingo Murata Swarthmore College Swarthmore, PA

Border Patrol. Shingo Murata Swarthmore College Swarthmore, PA Border Patrol Shingo Murata Swarthmore College Swarthmore, PA 19081 smurata1@cs.swarthmore.edu Dan Amato Swarthmore College Swarthmore, PA 19081 damato1@cs.swarthmore.edu Abstract We implement a border

More information

LB-MAP: LOAD-BALANCED MIDDLEBOX ASSIGNMENT IN POLICY-DRIVEN DATA CENTERS

LB-MAP: LOAD-BALANCED MIDDLEBOX ASSIGNMENT IN POLICY-DRIVEN DATA CENTERS LB-MAP: LOAD-BALANCED MIDDLEBOX ASSIGNMENT IN POLICY-DRIVEN DATA CENTERS MANAR ALQARNI DEPARTMENT OF COMPUTER SCIENCE CALIFORNIA STATE UNIVERSITY DOMINGUEZ HILLS 1 INTRODUCTION - Middleboxes network appliances

More information

EXPORT MANAGER USER GUIDE

EXPORT MANAGER USER GUIDE EXPORT MANAGER USER GUIDE Table of Contents Table of Contents 1 Overview 2 General Concepts 2 Creating a Job 3 General Properties 4 Source Properties 4 Export Properties 4 Running Jobs 5 Options 5 Export

More information

Affymetrix Data Transfer Tool User s Guide Version 1.1

Affymetrix Data Transfer Tool User s Guide Version 1.1 Affymetrix Data Transfer Tool User s Guide Version 1.1 P/N 701747 Rev. 3 For research use only. Not for use in diagnostic procedures. Trademarks Affymetrix,, GeneChip, HuSNP, GenFlex, Flying Objective,

More information

Using NetFlow Filtering or Sampling to Select the Network Traffic to Track

Using NetFlow Filtering or Sampling to Select the Network Traffic to Track Using NetFlow Filtering or Sampling to Select the Network Traffic to Track First Published: June 19, 2006 Last Updated: December 17, 2010 This module contains information about and instructions for selecting

More information

Create Datamart. Alessandro Taurelli 2010/06/15 13:41

Create Datamart. Alessandro Taurelli 2010/06/15 13:41 Create Datamart Alessandro Taurelli 2010/06/15 13:41 Table of Contents Create Datamart... 3 1 Reverse engineering the target database schema... 3 2 Hibernate mapping adjustement... 16 3 jar production

More information

Configuring IPv6 DNS. Introduction to IPv6 DNS. Configuring the IPv6 DNS client. Configuring static domain name resolution

Configuring IPv6 DNS. Introduction to IPv6 DNS. Configuring the IPv6 DNS client. Configuring static domain name resolution Contents Configuring IPv6 DNS 2 Introduction to IPv6 DNS 2 Configuring the IPv6 DNS client 2 Configuring static domain name resolution 2 Configuring dynamic domain name resolution 2 Displaying and maintaining

More information

Graph Algorithms. Revised based on the slides by Ruoming Kent State

Graph Algorithms. Revised based on the slides by Ruoming Kent State Graph Algorithms Adapted from UMD Jimmy Lin s slides, which is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States. See http://creativecommons.org/licenses/by-nc-sa/3.0/us/

More information

PIXL. Maxwell Hu (mh3289) Justin Borczuk (jnb2135) Marco Starger (mes2312) Shiv Sakhuja (ss4757)

PIXL. Maxwell Hu (mh3289) Justin Borczuk (jnb2135) Marco Starger (mes2312) Shiv Sakhuja (ss4757) PIXL Maxwell Hu (mh3289) Justin Borczuk (jnb2135) Marco Starger (mes2312) Shiv Sakhuja (ss4757) Description Point processing is the enhancement or modification of an image through individual pixel manipulation.

More information

Making Yield Contour Maps Using John Deere Data

Making Yield Contour Maps Using John Deere Data Making Yield Contour Maps Using John Deere Data Exporting the Yield Data Using JDOffice 1. Data Format On Hard Drive 2. Start program JD Office. a. From the PC Card menu on the left of the screen choose

More information

OMF Documentation. Release OSIsoft, LLC

OMF Documentation. Release OSIsoft, LLC OMF Documentation Release 0.11 OSIsoft, LLC December 24, 2016 Contents 1 Overview 1 2 Message Types 3 2.1 Type Messages.............................................. 3 2.2 Object Messages.............................................

More information

Discover Cube 6.4 Tutorial

Discover Cube 6.4 Tutorial Discover Cube 6.4 Tutorial Copyright 2007 2016 Citilabs, Inc. All rights reserved. Citilabs is a registered trademark of Citilabs, Inc. All other brand names and product names used in this book are trademarks,

More information

Introduction to Firewall Services

Introduction to Firewall Services CHAPTER 12 The Firewall policy folder (in either Device or Policy view) includes firewall-related policies that you can deploy to the Adaptive Security Appliance (ASA), PIX Firewall (PIX), Catalyst Firewall

More information

FSEDIT Procedure Windows

FSEDIT Procedure Windows 25 CHAPTER 4 FSEDIT Procedure Windows Overview 26 Viewing and Editing Observations 26 How the Control Level Affects Editing 27 Scrolling 28 Adding Observations 28 Entering and Editing Variable Values 28

More information

Mapping 2001 Census Data Using ArcView 3.3

Mapping 2001 Census Data Using ArcView 3.3 Mapping 2001 Census Data Using ArcView 3.3 These procedures outline: 1. Mapping a theme (making a map) 2. Preparing the layout for printing and exporting the map into various file formats. In order to

More information

Configuring Performance Routing Cost Policies

Configuring Performance Routing Cost Policies Configuring Performance Routing Cost Policies Last Updated: October 10, 2011 This module describes how to configure and apply Cisco IOS Performance Routing (PfR) cost policies. Performance Routing is an

More information

Marketplace Scheduler. User Guide

Marketplace Scheduler. User Guide Marketplace Scheduler User Guide Publish Date: January 2019 1 Table of Contents Scheduler Application... 3 Requirements... 3 Desktop application... 3 Server application... 6 Appendix... 9 Scheduler Frequently

More information

Module 11 Setting up Customization Environment

Module 11 Setting up Customization Environment Module 11 Setting up Customization Environment By Kitti Upariphutthiphong Technical Consultant, ecosoft kittiu@gmail.com ADempiere ERP 1 2 Module Objectives Downloading ADempiere Source Code Setup Development

More information