APPENDIX A: GIS METHODOLOGY

Size: px
Start display at page:

Download "APPENDIX A: GIS METHODOLOGY"

Transcription

1 APPENDIX A: GIS METHODOLOGY

2 This section describes the steps, geoprocessing tools, software, and data sources utilized for the creation of an online mapping tool and quantitative analysis for Public Assets: City-Owned and Leased Properties. This work was conducted by the Municipal Art Society of New York from March to November of The online tool is hosted at Merging COLP with MapPLUTO TM In order to provide information for each individual parcel, MAS merged two NYC data sources: MapPLUTO TM V15.1 and City-Owned and Leased Properties (COLP 2014 v ). Both datasets are available to the public and can be downloaded for free through the Department of City Planning s website: MapPLUTO contains more than seventy fields derived from data maintained by city agencies and is one of the most complete datasets for land use in the city. The COLP dataset compiles information for over 14,000 city-owned parcels. The dataset specifies over 200 individual types of use and identifies properties that are currently leased and those that are committed for sale or long-term leases. MAS utilized ArcMap for the initial part of the merger. The first step in the process was to define the relationship between the MapPLUTO TM shapefile and the COLP table by using the common attribute data field BBL or Borough-Block-Lot number. Once the relationship was established, the file was exported as a shapefile containing attribute data from both datasets. This shapefile was then uploaded into the GIS online platform CARTO. However, since the COLP dataset includes attribute data describing more than one use type per parcel and MapPLUTO TM registers one land use per parcel, the additional land use entries from COLP were not reflected in the merged file. MAS resolved this issue by utilizing SQL capabilities available on the GIS online platform CARTO. SQL stands for Structured Query Language, and according to ANSI (American National Standards Institute), it is the standard language for relational database management systems. APPENDIX A: GIS METHODOLOGY The COLP dataset lists use type entries by cell, and therefore contains duplicate entries for each parcel or BBL number. In order to complete the merger with MapPLUTO TM, we reorganized COLP data from the use type and BBL fields so that additional use type entries could be listed in a single row instead of multiple cells. This also removed duplicate parcel entries from the dataset. The process was done through utilizing CARTO s SQL capabilities. The script used is listed under the CARTO SQL Notes section. The dataset was exported into Microsoft Excel and the use type values were separated into multiple rows. This dataset listed only one BBL per parcel and the corresponding land use values were placed horizontally as use1, use2, use3, etc. This new file was uploaded to CARTO as a CSV table. The final step in the merger was to update the uploaded dataset in CARTO with the new aggregate use type information. This was also done using CARTO s SQL capabilities. The utilized script is listed in this document section titled CARTO SQL notes. Web Maps Infowindow, Display, and Symbology In order to display the additional use type information, we utilized CARTO s infowindow HTML custom capabilities. As users click on properties across the map, the window shows selected attribute data from the layers. The window displays the COLP expanded category mode data field as general land use, the use type data field as specific land use, and includes over a dozen more selected fields in the merged COLP MapPLUTO dataset. An extract of the HTML script is listed in HTML or the Infowindow and the Google Image SQL sections. In order to optimize the streaming of the map and reduce chances of crashing the online platform, we decided not to utilize additional SQL queries to filter and display symbology properties. Instead, we exported separate shapefiles from the merged dataset based on COLP s category code and initially divided the dataset into three categories: (i) properties with a current use (non residential), (ii) residential properties, and (iii) properties with no current uses. PUBLIC ASSETS: CITY-OWNED AND LEASED PROPERTIES 45

3 APPENDIX A: GIS METHODOLOGY In addition, we created a fourth layer, (iv) properties with cultural, recreational, and open space, by extracting properties from the second category (properties with a current use nonresidential). Each of these separate shapefiles contains all the attribute data from the merged COLP and MapPLUTO datasets. As shown in Figure A, we then uploaded the individual shapefiles into CARTO and assigned their corresponding symbology values. Red indicates no use, blue indicates non-residential use, yellow indicates residential use, and green for parks and open space. In addition to the general use categories described above, we also created additional shapefiles for (i) properties that are leased, (ii) properties committed for sale or lease, and (iii) properties based on agency jurisdiction for the four agencies with most parcels. We used the select by attributes tool from ArcMap to select parcels listed in the leased properties and final commitment COLP datafields. For agency jurisdiction, we selected parcels using agencymod, and for state or federal properties we selected parcels using Other Public Authority, State, or Federal Ownership. Both data entries are listed in MapPLUTO TM. Once the parcels were selected, we exported them as additional layers, uploaded them in CARTO (shown in Figure B), and assigned the following symbology values: square hatches for properties that are leased and stripe hatches for properties committed for sale or lease. Symbology for agency jurisdiction would not be altered as it is based on use category. Total List of Utilized Layers Derived from COLP and MapPLUTO Merger Properties with a current use (non residential) Residential properties Properties with no current use Properties with cultural, recreational, and open space uses Properties that are leased Properties that are committed for sale or lease Properties managed by the Department of Citywide Administrative Services (DCAS) Properties managed by the Department of Education (DOE) Properties managed by the Department of Housing Preservation and Development (HPD) Properties managed by the New York City Housing Authority (NYCHA) Properties managed by remaining agencies CARTO SQL Notes Aggregate COLP dataset by BBL Run the following sql: SELECT colp_2014_dcp.bbl, string_agg(colp_2014_dcp.use_type,',') as agg FROM colp_2014_dcp GROUP BY colp_2014_dcp.bbl This consolidates all land-use values for each BBL into one cell. Export the dataset and separate the landuse values in excel. Clean up the dataset to remove duplicates. Finally, upload this new file to CARTO as a CSV (bbl_landuse_all). Update COLP Merged Dataset Add columns to each dataset (12 in this case) and name each use#. Run the following sql for each dataset (split it into two for faster processing): UPDATE FILENAME SET use1 = bbl_landuse_all.use1, use2 = bbl_landuse_all. use2, use3 = bbl_landuse_all.use3, use4 = bbl_landuse_ all.use4, use5 = bbl_landuse_all.use5, use6 = bbl_ landuse_all.use6 FROM bbl_landuse_all WHERE FILENAME = bbl_landuse_all.bbl UPDATE FILENAME SET use7 = bbl_landuse_all.use7, use8 = bbl_landuse_all. use8, use9 = bbl_landuse_all.use9, use10 = bbl_landuse_ all.use10, use11 = bbl_landuse_all.use11, use12 = bbl_ landuse_all.use12 FROM bbl_landuse_all WHERE FILENAME = bbl_landuse_all.bbl 46 PUBLIC ASSETS: CITY-OWNED AND LEASED PROPERTIES

4 APPENDIX A: GIS METHODOLOGY Figure A. Web Map For example, for the file colp_dcp_final_commitment, the sql would look like this: UPDATE colp_dcp_final_commitment.bbl SET use1 = bbl_landuse_all.use1, use2 = bbl_landuse_all. use2, use3 = bbl_landuse_all.use3, use4 = bbl_landuse_ all.use4, use5 = bbl_landuse_all.use5, use6 = bbl_ landuse_all.use6 FROM bbl_landuse_all WHERE colp_dcp_final_commitment.bbl = bbl_ landuse_all.bbl This updates the original dataset to include all the additional land-use columns. (The SQL disappears after the dataset has been updated.) HTML or the Infowindow The language can be altered, but essentially the HTML to display general and specific land use is the following: <p>the use for this property is <b>{{excatcodmo}}</ b>, specifically <b>{{use1}}</b>{{#use2}}, <b>{{use2}}</b>{{/use2}}{{#use3}}, <b>{{use3}}</ b>{{/use3}}{{#use4}}, <b>{{use4}}</b>{{/use4}} {{#use5}}, <b>{{use5}}</b>{{/use5}}{{#use6}}, <b>{{use6}}</b>{{/use6}}.</p> The format for each is: {{#use3}}, <b>{{use3}}</b>{{/ use3}}. The {{#use3}} ---- {{/use3}} pattern allows the text to be optional in the case that there is no value in that cell. Figure B. Web Map Symbology Google Image SQL SELECT *, ' e=350x170&location=' mid_y ',' mid_x '&sensor=false&fov=110' as image FROM colp_dcp_properties_with_no_use_03_28_2016 Quantification and GIS Analysis In order to provide quantifiable indicators, MAS utilized ArcMap capabilities to measure data from the attribute table. The GIS analysis consisted of counting the number of properties and measuring surface areas. For example, in order to count the total number of properties with no use, we opened the shapefile attribute table, displayed all records, and annotated the total number into an Excel spreadsheet (in this case 3,162 parcels). In order to measure the surface area, we opened the attribute table, selected calculate geometry on the shape_area field, chose acres (US), and then annotated the number listed in the sum entry from the summary window (no use properties represent 1,832 acres). This process was repeated for all layers derived from the COLP and MapPLUTO TM merger: Properties with a current use (non residential) Residential properties Properties with no current use Properties with cultural, recreational, and open space uses PUBLIC ASSETS: CITY-OWNED AND LEASED PROPERTIES 47

5 APPENDIX A: GIS METHODOLOGY Properties that are leased Properties that are committed for sale or lease Properties managed by DCAS Properties managed by DOE Properties managed by HPD Properties managed by NYCHA Properties managed by remaining agencies MAS studied the relationship between city-owned parcels with additional layers of information and identified citywide trends. The conducted GIS analysis for this additional group of datasets was similar to the one described above, essentially counting the number of properties and measuring surface areas, but selecting parcels with the select by location tool available in ArcMap. For example, in order to count the total number of residential properties that were located within a New York State remediation site, we conducted the following steps: selected residential properties as the target layer, selected the state remediate sites layer as the source layer, and chose intersect the source layer feature as the spatial selection method for target layer. Once the desired parcels were selected, we opened the shapefile attribute table, displayed selected records, and annotated the total number into an Excel spreadsheet (in this case 140 parcels). In order to measure the surface area, we opened the attribute table, selected calculate geometry on the shape area field, chose acres (US), and then annotated the number listed in the sum entry from the summary window (parcels that fully or partially intersect remediation sites represent 5,255 acres). This process was repeated for each of the following layers: Properties with a current use (non residential) Residential properties Properties with no current use Properties with cultural, recreational, and open space uses We counted the number of properties and measured the area of parcels contained in the COLP MapPLUTO merger by replicating the process of choosing the source layer of the select by location tool for seventeen different layers. These additional layers were grouped into five focus areas: environment, infrastructure, 48 landmarks, population, and rezonings. All datasets are directly or indirectly 1 provided by city, state or federal agencies and are available to the public. All datasets were downloaded in March 2016 and represented the latest publicly available version from the source at the time. Environment 2007 FIRMs 100-Year Floodplain (FEMA): what-is-my-bfe-address-lookup-tool/ 2050 Projected Sea Level Rise 100-year Floodplain (NPCC): Environment/Sea-Level-Rise-Maps-2050s-100- year-floodplain-/hbw8-2bah Designated Freshwater and Tidal Wetlands (NYS DEC): Remediation Sites (NYS DEC): gisdata/ Coastal Zone Boundary (DCP): nyc.gov/site/planning/data-maps/open-data. page#waterfront Infrastructure Sewer Infrastructure (OSA NYC): openseweratlas.tumblr.com/data Subway access (DOITT): cityofnewyork.us/transportation/subway- Entrances/drex-xx56 Landmarks LPC Landmarks and Historic Districts (NYC LPC): Individual-Landmarks/ch5p-r223 Population Median Household Income by Census Tracts (U.S. Census ACS): gov/faces/tableservices/jsf/pages/productview. xhtml?pid=acs_14_5yr_s1901&prodtype=table Number of Residents by Census Tract (U.S. Census ACS): 1 The only datasets that are not directly provided by a government agency are the sewershed and CSO drainage area shapefiles. These GIS files were created by the Open Sewer Atlas NYC project through a combination of outdated NYC DEP shapefiles, publicly available documents like the Waterbody/Watershed Facility Plans, Long Term Control Plans, and Environmetal Impact Statements. They have been updated manually to reflect the most current publicly available pdf documents. These layers are not official and should not be used for planning purposes. They are intended for illustrative and educational purposes only. PUBLIC ASSETS: CITY-OWNED AND LEASED PROPERTIES

6 faces/tableservices/jsf/pages/productview. xhtml?pid=acs_14_5yr_b01003&prodtype=table APPENDIX A: GIS METHODOLOGY Rezonings PLACES Initiative (NYC DCP) : gov/site/planning/plans/places.page Neighborhood Studies (NYC EDC): nycedc.com/project/inwood-nyc-neighborhoodstudy Future Updates Public Assets: City-Owned and Leased Properties is scheduled to be launched during The 2016 Municipal Art Society of New York Summit for New York City. MAS envisions this effort as ongoing, and foresees several iterations in order to improve accuracy and performance. The first update of the project will likely commence in spring 2017, including MapPLUTO TM V17.1 and the latest version of COLP (both datasets are expected to be released by then). Furthermore, MAS will explore partnerships with other organizations to facilitate public interaction and encourage participation in the planning process for these properties. MAS will examine alternatives for integrating an online interface with the maps that would allow for the general public to provide feedback and commentary addressed to individual parcels. PUBLIC ASSETS: CITY-OWNED AND LEASED PROPERTIES 49

7 APPENDIX B: DATA RECOMMENDATIONS

8 During our work on this project, we discovered that there is much to be done to improve current and future city datasets. Inconsistencies, incompatible formats, and other issues outlined below should be addressed to facilitate ease of use. 1. New databases should be made available as a downloadable file in a format that facilitates analysis. Poorly designed websites, disorganized spreadsheets, or un-editable PDF files are common obstacles that limit examination. Databases should be made available to the public in formats that allow evaluation, such as a downloadable CSV file or an Excel spreadsheet. Such files should also include a template that defines abbreviations and explains the fields of information. 2. Moreover, in order to allow correlation and comparison to other datasets, they should incorporate at minimum the following attribute information: identification numbers for the Uniform Land Use Review Procedure (ULURP) and City Environmental Quality Review (CEQR), the agreed timeline for implementation, the estimated allocated budget and funding source, the lead and coordinating City agencies for implementation, status of the project, geographic location based on address and Borough Block Lot (BBL) number, and date of the latest update. 3. MAS also encountered some inconsistencies that made the analysis and merger between the existing MapPLUTO and COLP datasets challenging. The following considerations should be made for updates or any future databases. Organization and structure of information should be consistent across datasets. Specifically, databases should avoid arranging data that creates duplicate entries for each property. The COLP dataset breaks use types into 223 use codes, providing information for a detailed assessment of how these properties are being utilized. An individual property can have more than one use type. For example, Central Park has the following: museum/gallery, theater, garage, reservoir, police station, agency executive office, indoor storage and park. The APPENDIX B: DATA RECOMMENDATIONS COLP database organizes this information vertically (by cells) which requires duplicating each property entry, as result Central Park is duplicated 11 times in the database. In contrast, MapPLUTO does not have replicated, as it lists all pertaining information to a tax lot in a horizontal way (columns). In order to integrate both datasets, MAS staff used Python (a highlevel, general-purpose, interpreted, dynamic programming language) to organize use types from COLP in a horizontal arrangement compatible with MapPLUTO. In order to encourage robust databases and cross examination of City information, consistent organization and structure should be implemented. The attribute fields describing agency jurisdiction varies within the datasets themselves. For example, under MapPLUTO The Metropolitan Transportation Agency (MTA) is listed with dozens of different name variations (METROPOLITAN TRANS/AU, METROPOLITAN TRNSPRTN, MTA- NYCTA, etc). As a result, identifying properties under MTA s jurisdiction is challenging and time consuming. Agency names and other labels should remain consistent within and across different datasets. The attribute field describing ownership under MapPLUTO is often unreliable. The dataset obtains this information from IPIS and provides the following codes: C (City Ownership), M (Mixed City & Private Ownership), O (Other- Public Authority, State or Federal Ownership), P (Private Ownership), X (Fully tax exempt property that could be owned by the city, state, or federal government; a public authority; or a private institution), and blank (unknown, usually private ownership). For example, according to MapPLUTO 12,660 properties are classified as C (City Ownership), but according to COLP there are 14,003 properties. Ownership properties across datasets should be consistent as they are both derived from IPIS. PUBLIC ASSETS: CITY-OWNED AND LEASED PROPERTIES 51

PUBLIC WORKS. 1oo. DiEital Fee Schedules. Effective January 1, 2008

PUBLIC WORKS. 1oo. DiEital Fee Schedules. Effective January 1, 2008 PUBLIC WORKS Geographic Information Systems DiEital Fee Schedules Effective January 1, 2008 Date Advertised 12103/07 In (Publication) Daily Business Journal Public Hearing Date Approved as to form: David

More information

DRAFT THE RESILIENCE TO DISASTERS AND EMERGENCIES INDEX (REDI) Constantine E. Kontokosta, PhD, PE, AICP, LEED AP NYU CUSP & NYU Poly & NYU Schack

DRAFT THE RESILIENCE TO DISASTERS AND EMERGENCIES INDEX (REDI) Constantine E. Kontokosta, PhD, PE, AICP, LEED AP NYU CUSP & NYU Poly & NYU Schack THE RESILIENCE TO DISASTERS AND EMERGENCIES INDEX (REDI) A Unified Index of Resilience Capacity and Survivability Update: March 27, 2014 Constantine E. Kontokosta, PhD, PE, AICP, LEED AP NYU CUSP & NYU

More information

Queens/Brooklyn Lot Info Users Guide TWO WAYS TO REACH LOT INFO FROM STRATUS: 1. Search Stratus Public Records, then click Lot Info button

Queens/Brooklyn Lot Info Users Guide TWO WAYS TO REACH LOT INFO FROM STRATUS: 1. Search Stratus Public Records, then click Lot Info button Queens/Brooklyn Lot Info Users Guide TWO WAYS TO REACH LOT INFO FROM STRATUS: 1. Search Stratus Public Records, then click Lot Info button 2. Click on Lot Info link on Public Records search menu page Both

More information

THINK RESILIENCY 2.0 WITH VIZONOMY

THINK RESILIENCY 2.0 WITH VIZONOMY VIZONOMY // 01 ABOUT US The greatest advances in climate risk awareness will be those that merge, harness, and properly communicate big data sources to drive meaningful action and response. Vizonomy s

More information

GIS Basics for Urban Studies

GIS Basics for Urban Studies GIS Basics for Urban Studies Date: March 21, 2018 Contacts: Mehdi Aminipouri, Graduate Peer GIS Faciliator, SFU Library (maminipo@sfu.ca) Keshav Mukunda, GIS & Map Librarian Librarian for Geography (kmukunda@sfu.ca)

More information

US Geo-Explorer User s Guide. Web:

US Geo-Explorer User s Guide. Web: US Geo-Explorer User s Guide Web: http://usgeoexplorer.org Updated on October 26, 2016 TABLE OF CONTENTS Introduction... 3 1. System Interface... 5 2. Administrative Unit... 7 2.1 Region Selection... 7

More information

Utility Network Management in ArcGIS: Migrating Your Data to the Utility Network. John Alsup & John Long

Utility Network Management in ArcGIS: Migrating Your Data to the Utility Network. John Alsup & John Long Utility Network Management in ArcGIS: Migrating Your Data to the Utility Network John Alsup & John Long Presentation Outline Utility Network Preparation - Migration Patterns - Understanding the Asset Package

More information

Memphis Property Hub User Guide

Memphis Property Hub User Guide Memphis Property Hub User Guide Last Updated: January 11, 2019 Table of Contents 1. What is the Memphis Property Hub? 2. Gaining access 3. Memphis data 4. Adding custom and existing boundaries 5. Downloading

More information

SAGIS Property Map Viewer Instruction Manual Instructions for using the SAGIS Property Map Viewer. Published December 21, 2018.

SAGIS Property Map Viewer Instruction Manual   Instructions for using the SAGIS Property Map Viewer. Published December 21, 2018. SAGIS Property Map Viewer Instruction Manual www.sagis.org/map Instructions for using the SAGIS Property Map Viewer. Published December 21, 2018. 1 Instructional Videos Click on a link to watch a video

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

1. Open the New American FactFinder using this link:

1. Open the New American FactFinder using this link: Exercises for Mapping and Using US Census Data MIT GIS Services, IAP 2012 More information, including a comparison of tools available through the MIT Libraries, can be found at: http://libraries.mit.edu/guides/types/census/tools-overview.html

More information

Getting Started with GeoQuery

Getting Started with GeoQuery Getting Started with GeoQuery A quick-start guide to the download and use of spatial data for international development geo.aiddata.org GeoQuery Quick Start Handbook v. 1.01, December 2017 WWW.GEOQUERY.ORG

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

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

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

Geodatabases. Dr. Zhang SPRING 2016 GISC /03/2016

Geodatabases. Dr. Zhang SPRING 2016 GISC /03/2016 Geodatabases Dr. Zhang SPRING 2016 GISC 1401 10/03/2016 Using and making maps Navigating GIS maps Map design Working with spatial data Spatial data infrastructure Interactive maps Map Animations Map layouts

More information

Introduction to GIS & Mapping: ArcGIS Desktop

Introduction to GIS & Mapping: ArcGIS Desktop Introduction to GIS & Mapping: ArcGIS Desktop Your task in this exercise is to determine the best place to build a mixed use facility in Hudson County, NJ. In order to revitalize the community and take

More information

Adopted by La Mesa City Council July 9, 2013 Resolution

Adopted by La Mesa City Council July 9, 2013 Resolution Adopted by La Mesa City Council July 9, 2013 Resolution 2013-059 Table of Contents ACKNOWLEDGEMENTS... A-1 INTRODUCTION... I-1 Vision... I-1 Background... I-1 Citizen Participation... I-3 Planning in La

More information

Lab 4. Accessing Secondary Data with CartoDB

Lab 4. Accessing Secondary Data with CartoDB Lab 4 Accessing Secondary Data with CartoDB What You Will Learn How To Access a wide variety of geographic data sources Perform queries on data Digitize your own data Screen-scape from web pages Georeference

More information

Reston Town Center North Development. Community Update

Reston Town Center North Development. Community Update Reston Town Center North Development Community Update May 31, 2017 1 Presentation Agenda Project Overview Site and Current Property Ownerships Development Plan/Grid of Streets Proposed Ownership Comprehensive

More information

Manitowoc County, WI Advanced Access GIS Viewer User Documentation

Manitowoc County, WI Advanced Access GIS Viewer User Documentation Manitowoc County, WI Advanced Access GIS Viewer User Documentation Introduction Extensive time was put into developing this website both from a display, and from a printing and scaling perspective. This

More information

Name: Date: June 27th, 2011 GIS Boot Camps For Educators Lecture_3

Name: Date: June 27th, 2011 GIS Boot Camps For Educators Lecture_3 Name: Date: June 27th, 2011 GIS Boot Camps For Educators Lecture_3 Practical: Creating and Editing Shapefiles Using Straight, AutoComplete and Cut Polygon Tools Use ArcCatalog to copy data files from:

More information

NYC Facilities Explorer Interactive Planning Tool. Session will begin at 1:00pm

NYC Facilities Explorer Interactive Planning Tool. Session will begin at 1:00pm NYC Innovation & Emerging Technologies Workgroup Presents: Culture of Innovation in NYC Government Series NYC Facilities Explorer Interactive Planning Tool Hannah Kates, Product Manager, NYC Department

More information

West Virginia Site Locator and West Virginia Street Locator

West Virginia Site Locator and West Virginia Street Locator West Virginia Site Locator and West Virginia Street Locator West Virginia GIS Technical Center Final Report Prepared August 2009 Revised June 2010 Revised February 2014 West Virginia GIS Technical Center

More information

Environmental Impact Questionnaire

Environmental Impact Questionnaire Community Development Department 11 English Street Petaluma, CA 94952 Phone: 707-778-4301 Email: cdd@ci.petaluma.ca.us Web: www.cityofpetaluma.net/cdd Building Geographic Information Systems Housing Neighborhood

More information

Kansas City s Metropolitan Emergency Information System (MEIS)

Kansas City s Metropolitan Emergency Information System (MEIS) Information- Sharing Interagency Cooperation Resources Management Law Enforcement Fire Emergency Medical Services Public Health Private Sector Kansas City s Metropolitan Emergency Information System (MEIS)

More information

Real Estate Sales, New York NY, 2014

Real Estate Sales, New York NY, 2014 Page 1 of 6 Metadata format: ISO 19139 Real Estate Sales, New York NY, 2014 ISO 19139 metadata content Resource Identification Information Spatial Representation Information Reference System Information

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

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

Cause/reason (if currently known)

Cause/reason (if currently known) The Affirmatively Furthering Fair Housing Data and Mapping Tool (AFFH-T): for AFFH-T Release 4.1 Published: December 20, As part of its efforts to support program participants in conducting their Assessments

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

Working with International Census Data in GIS

Working with International Census Data in GIS Working with International Census Data in GIS Updated February 23, 2015 Table of Contents SETTING UP... 1 DATA SOURCES... 1 TABULAR CENSUS DATA... 2 2001 Tabular Census Data... 5 GEOGRAPHIC DATA... 5 JOINING

More information

Does Your Data Have Harmony. Dan Stone

Does Your Data Have Harmony. Dan Stone Does Your Data Have Harmony Dan Stone Agenda Introduction Configuration Patterns Implementation Approaches Your Feedback ArcGIS for Local Government Esri solutions for local government customers Series

More information

Tutorial for mapping Census 2016 data in Qgis by census tracts

Tutorial for mapping Census 2016 data in Qgis by census tracts Tutorial for mapping Census 2016 data in Qgis by census tracts Skills you will learn: How to join a Census 2016 map layer to a Census 2016 non-map layer, based on a common joining field shared by the two

More information

Washington Statewide Trails Database Project

Washington Statewide Trails Database Project Washington Statewide Trails Database Project Project Overview Washington still is missing a statewide trails database. To date, some of the state and federal hiking, biking, horse and rail trails data

More information

Implementation Plan FY

Implementation Plan FY Implementation Plan FY 2013 2015 January 18, 2012 Financial Integrity - Address the District's Structural Deficit - Financially support the District's reinvention of its family of services - Promote funding

More information

1. Start ArcMap by going to the Start menu > All Programs > ArcGIS > ArcMap.

1. Start ArcMap by going to the Start menu > All Programs > ArcGIS > ArcMap. Learning ArcGIS: Introduction to ArcMap 10.1 The Map Document Feature Manipulation Navigating ArcMap Map Documents, Layers, and Features Shapes, Location, and Attribute Data Symbology Zoom, Pan and Map

More information

Announcements. Data Sources a list of data files and their sources, an example of what I am looking for:

Announcements. Data Sources a list of data files and their sources, an example of what I am looking for: Data Announcements Data Sources a list of data files and their sources, an example of what I am looking for: Source Map of Bangor MEGIS NG911 road file for Bangor MEGIS Tax maps for Bangor City Hall, may

More information

How to use Kendall County Interactive Map System:

How to use Kendall County Interactive Map System: How to use Kendall County Interactive Map System: STEP 1: Go onto Kendall County Home/Main Page at: http://www.co.kendall.il.us/ STEP 2: Under the County Offices tab, click on Planning, Building, and Zoning

More information

Introduction to Social Explorer

Introduction to Social Explorer Introduction to Social Explorer Janine Billadello, Geospatial Data Lab, Baruch College October 1, 2015 Abstract This tutorial will introduce you to Social Explorer, an online mapping interface that allows

More information

A New Dimension to Land Development and Subdivision Design: Application of AutoCAD Civil 3D

A New Dimension to Land Development and Subdivision Design: Application of AutoCAD Civil 3D A New Dimension to Land Development and Subdivision Design: Application of AutoCAD Civil 3D Tarig Ali College of Engineering and Computer Science University of Central Florida Orlando, Florida taali@mail.ucf.edu

More information

FAQ & Troubleshooting

FAQ & Troubleshooting FAQ & Troubleshooting What is the most common issue users have when using the site? Pop-Up Blocker!!! Any link external to the viewer requires a new window to be opened in the browser. See My map or report

More information

Quantitative Mapping Using Census Data

Quantitative Mapping Using Census Data MAP, DATA & GIS LIBRARY maplib@brocku.ca ArcGIS Pro Census Mapping Quantitative Mapping Using Census Data This tutorial includes all necessary steps to create a thematic map using numeric census tract

More information

Stephanie Stuckey Chief Resilience Officer

Stephanie Stuckey Chief Resilience Officer Stephanie Stuckey Chief Resilience Officer Helping cities around the world become more resilient to the physical, social and economic challenges that are a growing part of the 21st century. 2 100RC MEMBER

More information

Snohomish County Tomorrow Steering Committee

Snohomish County Tomorrow Steering Committee Snohomish County Tomorrow Steering Committee Agenda Bill Action Item 3.c. Date: February 27, 2013 Subject: 2012 Buildable Lands Report Exhibits: SCT Planning Advisory Committee Feb 14, 2013 Recommendation;

More information

Meeting Date: October 24, 2018

Meeting Date: October 24, 2018 Town of Moraga Ordinances, Resolutions, Requests for Action Agenda Item 11. A. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 21 22 23 24 32 37 38 Meeting Date: October 24, 2018 TOWN OF MORAGA STAFF REPORT_

More information

Tip Sheet: Using the Selection Tools for Querying

Tip Sheet: Using the Selection Tools for Querying Tip Sheet: Using the Selection Tools for Querying Written by Barbara M. Parmenter, revised 10/2/2015 OVERVIEW OF SELECTION TOOLS... 1 TIPS FOR USING SELECT BY ATTRIBUTE... 3 TIPS FOR USING SELECT BY LOCATION...

More information

User Guide Version 2.1 August 8, IMAPP, Inc. Technical Support: Monday Friday 8:00 AM 5:00 PM Phone: (888) IMAPP.

User Guide Version 2.1 August 8, IMAPP, Inc. Technical Support: Monday Friday 8:00 AM 5:00 PM Phone: (888) IMAPP. User Guide Version 2.1 August 8, 2008 IMAPP, Inc. Technical Support: Monday Friday 8:00 AM 5:00 PM Phone: (888) 462-7701 Email: support@ IMAPP.com www.imapp.com Index Accessing IMAPP... 3 Log in to IMAPP...

More information

Using Data to Grow Government Analytics Competency. Dr. Amen Ra Mashariki

Using Data to Grow Government Analytics Competency. Dr. Amen Ra Mashariki Using Data to Grow Government Analytics Competency Dr. Amen Ra Mashariki Government Leaders Are Interested In Outcomes For Their Communities Healthy Economically Vibrant Safe Diverse Business Opportunities

More information

Census-ACS Master Index Files

Census-ACS Master Index Files Census-ACS Master Index Files Documentation and User s Guide VERSION 1.1 March 1, 2013 Created by Michael J. Greenwald, Ph.D., AICP With assistance from Jonathan Brooks, Texas A&M Transportation Institute

More information

Compass INSPIRE Services. Compass INSPIRE Services. White Paper Compass Informatics Limited Block 8, Blackrock Business

Compass INSPIRE Services. Compass INSPIRE Services. White Paper Compass Informatics Limited Block 8, Blackrock Business Compass INSPIRE Services White Paper 2010 Compass INSPIRE Services Compass Informatics Limited Block 8, Blackrock Business Park, Carysfort Avenue, Blackrock, County Dublin, Ireland Contact Us: +353 1 2104580

More information

Mapping Tabular Data

Mapping Tabular Data Mapping Tabular Data ArcGIS Desktop 10.1 Instructional Guide Kim Ricker GIS/Data Center Head (713) 348-5691 Jean Niswonger GIS Support Specialist (713) 348-2595 This guide was created by the staff of the

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

SPSS TRAINING SPSS VIEWS

SPSS TRAINING SPSS VIEWS SPSS TRAINING SPSS VIEWS Dataset Data file Data View o Full data set, structured same as excel (variable = column name, row = record) Variable View o Provides details for each variable (column in Data

More information

Hackathon Product Spec Sheet

Hackathon Product Spec Sheet Hackathon Product Spec Sheet Objective: To develop a two-part integrated tool that is web-based and mobile-responsive, reduces barriers to accessing data associated with flooding vulnerability, and enhances

More information

Map Viewer User Guide

Map Viewer User Guide Map Viewer User Guide Sea Level Scenario Sketch Planning Tool Version 2, 2017 University of Florida GeoPlan Center Introduction The purpose of this document is to guide users on how to use the Sea Level

More information

PREMIER DATA CENTER OPPORTUNITY ±64.31 ACRES OF LAND ENGLER BLVD AND HWY 212 Chaska, MN 55318

PREMIER DATA CENTER OPPORTUNITY ±64.31 ACRES OF LAND ENGLER BLVD AND HWY 212 Chaska, MN 55318 -$2.50/GROSS SF CLOVER PRESERVE DR PROPERTY HIGHLIGHTS + + Preliminary plat approved. Data center site, shovel ready + + 25MW service to the site via adjacent, double-ended substation with multiple feeds

More information

Data Management and Sharing Plan

Data Management and Sharing Plan 1. PURPOSE: Data generated as a result of the response, or germane to the mitigation of the incident, are used to generate a Common Operating Picture (COP) display and provide information for the Situation

More information

CENTURY 21 REAL ESTATE LLC. Listing Central. User Guide 4/28/2010 1

CENTURY 21 REAL ESTATE LLC. Listing Central. User Guide 4/28/2010 1 CENTURY 21 REAL ESTATE LLC Listing Central User Guide 4/28/2010 1 Introduction The Listing Central User Guide gives instructions on how a 21Online user can fully utilize the tool and features available

More information

Lab #7: Mapping US Census Data

Lab #7: Mapping US Census Data Lab #7: Mapping US Census Data Objectives: Access US Census Data via the Web Download census data in excel format Create new variables based on calculations Create key fields for merging with NYC Planning

More information

Hands-on GIS Project Watershed land use changes Smart Growth?

Hands-on GIS Project Watershed land use changes Smart Growth? Hands-on GIS Project Watershed land use changes 1995 2007 Smart Growth? Introduction New Jersey smart growth strategies aim at growing communities in a way that preserves open spaces, minimizes pollution

More information

How to Rezone. A method for redistributing census populations to create bespoke geographies

How to Rezone. A method for redistributing census populations to create bespoke geographies How to Rezone A method for redistributing census populations to create bespoke geographies January 2014 Contents Contents... 2 Introduction... 3 Limitations of this method... 4 Extract the zip file...

More information

Traverse City Asset Management Plan

Traverse City Asset Management Plan Utilities and Public Services Larry LaCross, GISP, Asset Management/GIS Analyst Traverse City Department of Public Services Introduction About Traverse City (TC) TC Assets Department of Public Services

More information

Data Partnerships to Improve Health Frequently Asked Questions. Glossary...9

Data Partnerships to Improve Health Frequently Asked Questions. Glossary...9 FAQ s Data Partnerships to Improve Health Frequently Asked Questions BENEFITS OF PARTICIPATING... 1 USING THE NETWORK.... 2 SECURING THE DATA AND NETWORK.... 3 PROTECTING PRIVACY.... 4 CREATING METADATA...

More information

Cooperative collaboration between Municipalities using public GIS

Cooperative collaboration between Municipalities using public GIS Cooperative collaboration between Municipalities using public GIS Prof. M. AbdelAziz, Professor, Department of Urban Planning, Faculty of Engineering, Al-Azhar University, Cairo, Egypt, (email: m_azizh@yahoo.com).

More information

Tutorial 2: Query and Select TRI Spatial Data to Study State-Wide Emissions Quantum GIS

Tutorial 2: Query and Select TRI Spatial Data to Study State-Wide Emissions Quantum GIS Tutorial 2: Query and Select TRI Spatial Data to Study State-Wide Emissions Quantum GIS This tutorial will introduce you to the following: Identifying Attribute Data Sources Toxic Release Inventory (TRI)

More information

Texas Connector Training Manual. For TDCJ Users [2016]

Texas Connector Training Manual. For TDCJ Users [2016] Texas Connector Training Manual For TDCJ Users [2016] CONTENTS OneStar Foundation and Texas Connector Overview... 3 The Data... 3 How To Log In... 4 TDCJ Quick Report Generator... 4 The Map... 8 Support

More information

How the NYC Data Analytics Team Responded to and Learned from a Catastrophe. Dr. Amen Ra Mashariki

How the NYC Data Analytics Team Responded to and Learned from a Catastrophe. Dr. Amen Ra Mashariki How the NYC Data Analytics Team Responded to and Learned from a Catastrophe Dr. Amen Ra Mashariki MODA Update the Inform Model Model Disseminate the list Send list of Cooling of Cooling Tower Tower Locations

More information

Module 10 Data-action models

Module 10 Data-action models Introduction Geo-Information Science Practical Manual Module 10 Data-action models 10. INTRODUCTION 10-1 DESIGNING A DATA-ACTION MODEL 10-2 REPETITION EXERCISES 10-6 10. Introduction Until now you have

More information

Municipal Parcel Mapping Workshop

Municipal Parcel Mapping Workshop Municipal Parcel Mapping Workshop Presented to: Ontario Municipalities Presented by: Dave Gariepy, Director of Platform Content Dave Horwood, Land Information Systems Architect Sarah Sibbett, Senior Parcel

More information

Frequently Asked Questions

Frequently Asked Questions ArcGIS Online Map This map will support Forest Stewards, partner organizations, and contractors in carrying out the mission of the Green Seattle Partnership (GSP). Maps help communicate about work areas

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

8 Querying and Selecting Data

8 Querying and Selecting Data 8 Querying and Selecting Data In this chapter, we will cover the following recipes: ff ff ff ff ff Constructing proper attribute query syntax Creating feature layers and table views Selecting features

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

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

Office for Capital Facilities Guidance Document

Office for Capital Facilities Guidance Document Guidance Document September 17, 2018 Telecommunications Site Manager Agreement A reference guide to assist in the use of the NYS Police Crown Castle Telecommunications Agreement Contents Overview Benefits

More information

Polygon Analysis. Download and unzip the personal geodatabase polygon_analysis_lab.mdb from.

Polygon Analysis. Download and unzip the personal geodatabase polygon_analysis_lab.mdb from. NRM435 Spring 2019 Page 1 of 11 Polygon Analysis Download and unzip the personal geodatabase polygon_analysis_lab.mdb from /data/ The personal geodatabase contains five feature datasets.create an Arcmap

More information

Ryerson University, March Table of Contents. Joining CHASS Data To ArcView Cartographic Files A. Importing An Arc Export File...

Ryerson University, March Table of Contents. Joining CHASS Data To ArcView Cartographic Files A. Importing An Arc Export File... Ryerson University, March 2001 Table of Contents Joining CHASS Data To ArcView Cartographic Files... -1 A. Importing An Arc Export File... -1 B. Opening The Arc/Info Coverage In ArcView... -2 C. Converting

More information

Working with 2000 Census Data in ArcGIS: Using the US Census Bureau Web Site for SF1 and SF3 Data

Working with 2000 Census Data in ArcGIS: Using the US Census Bureau Web Site for SF1 and SF3 Data Tufts University GIS Tutorial Working with 2000 Census Data in ArcGIS: Using the US Census Bureau Web Site for SF1 and SF3 Data Revised October 14, 2010 Note: we highly recommend Mozilla Firefox for this

More information

Public-Private Partnerships: Investing in our Infrastructure

Public-Private Partnerships: Investing in our Infrastructure Marvin Markus Managing Director Goldman Sachs marvin.markus@gs.com Hudson Yards Project Area The HY Idea Takes Shape Master Plan: Caemmerer West Side Yard released by the MTA (1988) Plan proposed a mixed-use

More information

BEFORE THE PUBLIC UTILITIES COMMISSION OF THE STATE OF CALIFORNIA

BEFORE THE PUBLIC UTILITIES COMMISSION OF THE STATE OF CALIFORNIA BEFORE THE PUBLIC UTILITIES COMMISSION OF THE STATE OF CALIFORNIA Order Instituting Investigation into the State of Competition Among Telecommunications Providers in California, and to Consider and Resolve

More information

Lecture 7 Attribute-based Operations

Lecture 7 Attribute-based Operations Lecture 7 Attribute-based Operations Learning Objectives 7.1 What is meant by reduce information content using an attribute-based operation? Why would one want to reduce information? 7.2 What is meant

More information

Explore some of the new functionality in ArcMap 10

Explore some of the new functionality in ArcMap 10 Explore some of the new functionality in ArcMap 10 Scenario In this exercise, imagine you are a GIS analyst working for Old Dominion University. Construction will begin shortly on renovation of the new

More information

GIS Mapping of Pipelines

GIS Mapping of Pipelines GIS Mapping of Pipelines RJ Lumbrezer, PS Survey Manager DGL Consulting Engineers, LLC Ted Muns Sales Manager City Blueprint of Toledo 2016 Ohio GIS Conference Hyatt Regency Columbus September 28 30, 2016

More information

ArcGIS Hub: Open data best practices. Graham Hudgins, esri product engineer

ArcGIS Hub: Open data best practices. Graham Hudgins, esri product engineer ArcGIS Hub: Open data best practices Graham Hudgins, esri product engineer Agenda Overview of open data in the ArcGIS Hub Example sites - Hubs Around the World Storymap Making a good site map Preparing

More information

_Tutorials. Arcmap. Linking additional files outside from Geodata

_Tutorials. Arcmap. Linking additional files outside from Geodata _Tutorials Arcmap Linking additional files outside from Geodata 2017 Sourcing the Data (Option 1): Extracting Data from Auckland Council GIS P1 First you want to get onto the Auckland Council GIS website

More information

BAT Quick Guide 1 / 20

BAT Quick Guide 1 / 20 BAT Quick Guide 1 / 20 Table of contents Quick Guide... 3 Prepare Datasets... 4 Create a New Scenario... 4 Preparing the River Network... 5 Prepare the Barrier Dataset... 6 Creating Soft Barriers (Optional)...

More information

How to Register where a Brownfield Land Register has been published.

How to Register where a Brownfield Land Register has been published. How to Register where a Brownfield Land Register has been published. Version 3 Date 21/12/2017 Contents About this guide 1 Why register the location of a published file? 2 The CSV file 2 Spatial files

More information

The Address Point Data Standard for Minnesota Overview and Frequently Asked Questions

The Address Point Data Standard for Minnesota Overview and Frequently Asked Questions The Address Point Data Standard for Minnesota Overview and Frequently Asked Questions Introduction. Address points are a core geospatial infrastructure dataset for Minnesota. They are a foundational data

More information

Business Model for Global Platform for Big Data for Official Statistics in support of the 2030 Agenda for Sustainable Development

Business Model for Global Platform for Big Data for Official Statistics in support of the 2030 Agenda for Sustainable Development Business Model for Global Platform for Big Data for Official Statistics in support of the 2030 Agenda for Sustainable Development Introduction This note sets out a business model for a Global Platform

More information

26 th Street North and Old Dominion Drive Master Planning Task Force

26 th Street North and Old Dominion Drive Master Planning Task Force 26 th Street North and Old Dominion Drive Master Planning Task Force Presentation to Arlington Joint Facilities Advisory Commission October 24, 2018 Site Master Planning Task Force On September 2018, the

More information

Decision D ATCO Electric Ltd. Crystal Lake 722S Substation Telecommunications Tower Replacement

Decision D ATCO Electric Ltd. Crystal Lake 722S Substation Telecommunications Tower Replacement Decision 21617-D01-2016 Crystal Lake 722S Substation October 5, 2016 Alberta Utilities Commission Decision 21617-D01-2016 Crystal Lake 722S Substation Proceeding 21617 Application 21617-A001 October 5,

More information

Introduction to Geodatabase and Spatial Management in ArcGIS. Craig Gillgrass Esri

Introduction to Geodatabase and Spatial Management in ArcGIS. Craig Gillgrass Esri Introduction to Geodatabase and Spatial Management in ArcGIS Craig Gillgrass Esri Session Path The Geodatabase - What is it? - Why use it? - What types are there? - What can I do with it? Query Layers

More information

Planning: Administrative Permits Instructions

Planning: Administrative Permits Instructions Building and Development Services Department 1112 Manatee Ave West, Suite 408 Bradenton, FL 34205 Phone: (941) 749-3012 ManateeBADSOnline@mymanatee.org www.mymanatee.org Planning: Administrative Permits

More information

Infrastructure and Asset Management. and Asset Management

Infrastructure and Asset Management. and Asset Management Infrastructure and Asset Management 18/09/2015 Emad Elbeltagi 1 W elcome to Infrastructure and Asset Management 18/09/2015 Emad Elbeltagi 2 1 About Emad Elbeltagi Structure and delivery Assessment Course

More information

Making ArcGIS Work for You. Elizabeth Cook USDA-NRCS GIS Specialist Columbia, MO

Making ArcGIS Work for You. Elizabeth Cook USDA-NRCS GIS Specialist Columbia, MO Making ArcGIS Work for You Elizabeth Cook USDA-NRCS GIS Specialist Columbia, MO 1 Topics Using ArcMap beyond the Toolkit buttons GIS data formats Attributes and what you can do with them Calculating Acres

More information

SAS Web Report Studio 3.1

SAS Web Report Studio 3.1 SAS Web Report Studio 3.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Web Report Studio 3.1: User s Guide. Cary, NC: SAS

More information

A population grid for Andalusia Year Institute of Statistics and Cartography of Andalusia (IECA) Sofia (BU), 24 th October 2013

A population grid for Andalusia Year Institute of Statistics and Cartography of Andalusia (IECA) Sofia (BU), 24 th October 2013 A population grid for Andalusia Year 2013 Institute of Statistics and Cartography of Andalusia (IECA) Sofia (BU), 24 th October 2013 IECA project. Population grid cells sized 250 x 250m for Andalusia 1.

More information

PORT OF WOODLAND DARK FIBER ANALYSIS

PORT OF WOODLAND DARK FIBER ANALYSIS PORT OF WOODLAND DARK FIBER ANALYSIS Assessment of two routes within the Port of Woodland district for route market analysis and conditions. Route placement and assessment including estimated engineering

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