Programming Team Report

Size: px
Start display at page:

Download "Programming Team Report"

Transcription

1 Programming Team Report George Carpeni, Chetan Naratain, James Tate, Will Peng (and John Valentino) 1

2 1 Summary of Process 1.1 Project Process Figure 1: Project Process Schematic 2

3 1. Students look up and find county data including schools, transportation stations, businesses, entertainment. Students estimate patrons per day and revenue depending on type of placemark and obtain corresponding lattitutes and longitutes (e.g. school, residence, business) Students submit county data in specified CSV format (see appendix) 2. The programming team checks the data for duplicated entries, proper geocodes, and correct formatting The programming team manipulates the data with excel macros to convert it to a database format The programming team loads the data into a MySQL database The programming team converts the data into KML format with a python script 3. Students determine optimal location of stations by looking at tripends served Students place interchanges and guide-way to satisfy trip demands 4. Students compute trip distributions Students assess economic feasibility of network 5. Students write final report 3

4 *Over the course of these steps, especially as the county groups do their tasks, there is a feedback loop where the county groups find glitches in the tools and the programming group 4

5 2 Features and Their Details 2.1 Last year s features Displayed county placemarks from KML file on a per-county basis Could add/delete Stations Interchanges Shapepoints Could compute guideway lengths as well as the number of stations and interchanges Included some functions for computing productions and attractions and population density information, but these functions referred to nonexistent code and were subsequently modified or removed. 2.2 Added and Changed Features 1. Data Input Standardized the data input format by giving students a format specification Created a python script and an excel macro to convert the input data to Google KML and MySQL data tables, respectively. 5

6 New Placemark types, graphics, and data fields. Education, Recreation, Work, Home, and Transportation as main types. Subtype capability for each field. (e.g. Work could be factory, finance, shopping) Ability to track additional distinct trip types for each placemark. Default type for each field. (e.g. Home has residents, etc.) Secondary Types (e.g. Distinguish between faculty and students in a school) Patrons per day for all types of locations. 2. Real-Time Trip Calculation Added the ability for users to see the number of trips served within a quarter mile square, which was a vital part of being able to adequately construct a network. 3. Station Trip Distributions Calculation Added a server-side program to compute the number of trips served by each independent station in the network. It also outputs the specific placemark locations served by each stations, the total 6

7 number of trips served by the network, and the total number of trips possible (by each type) for the county. 4. Custom Station Loading and Saving In addition to being able to load and save a default station file for each county, users are able to define custom station files so that they can build multiple custom networks, save them in separate files, and compute trip information for each separate network. 5. Interface Improved aesthetic presentation There is a new design logo for the web app The presentation is more intuitive New icons for Add a station Add an interchange Add a shapepoint Add a line A tooltip below the icons guide the user, for example telling them what to do in order to add a line, and the icons add visual cues to make the process of building a PRT network as streamlined as possible for the user. 7

8 Improved map display The size of the map is now optimized to fit within standardsized 1024x768 screen resolution. Will help the end user from running into scrolling issues when adding stations and other functions. The map now has a static position with respect to the rest of the page when the user scrolls. This allows the user to scroll to use different functions and view trip information without having the page refresh the Google Earth map (which can be time- and processor cycle- consuming, especially given the large amount of data being handled by the app) 8

9 3 Functional Diagram of System Figure 2: Project Process Schematic 1. Student Input Data CSV Files: Each student submits a sample file data file, generated in excel subject to a format (See Appendix A.) 9

10 2. Data Objects Placemark KML - A KML file storing the graphical representation of placemarks to be used by the google earth plugin. (There is one placemark KML file per county). Placemark Database - An SQL database that stores the latitude, longitude, type, and description of each placemark. SQL is preferred to files for faster access to large numbers of records, particularly in instances where the trip data has to be calculated multiple times per second, such as in the case of the real-time trip update display. Station KML - KML files containing stations generated by members of each county using the placemark tools and written data. 3. Server Side Programs TripCounter - Given latitude and longitude coordinates from the mouse, this program returns the number of trips that would be served by a station in that area. StationStats - Given data from the client interface, this program leads to a description of each station in the network, explains which placemarks it serves, and computes overall trip statistics for the network by type. Save.PHP - Writes submitted station data to a file on the server. 10

11 4. Client Side Functions Adding Functions - AddStation(); AddInterchange(); AddShapepoint(); AddLine() SaveStations() - Uses an HTTP POST request to submit the station data in memory to SAVE.PHP so that it can be written to a file on the server side. LoadStations() - Loads station data from the default files for a particular station, based on the station selected in a drop-down box in the user interface. LoadCustomStation() - Load station data fro a file in a textbox in the user interface. This gives users the flexibility of creating smaller sub networks or exploring different designs. ComputerTripInformation() - Makes a request to the Station- Stats program and sends the current station data. 5. Web Page PRT.tml Uses CSS, Javascript, Ajax, and DHTML to generate work environment without need to reload page icons implementation uses client-side code to enable tooltips on mouse rollovers, changing of icons when user clicks them, 11

12 and display of instructions for various functions (all without having to reload page) 12

13 4 Improvements For Next Year 4.1 Program Improvements Structural Improvements To be filled in Features to Add To be filled in 4.2 Logistical Improvements To be filled in by John 13

14 5 Appendix A Specified CSV File Format: Example Format in CSV COUNTY,LocID,Type,SubType,Name,Lat,Long,People,Visitors,Area,Revenue 1,1,3,,James Stock Trading Company, , ,30,10,6400, ,2,3,,Princeton University, , ,1400,3,12300,0 Fields County The county number, based on the NJ FIPS code which can be found at the below link. Most data for counties probably uses this format. of counties in New Jersey Should be stored as an integer (e.g. 1, 21) LocID (Long Integer) A unique NUMERICAL INTEGER ID assigned to each unique location in your lsit. There should only be one entry of a number per county, but there may be duplicates across counties. 14

15 Should be stored as an integer between 1 and 2 32, ascending order from 1 or labeling census blocks by block number wouldn t hurt. Type (Short Integer) A short integer used to tell the program which kind of location this entry pertains to. The type will set the display icon and the interpretation of the population number. Types are: 1. Residential 2. Education 3. Business 4. Recreation Subtype (Short Integer) Unused for the time being. In future classes, this may be used to further differentiate icons, such as to separate banks from grocery stores or kindergarten from a university. Should be a blank column Name (String) 15

16 The name/description of the item that will show up on the Goggle Map. Try to make it user friendly. For census housing blocks, label as Census (YYYY) Block #NNNN (for example Census (2000) Block #4931) Should contain no more than 32 alphanumeric characters; no commas, no punctuation. Latitude and Longitude (Separate Fields; Floating Point.) The latitude/longitude of the centroid point of the location in question, or some equivalent. Permanents/ People (Integer) The meaning will vary by type, but this essentially is a simplified way of dealing with the number of employees, residents, or students at a location. Depending on type the description of the field is: (1 Should be stored as a decimal number of degrees to a reasonable precision. Residential) : How many people live in this zone? (2 Education ) : How many students are served and how many faculty? (3 - Business ) : How many employees? Transients / Customers / Visitors (Integer) 16

17 For future use, the goal here is to be able to differentiate between permanent people (e.g. employees at Hoagie Haven) and total amount of traffic. This will also vary by type, but for recreation and education it can be thought of as 0 for not, for commercial it can be thought of in terms of Patrons Per Day This should be an integer between 1 and 2 32 Area (Long Integer) If available, the approximate area of the location in square feet; which is what NJ uses in its census data. I would almost prefer square miles, but for businesses and school that may not cut it. This should be an Revenue (Long Integer) If a business, total amount of revenue/sales. If Unknown, leave blank. Do not include commas or $ symbols. 17

NAACCR Webinar Exercises. May 6, 2010 Kevin Henry Francis Boscoe

NAACCR Webinar Exercises. May 6, 2010 Kevin Henry Francis Boscoe NAACCR Webinar Exercises May 6, 2010 Kevin Henry Francis Boscoe EXERCISE 1 Google Earth and Geocoding Individual Cases Part 1 Introduction to Google Earth 1 Open Google Earth Click Start Programs Google

More information

PRELIMINARY DAMAGE ASSESSMENTS INDIVIDUAL ASSISTANCE

PRELIMINARY DAMAGE ASSESSMENTS INDIVIDUAL ASSISTANCE PRELIMINARY DAMAGE ASSESSMENTS INDIVIDUAL ASSISTANCE Jason Ray jason.ray@em.myflorida.com GIS Administrator 850-815-4730 Florida Division of Emergency Management Setup How does FDEM create a Damage Assessments

More information

St. Lucie County School Concurrency Information System

St. Lucie County School Concurrency Information System St. Lucie County School Concurrency Information System Project Report URP 6905 Internet GIS Yong Hong Guo Department of Urban and Regional Planning University of Florida December 16, 2008 St. Lucie County

More information

How to calculate population and jobs within ½ mile radius of site

How to calculate population and jobs within ½ mile radius of site How to calculate population and jobs within ½ mile radius of site Caltrans Project P359, Trip Generation Rates for Transportation Impact Analyses of Smart Growth Land Use Projects SECTION PAGE Population

More information

Address Management User Guide. PowerSchool 8.x Student Information System

Address Management User Guide. PowerSchool 8.x Student Information System PowerSchool 8.x Student Information System Released July 2014 Document Owner: Documentation Services This edition applies to Release 8.0.1 of the PowerSchool software and to all subsequent releases and

More information

Collect Relevant Demographics

Collect Relevant Demographics I N T R O D U C T I O N Collect Relevant Demographics Here we will collect demographics at the local level! At this point you should have identified and mapped a prioritized brownfield site. We will now

More information

PWC County Mapper XM User Instruction (AS OF 12/03/2009)

PWC County Mapper XM User Instruction (AS OF 12/03/2009) PWC County Mapper XM User Instruction (AS OF 12/03/2009) MAP NAVIGATION There are several ways to navigate the map, you can use your keyboard/mouse combination, use the Navigation toolbar, use the slider

More information

Address Management User Guide. PowerSchool 6.0 Student Information System

Address Management User Guide. PowerSchool 6.0 Student Information System User Guide PowerSchool 6.0 Student Information System Released June 2009 Document Owner: Document Services This edition applies to Release 6.0 of the PowerSchool Premier software and to all subsequent

More information

Welcome to the Chandler Public Library and ReferenceUSA. ReferenceUSA is a searchable database of businesses and residential listings.

Welcome to the Chandler Public Library and ReferenceUSA. ReferenceUSA is a searchable database of businesses and residential listings. Welcome to the Chandler Public Library and ReferenceUSA. ReferenceUSA is a searchable database of businesses and residential listings. This tutorial will teach you to use the database. Page down to move

More information

Data to App: Web,Tablet and Smart Phone Duane Griffith, Montana State University,

Data to App: Web,Tablet and Smart Phone Duane Griffith, Montana State University, Data to App: Web,Tablet and Smart Phone Duane Griffith, Montana State University, griffith@montana.edu This tutorial is broken into several steps related mostly to the technology applied at each step.

More information

CMS Editing of LittleWoodacott.co.uk

CMS Editing of LittleWoodacott.co.uk CMS Editing of LittleWoodacott.co.uk General notes 1. You may find it useful to print out these notes and add your login details to the spaces below. 2. CMS stands for Content Management System. 3. Please

More information

Chapter 9. Attribute joins

Chapter 9. Attribute joins Chapter 9 Spatial Joins 9-1 Copyright McGraw-Hill Education. Permission required for reproduction or display. Attribute joins Recall that Attribute joins: involve combining two attribute tables together

More information

IMPORTING A STUDENT LIST FROM SYNERGY INTO A GOOGLE CONTACT LIST

IMPORTING A STUDENT  LIST FROM SYNERGY INTO A GOOGLE CONTACT LIST IMPORTING A STUDENT EMAIL LIST FROM SYNERGY INTO A GOOGLE CONTACT LIST In Synergy create a report for each class. 1. Log in to Synergy. 2. Open the list of available reports; select the Reports icon from

More information

Using Google Forms: A Tool for Gathering Information Susanna James David Thompson Secondary School February 19, 2015

Using Google Forms: A Tool for Gathering Information Susanna James David Thompson Secondary School February 19, 2015 Using Google Forms: A Tool for Gathering Information Susanna James David Thompson Secondary School February 19, 2015 What is Google Forms? Tool to collect and manage information Easy to use Collaborative

More information

The Data Journalist Chapter 7 tutorial Geocoding in ArcGIS Desktop

The Data Journalist Chapter 7 tutorial Geocoding in ArcGIS Desktop The Data Journalist Chapter 7 tutorial Geocoding in ArcGIS Desktop Summary: In many cases, online geocoding services are all you will need to convert addresses and other location data into geographic data.

More information

Data Visualization Techniques with Google Earth

Data Visualization Techniques with Google Earth Data Visualization Techniques with Google Earth E-Learning for the GIS Professional Any Time, Any Place! geospatialtraining.com Course Outline Module 1: Google Earth Pro Fundamentals Module 2: Adding Features

More information

The University of Arizona

The University of Arizona 1 The University of Arizona Campus 360 Web Map Help Guide v 1.3.1 Revised Aprils 2018 https://maps.arizona.edu/campus360/ 2 CONTENTS INTRODUCTION MAP CONTROLS Zoom in, zoom out...p. 4 Map Control toolbar

More information

Here is a simple dictionary in Python. Let s store the telephone dialing codes for a few countries.

Here is a simple dictionary in Python. Let s store the telephone dialing codes for a few countries. 1 DICTIONARIES, TUPLES and SETS Python is renowned for its data types that allow us to store a collection of data. The most popular of these is the list, which you have already seen. A list is a collection

More information

Polaris 4.1 Training. Patron Services

Polaris 4.1 Training. Patron Services Polaris 4.1 Training Patron Services 1 1 1 Patron Services Patron Services Menu Patron Registration Record 2 Patron Services Menu To access Patron Services, use the Patron Services drop-down menu or click

More information

AJAX Programming Overview. Introduction. Overview

AJAX Programming Overview. Introduction. Overview AJAX Programming Overview Introduction Overview In the world of Web programming, AJAX stands for Asynchronous JavaScript and XML, which is a technique for developing more efficient interactive Web applications.

More information

PlaceMap. Accommodation. Slide 1

PlaceMap. Accommodation.   Slide 1 PlaceMap for Accommodation Slide 1 PlaceMap Using the power of Google Earth to store and display all of your spatial data in a much more dynamic way Google Earth is a free software program that lets you

More information

Locate your Advanced Tools and Applications

Locate your Advanced Tools and Applications MySQL Manager is a web based MySQL client that allows you to create and manipulate a maximum of two MySQL databases. MySQL Manager is designed for advanced users.. 1 Contents Locate your Advanced Tools

More information

Chapter 5: Rosters. Chapter Contents 5.1

Chapter 5: Rosters. Chapter Contents 5.1 5.1 Chapter 5: Rosters Rosters connect students to educators (users) in Educator Portal. Before rosters are entered, both educators and students must be entered into Educator Portal. Rosters can be viewed,

More information

Google Apps for Schools

Google Apps for Schools Google Apps for Schools A Simple User Guide J Foster, B Wellings & P Munro 1 Version: 1 (May 2016) Contents Quick Access... 3 Google Drive... 4 Create and Manipulate... 4 Share... 5 Google Docs... 6 Create

More information

IMPORTING A STUDENT LIST FROM SYNERGY INTO A GOOGLE CONTACT LIST

IMPORTING A STUDENT  LIST FROM SYNERGY INTO A GOOGLE CONTACT LIST IMPORTING A STUDENT EMAIL LIST FROM SYNERGY INTO A GOOGLE CONTACT LIST In Synergy create a report for each class. 1. Log in to Synergy. 2. Open the list of available reports; select the Reports icon from

More information

RURAL ROAD RAM APP QUICK START GUIDE

RURAL ROAD RAM APP QUICK START GUIDE RURAL ROAD RAM Mobile App Quick Start Guide v3.0 1 RURAL ROAD RAM APP QUICK START GUIDE The following provides the setup instructions and basic user guidance for the Rural Road RAM mobile application.

More information

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University Geographical Information Systems Institute Center for Geographic Analysis, Harvard University LAB EXERCISE 5: Queries, Joins: Spatial and Non-spatial 1.0 Getting Census data 1. Go to the American Factfinder

More information

Massachusetts Institute of Technology Department of Urban Studies and Planning

Massachusetts Institute of Technology Department of Urban Studies and Planning Massachusetts Institute of Technology Department of Urban Studies and Planning 11.204: Planning, Communication, and Digital Media Fall 2004 Recitation 6: Using Access to Query Multiple Data Sets 1. What

More information

USER MANUAL. Quick Maps TABLE OF CONTENTS. Version: 2.1

USER MANUAL. Quick Maps TABLE OF CONTENTS. Version: 2.1 USER MANUAL Quick Maps Version: 2.1 Compatibility: Microsoft Dynamics CRM 2016(v8.0) and above TABLE OF CONTENTS Introduction... 2 Benefits of Quick Maps... 2 Prerequisites... 2 Installation & Configuration...

More information

Instructions for Getting Data into Google Earth

Instructions for Getting Data into Google Earth Instructions for Getting Data into Google Earth 21/10/14 1. Making simple placemarks in Google Earth from an Excel table An excel sheet can be set up with lat/long data and then put through a website like

More information

Campus. Online Registration Processing. Student Information Systems

Campus. Online Registration Processing. Student Information Systems CLARK COUNTY SCHOOL DISTRICT TECHNOLOGY & INFORMATION SYSTEMS SERVICES DIVISION EMPLOYEE BUSINESS TRAINING DEPARTMENT Student Information Systems Campus Online Registration Processing Revised: March 2017

More information

Major features Support multi-language Automatically match photo and GPS tracks by time synchronization. Add photo comments.

Major features Support multi-language Automatically match photo and GPS tracks by time synchronization. Add photo comments. Users Manual V1.1 Users Manual Major features Read GPS log from device Add Photo and photo management Auto match photo and waypoints in tracks Shift photo time View in Google earth Save as kmz file GeoTag

More information

Google Earth Maps. Creating an Outdoor Location Using Google Earth. Understanding Geographical Coordinates for Google Earth CHAPTER

Google Earth Maps. Creating an Outdoor Location Using Google Earth. Understanding Geographical Coordinates for Google Earth CHAPTER CHAPTER 18 Within Monitor >, you can create an outdoor location, import a file, view Google Earth maps, and specify Google Earth settings. Creating an Outdoor Location Using Google Earth Importing a File

More information

Excel To KML - Display Excel files on Google Earth.

Excel To KML - Display Excel files on Google Earth. Page 1 of 6 Earth Point Real Estate Home Introduction Q & A County Records Property Search County GIS Utilities Township & Range Excel To KML Around Town Press Blog About Local Homes, Global View Home

More information

Individual Student Assessment Accessibility Profile (ISAAP)

Individual Student Assessment Accessibility Profile (ISAAP) About the Individual Student Assessment Process and the ISAAP Tool The ISAAP Process The ISAAP process represents a thoughtful and systematic approach to addressing student access needs for the Smarter

More information

SIS Import Guide. v2015.1

SIS Import Guide. v2015.1 SIS Import Guide v2015.1 The information in this document is subject to change without notice and does not represent a commitment on the part of Horizon. The software described in this document is furnished

More information

Create CSV for Asset Import

Create CSV for Asset Import Create CSV for Asset Import Assets are tangible items, equipment, or systems that have a physical presence, such as compressors, boilers, refrigeration units, transformers, trucks, cranes, etc. that are

More information

Map Direct Lite. Quick Start Guide: Search Results 05/14/2018

Map Direct Lite. Quick Start Guide: Search Results 05/14/2018 Map Direct Lite Quick Start Guide: Search Results 05/14/2018 Contents Quick Start Guide: Search Results... 1 Search Results in Map Direct Lite.... 2 Where is the Search Results Panel?... 3 Search Result

More information

How To: Geocode. Quest Analytics Suite Geocoding. Geocoding in the Quest Analytics Suite 1. When the software is open, select the Tools dropdown.

How To: Geocode. Quest Analytics Suite Geocoding. Geocoding in the Quest Analytics Suite 1. When the software is open, select the Tools dropdown. How To: Geocode in the Quest Analytics Suite 1. When the software is open, select the Tools dropdown. 2. Click the option for Geocode a Table 3. On the left-hand side of the pop up box there are 5 circles

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

Module 5: Javascript, Cookies COM 420

Module 5: Javascript, Cookies COM 420 Module 5: Javascript, Cookies COM 420 What is the real Internet Lab 1 Review Many Nesting Problems How to check your code Why is nesting Important Recap how grades work in the class Re-Submitting and updating

More information

Mergent Horizon. A User s Guide

Mergent Horizon. A User s Guide Mergent Horizon A User s Guide Welcome to Mergent Horizon. This user guide will show you everything you need to know to access and utilize the wealth of information available from Mergent Horizon. This

More information

RouteSavvy Online User Guide

RouteSavvy Online User Guide RouteSavvy Online User Guide Welcome to RouteSavvy Online by OnTerra Systems! These next few pages will explain step-by-step how to use this powerful tool for your daily or weekly travels. Logging in When

More information

Tutorial for using CalSWEC Student Information System (CSIS) with FileMaker Pro 11

Tutorial for using CalSWEC Student Information System (CSIS) with FileMaker Pro 11 Tutorial for using CalSWEC Student Information System (CSIS) with FileMaker Pro 11 Developed by Susan E. Jacquet, Ph.D. Revised October 2013 2850 TELEGRAPH AVE., SUITE 215 BERKELEY, CA 94705 (P) 510.642.9272

More information

REVIEWING AND MAINTAINING FILES IN YOUR COURSE S CONTENT COLLECTION

REVIEWING AND MAINTAINING FILES IN YOUR COURSE S CONTENT COLLECTION REVIEWING AND MAINTAINING FILES IN YOUR COURSE S CONTENT COLLECTION Faculty Support elearning Blackboard Learn Any files that you directly upload to your course, such as a Syllabus, PowerPoint, audio clip,

More information

Here Comes The Bus. Downloading The App Download the app from Google Play Store or from the Apple App Store

Here Comes The Bus. Downloading The App Download the app from Google Play Store or from the Apple App Store Here Comes The Bus Here Come The Bus Mobile App provides real time alerts of where the schoolbus is along its route. The mobile app allows users to lookup their student s bus stop location. Additionally,

More information

More MySQL ELEVEN Walkthrough examples Walkthrough 1: Bulk loading SESSION

More MySQL ELEVEN Walkthrough examples Walkthrough 1: Bulk loading SESSION SESSION ELEVEN 11.1 Walkthrough examples More MySQL This session is designed to introduce you to some more advanced features of MySQL, including loading your own database. There are a few files you need

More information

The Visualization of Historical Structures and Data in a 3D Virtual City

The Visualization of Historical Structures and Data in a 3D Virtual City San Jose State University SJSU ScholarWorks Master's Projects Master's Theses and Graduate Research Fall 2012 The Visualization of Historical Structures and Data in a 3D Virtual City Bryant Panyarachun

More information

Blue Form Builder extension for Magento 2

Blue Form Builder extension for Magento 2 Blue Form Builder extension for Magento 2 User Guide Version 1.0 Table of Contents I) Introduction......5 II) General Configurations....6 1) General Settings.....7 2) ReCaptcha... 8 III) Manage Forms......

More information

ThingLink User Guide. Andy Chen Eric Ouyang Giovanni Tenorio Ashton Yon

ThingLink User Guide. Andy Chen Eric Ouyang Giovanni Tenorio Ashton Yon ThingLink User Guide Yon Corp Andy Chen Eric Ouyang Giovanni Tenorio Ashton Yon Index Preface.. 2 Overview... 3 Installation. 4 Functionality. 5 Troubleshooting... 6 FAQ... 7 Contact Information. 8 Appendix...

More information

Project Manager Quick Start Guide

Project Manager Quick Start Guide Project Manager Quick Start Guide Developed by the North Carolina Institute for Public Health v November 6, 2015 Development Team: Principal Investigator: Rachel Wilfert, MD, MPH, CPH Project Manager:

More information

HALTON SKILLS COMPETITION WEBSITE DEVELOPMENT SCOPE SECONDARY LEVEL Coordinator: Ron Boyd,

HALTON SKILLS COMPETITION WEBSITE DEVELOPMENT SCOPE SECONDARY LEVEL Coordinator: Ron Boyd, Coordinator: Ron Boyd, rwboyd@orionsweb.net PURPOSE OF THE CHALLENGE To provide competitors with the opportunity to demonstrate, through practical and theoretical application, their skills in client- and

More information

Individual Student Assessment Accessibility Profile (ISAAP)

Individual Student Assessment Accessibility Profile (ISAAP) About the Individual Student Assessment Process and the ISAAP Tool The ISAAP Process The ISAAP process represents a thoughtful and systematic approach to addressing student access needs for the Smarter

More information

This guide will tell you all you need to know about the new Front Desk application which can be found on the main Peoria County GIS website.

This guide will tell you all you need to know about the new Front Desk application which can be found on the main Peoria County GIS website. New Front Desk Quick Guide, 2014 At a First Glance This guide will tell you all you need to know about the new Front Desk application which can be found on the main Peoria County GIS website. When you

More information

Michigan State University

Michigan State University Michigan State University Team Meijer Mobile Customer Satisfaction Application Project Plan Spring 2014 Meijer Staff: Jim Becher Chris Laske Michigan State University Capstone Members: Noor Hanan Ahmad

More information

Webinar Series. Introduction To Python For Data Analysis March 19, With Interactive Brokers

Webinar Series. Introduction To Python For Data Analysis March 19, With Interactive Brokers Learning Bytes By Byte Academy Webinar Series Introduction To Python For Data Analysis March 19, 2019 With Interactive Brokers Introduction to Byte Academy Industry focused coding school headquartered

More information

The WellComm Report Wizard Guidance and Information

The WellComm Report Wizard Guidance and Information The WellComm Report Wizard Guidance and Information About Testwise Testwise is the powerful online testing platform developed by GL Assessment to host its digital tests. Many of GL Assessment s tests are

More information

Using Development Tools to Examine Webpages

Using Development Tools to Examine Webpages Chapter 9 Using Development Tools to Examine Webpages Skills you will learn: For this tutorial, we will use the developer tools in Firefox. However, these are quite similar to the developer tools found

More information

EVALIDator User Guide (Version )

EVALIDator User Guide (Version ) EVALIDator User Guide (Version 1.5.1.05) The objective of this document is to familiarize the user with how to navigate EVALIDator to create a report. Shaded font indicates specific instructions for you

More information

MANITOBA LAND USE AND DEVELOPMENT WEB APPLICATION: How-to guide and help document

MANITOBA LAND USE AND DEVELOPMENT WEB APPLICATION: How-to guide and help document MANITOBA LAND USE AND DEVELOPMENT WEB APPLICATION: How-to guide and help document 2 Index Index... 2 Layout & View... 3 Overview... 3 Layers... 4 Municipal Relations Data Layers... 4 Application Toolbar...

More information

6 New Approaches for Integrating GIS layers and Remote Sensing Imagery for Online Mapping Services

6 New Approaches for Integrating GIS layers and Remote Sensing Imagery for Online Mapping Services 6 New Approaches for Integrating GIS layers and Remote Sensing Imagery for Online Mapping Services Harry Kuo-Chen Chang*, Ming-Hsiang Tsou ** * Department of Geography, National Taiwan Normal University,

More information

DATA 301 Introduction to Data Analytics Visualization. Dr. Ramon Lawrence University of British Columbia Okanagan

DATA 301 Introduction to Data Analytics Visualization. Dr. Ramon Lawrence University of British Columbia Okanagan DATA 301 Introduction to Data Analytics Visualization Dr. Ramon Lawrence University of British Columbia Okanagan ramon.lawrence@ubc.ca DATA 301: Data Analytics (2) Why learn Visualization? Visualization

More information

Data Import Guide DBA Software Inc.

Data Import Guide DBA Software Inc. Contents 3 Table of Contents 1 Introduction 4 2 Data Import Instructions 5 3 Data Import - Customers 10 4 Data Import - Customer Contacts 16 5 Data Import - Delivery Addresses 19 6 Data Import - Suppliers

More information

Lesson 2 - Analyzing Census Data Using USA Demographics for Schools

Lesson 2 - Analyzing Census Data Using USA Demographics for Schools Lesson 2 - Analyzing Census Data Using USA Overview: Students will learn how to navigate USA Demographics for Schools. Students will apply their learning to develop a demographic profile of their community.

More information

Instructor Manual Contents

Instructor Manual Contents Instructor Manual Contents Welcome to egrade Plus...1 The Roles Within egrade Plus...1 Master Course Instructor...1 Class Section Instructor...2 Navigating egrade Plus...2 Using the Universal Navigation

More information

MISSIONINSITE. Congregant Data Preparation and Upload Guide. The Next Generation in Mission Context Analysis

MISSIONINSITE. Congregant Data Preparation and Upload Guide. The Next Generation in Mission Context Analysis MISSIONINSITE Congregant Data Preparation and Upload Guide The Next Generation in Mission Context Analysis Congregant Data Preparation and Upload Instructions TABLE OF CONTENTS PREPARING THE DATA...2 Congregant

More information

Student Achievement Data Exchange 2015/16. Purpose of the System. Overview

Student Achievement Data Exchange 2015/16. Purpose of the System. Overview Purpose of the System Overview The purpose of the Student Achievement Data Exchange (SADE) is to collect course level achievement data through a single collection that can be used for multiple purposes.

More information

Release Date: September, 2015 Updates:

Release Date: September, 2015 Updates: Release Date: September, 2015 Updates: 2 3 4 5 The words "data" and "information" are often used as if they are synonyms. Nevertheless, they have different meanings. Data is raw material from which you

More information

Dan Greenberg Senior Design Project

Dan Greenberg Senior Design Project CSE 401 Senior Design Project Taylor Project Title: Penn Restaurants: An Interactive Map By: Daniel Greenberg deg@seas.upenn.edu Faculty Advisor: Max Mintz Abstract For my senior design project, I have

More information

Project #2: A 3-Tiered Airport Lookup Service Using RPC

Project #2: A 3-Tiered Airport Lookup Service Using RPC Project #2: A 3-Tiered Airport Lookup Service Using RPC 1. Objective Your assignment is to write a 3-tiered client-server program. The program will consist of three components: a client, a places server,

More information

USER NOTES CUSTOM QUERY AND EXPORT SCHOOL BOARD CONNECT TM

USER NOTES CUSTOM QUERY AND EXPORT SCHOOL BOARD CONNECT TM The Custom Query and Export enables users to build queries on current information and export up to 5,000 records immediately. Queries that exceed 5,000 records are completed by MPAC and posted to School

More information

US Youth Soccer Event Management System Team Manager and Team Registration Instructions

US Youth Soccer Event Management System Team Manager and Team Registration Instructions US Youth Soccer Event Management System Team Manager and Team Registration Instructions For assistance at any time, email support@usyouthsoccer.org. PLEASE SELECT ONE OF THE OPTIONS BELOW TO GET STARTED:

More information

RITIS Training Module 10 Script. To return to the Florida Analytics main page, select Florida Analytics Tools in the upper left corner of the page.

RITIS Training Module 10 Script. To return to the Florida Analytics main page, select Florida Analytics Tools in the upper left corner of the page. RITIS Training Module 10 Script Welcome to the Regional Integrated Transportation Information System or RITIS Module 10 CBT. To begin, select the start button or press Shift+N on your keyboard. To return

More information

A Guide To Using CIS Mapping

A Guide To Using CIS Mapping A Guide To Using CIS Mapping CIS Mapping is an exciting new feature by Construction Information Services (CIS) which allows premium customers to view project sectors on the Irish map and access projects

More information

C H A P T E R 1. Introduction to Computers and Programming

C H A P T E R 1. Introduction to Computers and Programming C H A P T E R 1 Introduction to Computers and Programming Topics Introduction Hardware and Software How Computers Store Data How a Program Works Using Python Computer Uses What do students use computers

More information

Making and Sharing Digital Community Asset Maps Using Free Software and Web Resources

Making and Sharing Digital Community Asset Maps Using Free Software and Web Resources Making and Sharing Digital Community Asset Maps Using Free Software and Web Resources A Guide for Community Groups Prepared by Dave Whiting Consulting (dave.whiting@shaw.ca) May, 2009 A product of the

More information

Bus Circulator Feasibility Study Scope of Work March 12, 2018

Bus Circulator Feasibility Study Scope of Work March 12, 2018 The City of Hyattsville Comprehensive Transportation and Infrastructure Study Bus Circulator Feasibility Study Scope of Work March 12, 2018 Project Approach At the request of the City of Hyattsville, Toole

More information

Geocoding vs. Add XY Data using Reference USA data in ArcMap

Geocoding vs. Add XY Data using Reference USA data in ArcMap Geocoding vs. Add XY Data using Reference USA data in ArcMap 10.4.1 Written by Barbara Parmenter. Revised by Carolyn Talmadge 2/27/2017 GETTING BUSINESS DATA FROM REFERENCE USA BY NAICS AND CITY... 2 MODIFY

More information

PVB CONTACT FORM 7 CALCULATOR PRO DOCUMENTATION

PVB CONTACT FORM 7 CALCULATOR PRO DOCUMENTATION PVB CONTACT FORM 7 CALCULATOR PRO 1.4.1 DOCUMENTATION CONTENTS Contents... 1 1. Installation... 1 2. Form tags... 2 2.1. Calculated value... 2 2.1.1. Example... 2 2.1.2. Formula... 2 2.1.2.1. Note on checkbox

More information

Axis 360 Mobile App. July 2016

Axis 360 Mobile App. July 2016 Axis 360 Mobile App July 2016 Agenda Axis 360 app walkthrough Axis 360 MagicWall Additional resources Walkthrough Before You Log In Scroll through our Tips and Tricks pages before logging in to get an

More information

Peoria County Front Desk Map Application

Peoria County Front Desk Map Application Peoria County Front Desk Map Application Quick Guide, 2017 At a First Glance This guide will tell users all they need to know about the Peoria County Front Desk application which can be found on the Peoria

More information

Bike Sharing Feasibility Study and Implementation Plan 2012

Bike Sharing Feasibility Study and Implementation Plan 2012 Source: Nice Ride (Twin Cities MN) Source: Capital Bikeshare (Washington, DC) City of Cleveland Bike Sharing Feasibility Study and Implementation Plan 2012 November 20, 2013 Toole Design Group BrownFlynn,

More information

Assignment #3 CSCI 201 Spring % of course grade Title Weathermeister Back-End API Integration

Assignment #3 CSCI 201 Spring % of course grade Title Weathermeister Back-End API Integration Assignment #3 CSCI 201 4.5% of course grade Title Weathermeister Back-End API Integration Topics Covered Java Classes HTML CSS Basic Java Topics Java Servlets JSP JavaScript AJAX Databases SQL JDBC Overview

More information

Table of Contents GPS/GIS Incident Log

Table of Contents GPS/GIS Incident Log Table of Contents GPS/GIS Incident Log GPS/GIS Incident Log 2 Introduction... 2 Incident Browse Table... 3 Adding a New Incident... 4 Incident Mapping... 5 Editing an Existing Incident... 6 Deleting an

More information

GARMIN EXPLORE PROFESSIONAL WEB HELP. Owner s Manual

GARMIN EXPLORE PROFESSIONAL WEB HELP. Owner s Manual GARMIN EXPLORE PROFESSIONAL WEB HELP Owner s Manual 2018 Garmin Ltd. or its subsidiaries All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the written

More information

Google Slides Handout. Carol LaRow

Google Slides Handout. Carol LaRow Google Slides Handout Create Presentations Online Carol LaRow Create presentations that users view in browser windows. Collaborate in real time, or work when it s convenient, inside a WEB browser window.

More information

Switched-On Schoolhouse 2014 User Guide Resource Center & Messaging System

Switched-On Schoolhouse 2014 User Guide Resource Center & Messaging System Switched-On Schoolhouse 2014 User Guide Resource Center & Messaging System MMVI Alpha Omega Publications, Inc. Switched-On Schoolhouse 2014, Switched-On Schoolhouse. Switched-On, and their logos are registered

More information

Banner 9 Navigation Quick Guide

Banner 9 Navigation Quick Guide Banner 9 Navigation Quick Guide CONTENTS Contents... Error! Bookmark not defined. Application Navigator... 2 Navigating Banner Main Menu... 3 Banner Terminology/Short Cuts... 3 Basic Navigation... 4 Page

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

General Features Agenda

General Features Agenda General Features Agenda Agenda Item Detailed Description Day 1 Query Class Introductions Query Overview Understand SQL Using Query Query Viewer Query Manager Schedule Query Create Query Tabs Table/Records

More information

Texas Connector Training Manual [2016]

Texas Connector Training Manual [2016] Texas Connector Training Manual [2016] CONTENTS OneStar Foundation and Texas Connector Overview... 2 The Data... 2 How To Create An Account... 3 How To Log In... 3 How To Create An Account Visual Guide

More information

Electric Paoge. Browser Scripting with imacros in Illuminate

Electric Paoge. Browser Scripting with imacros in Illuminate Electric Paoge Browser Scripting with imacros in Illuminate Browser Scripting with imacros in Illuminate Welcome Find the latest version of this presentation, plus related materials, at https://goo.gl/d72sdv.

More information

Part III Appendices 165

Part III Appendices 165 Part III Appendices 165 Appendix A Technical Instructions Learning Outcomes This material will help you learn how to use the software you need to do your work in this course. You won t be tested on it.

More information

iii Map Intelligence Client User Manual

iii Map Intelligence Client User Manual Map Intelligence Client User Manual iii TM Map Intelligence Client User Manual ii CONTENTS INTRODUCTION... 5 Purpose... 5 Audience... 5 Conventions... 6 Prerequisites... 6 CONCEPTS... 7 What is Map Intelligence?...

More information

WebNMS IoT Platform 6.0 User & Admin Guide

WebNMS IoT Platform 6.0 User & Admin Guide Table of Contents About This Document... 2 Getting Started... 3 Working with Web Client... 10 Working with Dashboards and Widgets... 11 Working with CCTV... 16 Working with Assets... 18 Viewing with Google

More information

Statistics Module Manual

Statistics Module Manual Enterprise Forms Server 5.1 Statistics Module Manual For Technical Support contact: Tel: 01284 701000 Email: VicFormsSupport@victoriaforms.co.uk Website: www.victoriaforms.co.uk Victoria Forms Sentry House

More information

OneView. User s Guide

OneView. User s Guide OneView User s Guide Welcome to OneView. This user guide will show you everything you need to know to access and utilize the wealth of information available from OneView. The OneView program is an Internet-based

More information

Creating a Website with Wordpress

Creating a Website with Wordpress Creating a Website with Wordpress Wordpress Fundamentals Version 1.6 Fayette County Public Schools June 28, 2013 Sow-Foong Hedman Technology Web Team Contents What is Wordpress?... 4 Overview... 4 Key

More information

Open Source Cloud Map User Guide

Open Source Cloud Map User Guide Open Source Cloud Map User Guide Table of Contents Map Page... 1 Static Mercator Map... 1 Customizable Map... 1 Title Bar... 2 Toolbar... 2 Non Toolbar Navigation... 3 Map Window... 3 Layers / Legend Window...

More information

Person Trip Data Browser and Analyzer

Person Trip Data Browser and Analyzer Person Trip Data Browser and Analyzer Understanding human mobility from spatial perspective QUICK GUIDE Version 0.0.0 By Dr. Ko Ko Lwin Division of Spatial Information Science Faculty of Life and Environmental

More information