AgentCity. An Agent-Based Modeling Approach to City Planning and Population Dynamics

Size: px
Start display at page:

Download "AgentCity. An Agent-Based Modeling Approach to City Planning and Population Dynamics"

Transcription

1 AgentCity An Agent-Based Modeling Approach to City Planning and Population Dynamics George Mudrak Department of Computer Science University of Colorado at Colorado Springs Colorado Springs, CO Sudhanshu Kumar Semwal Department of Computer Science University of Colorado at Colorado Springs Colorado Springs, CO, Abstract Cities spend time, revenue and resources in an effort to optimize the geographic and physical layout of property zones and services for the population. As physical construction of these various city models is prohibitive, we can create computational models for testing and experimentation. These computational models include human elements and simulate natural complex social system. These computational-models also provide opportunities to study emergent behaviors similar to the real world. These computational emergent behaviors can give us insight into the effectiveness of our city model. This paper will focus on creating a computational model of a virtual city with zoning and a heterogeneous population using NetLogo modelling environment. Results of our implementation are described and future opportunities are identified. Keywords-NetLogo simulation of city planning, emergence, collobaration I. INTRODUCTION Real cities contain organic structures evolving through a lifecycle that might be unique to the city even though not unique in concept. These organic structures start out small and with factors, such as resource availability, time, planning and people, and can represent magnificence of its inhabitants. While growth and death occur naturally, it is desirable to ensure the longevity of a city for its inhabitants. This planning on the surface represent a straightforward approach to meeting needs. For example, build a road here, a school there and place traffic lights in these locations, lower taxes or raise taxes and suddenly a magical concoction yields a city of beauty or city where even the traffic cannot move properly. Even if city planning can be a straightforward construction project, no city is complete without its people. Once we inject people into this magical concoction, it no longer represents a linear system expressed through many simple formulae. The inclusion of a population brings about a dynamic, evolving complex system that gains its complexity by operating within and even beyond the constraints brought about by simple city planning, creating structures and emergent behaviors [1]. This complexity means that original plans as laid out may no longer apply as a dynamic population goes about its days, nights and lives within the city. In this paper, we use Agent-Based Modelling (ABMs) to begin exploring the dynamics of a city's population with support for residential, commercial and industrial zoning. Agent-based modeling (ABM) is a form of computational social simulation particularly suited to tasks where understanding processes and their consequences is important and concrete experimentation may not be a viable option [2]. ABMs do not take a purely reductionist approach to decomposition of a given model/problem into its primitive constituent parts but rather work towards definitions of simple behavioral rules executed by autonomous entities, allowing behaviors to emerge through interactions between autonomous entities [3]. As the agents go about their "lives" within the simulation, the execution of these base-behaviors can yield a dynamic and emergent pattern of interactions; with these emergent patterns providing great insight into the real-world systems in question and allowing this model to operate as a principle investigative tool [4]. The computation model presented in this paper draws its influences from the wonderful 1989 game, SimCity, released by Maxis software. The SimCity game, or more correctly, simulated city, featured the player as the city's mayor, to decide the destiny of the businesses and the people [5]. Over the years, SimCity has seen four versions and numerous simulation game follow-ups. From a gaming perspective, SimCity launched the "Sim" game era. Our implementation is based on NetLogo which is much simpler visually in comparison to SimCity yet provides toolset to implement an Agent Based modelling environment. II. AGENCY DETAILS A. What is AgentCity AgentCity [6] was developed using NetLogo 3D v4.1.3 (April 3, 2011) on a " imac 2.8 Ghz core i7 with 16 Gb RAM and an ATI Radeon HD 4850 with 512 Mb RAM. NetLogo, itself was developed by Uri Wilensky and provides a complete 2D and 3D development environment with the necessary graphical elements to support end user interaction and visual presentation of the agent based model. We choose a multi-layer approach to model the 3D environment for AgentCity to support 3D-data visualization in NetLogo [7]. AgentCity refers to the 3D visualization in which the business and people agents interact. Two additional layers within AgentCity assist with data visualization. The agent interactions happen according to a time scale we established as NetLogo's "tick" concept has no direct correlation to a fixed unit of time.

2 B. Time Scale The default time measurement in NetLogo is the "tick" unit and a corresponding real-world time value cannot be automatically inferred. Therefore, a deliberate mapping of "ticks" per time unit must be calculated. We started by choosing a movement pace of 0.2 steps per tick. This meant that a person would cover 1 patch in 5 ticks, assuming straight entry / exist on the four compass sides (N, S, E, W) and nondiagonal travel. This 0.2 value also had the added benefit of assisting with a smooth visual representation of movement. Next, we choose an average employee drive time of 30 minutes and arbitrarily assigning 10 patches to correspond to that. For example, using 5 ticks per patch, ten patches per thirty minutes, and sixty minutes per hour, NetLogo ticks per hour (tph) will equal 100, and NetLogo ticks per day (tpd) assuming 24 hours per day will be This allows time scale and work-shifts to be described in terms of ticks in NetLogo. C. The City Layer Four distinct visual elements compose AgentCity. Blue and Pink spheres represent gender aware people with blue males and pink females. Each of the businesses or "zones" is represented as colored cubes. Green for residential businesses, Blue for Commercial and Yellow for Industrial businesses. All of the businesses and residents occupy a "0" base plane within the 3D cube. Zones are randomly generated and based on a percentage of the useable land as indicated during initialization. L a = C w * C h L u = La * P l Z r = L u * P r Z c = L u * P c Z i = L u * P i P l, P r, P c, P i are constants representing the percentages used for usable land, residential land, commercial land and industrial land. La is the land available for use based on the City's width times the City's height. Lu is the land allocated for use by the zones. P l is the percentage of the land available for use or land to use. Z r is the land allocated for residential zones. P r is the percentage of the zone available land to use for residential purposes. Z c is the land allocated for commercial zones. P c is the percentage of the zone available land to use for commercial purposes. Z i is the land allocated for industrial zones. P i is the percentage of the zone available land to use for industrial purposes. D. The Growth Layer The next layer down (-z axis) from the city layer is the Growth Layer. This layer shows in real-time the dynamics of population movement as residents accept and leave jobs, and move into and out of residences. This layer visually presents population gains and population losses for a given zone. P z is the sum of all people affiliated with this zone. Growth or loss itself is calculated as the difference of the current population minus the prior population. A negative value shows a decrease in population and positive value indicates an increase. The delta change can be mapped onto a color and displayed. E. The Pollution Layer The lowest layer presents current pollution of the associated zones as a heat map of pollution intensity. Pollution amounts are based on the Energy Information Administration's (EIA) annual sum amounts for each listed industry found in the U.S. Carbon Dioxide Emissions from Energy Sources 2008 Flash Estimate [8]. These annual values were broken down to daily values across all like zones. As pollution values needed to correspond to ticks, we calculated pollution per NetLogo tick as P r by using the value of the total population in the industry (P z per year) divided by 365 days per year to obtain total population per day. This can be further divided by 2400 to convert to population per NetLogo tick. These values alone per industry do not give enough information yet as they represent the aggregate for that industry. However, the prior formula combined with the national aggregated EIA pollution data yields (P t ) values of: residential P t = ; commercial P t = ; industrial P t = Therefore, to know at a per business (zone) level, we need to take the pollution per tick value of P t and divide that by the number of the type of zone in question for a per zone pollution value. Now with individual zone pollution values present, their visual representation was mapped to a scale of 9 max-number system in which 0 represents the absence of pollution and 9 represented the maximum pollution possible. III. SETUP AND VISUALIZATION Our model utilizes two sets of user-controlled values to determine how the initial city is created and then how the user can interact with the city once the simulation has begun. A. The setup Initialization parameters provide the initial world settings for the city and the agents within our environment. These parameters determine the number of people, amount of usable, zoned, city land, our gender ratios, energy, search vision, etc. Initialization of our city occurs over two synchronous passes.

3 B. Zones The first initialization pass creates the city's residential, commercial and industrial agents per the equations described prior. These agents are distributed randomly throughout the full city plain. The input values, specified by the user, include the percentage of usable land and the percentages indicating the residential, commercial and industrial zones. While not mobile, we wanted our zones to demonstrate preferential affinity towards each other, similar that found in the Boids work [9]. We then extend this concept to use an affinity algorithm based on a cellular automata by generating a neighbor-likeness value N i. The use selects the value of likeneighbors ratio N w. When N i is greater than N w the zone settles down and no longer moves. This provides an 'anchor' so that other zones can attach as neighbors assuming their affinity needs are met. However, when N i is less than or equal to N w the zone will continue looking for a place to settle as the current neighbors do not meet this zones affinity needs. Additional zone attributes are set to include the genderpreference indicating the ratio of males to females desired by the zone. A self-pollution value indicating the pollution this zone inherently creates and a maximum population supported by this zone. Once all zones have settled, city initialization moves to the next step of placing people. C. Resdidents The second initialization pass creates the city's residents. We create the specified number of residents and assign a gender in alignment with the specified gender ratio, a health preference percentage to indicate the person's tolerance to a poor environment, a happiness value and a vision value ranging from 1 to the user specified search vision value. Our agents scan within their vision to locate an employer and a residence. After the attributes have been set and the residents locate a starter resident and job, the simulation setup is complete and ready for execution. D. Runtime options The current runtime options assist with the visualization of the environment and ongoing activity. As described earlier, AgentCity was developed with the 3D version of NetLogo to facilitate the visualization of data in additional cube layers. During execution, the user can choose toggle the visualization rockers to show or hide the display of people, zones, growth and pollution layers. Further, built-in features of NetLogo allow the user to rotate and zoom in and out of the cube space visualization. IV. RESULTS: AGENTS AND THEIR BEHAVIOR An agent-based model seeks to understand agent behavior given a variety of parameters. For this model, the people and various zones; residential, commercial, industrial, represent the agents within our city. Agents have attributes typically maintaining state and agents have behaviors driven by their attributes and environmental parameters. A. Zones Recall that zones are effectively the businesses within the city meeting residential and employment needs. Zones follow their own behaviors when interacting with other agents. A zones initial state and type are established when created leaving behavior to drive runtime interactivity. All zones will pollute to varying degrees as a combination of their inherent pollution plus an adjusting factor based on contained population. Zones actively manage their gender preferences and populations and when they deviate from the desired values, will act to bring them back into alignment. B. Residents Our residents by nature represent the mobile aspect of our modeled-city and like zones, have a range of initial attributes established when they are created. During execution, residents are influenced by other agents and seek to be happy productive citizens of our town. In doing this, residents search for employment (shift based work), search for housing, and will manage their happiness and health. Loss of employment or housing affects a person's happiness. An excessively polluted work or housing environment that exceeds tolerances of an individual will prompt that person into seeking a new employer or a new residence, as appropriate. People also adjust their employment and residence based on their personal gender affinity. Throughout the course of a given day, people can be found at home, work, transitioning between or simply wandering around.

4 V. COMPUTATIONAL MODEL The model essentially operates in a continuous loop asking the agents to perform their behaviors. A. Main loop The main loop establishes the agent activity methods that will be called ongoing for the respective agents. With each discrete agent type providing its own looping cycle, the main loop calls each in turn. main loop update day of week people zones update visuals end The day of the week is updated based on the number of ticks that have passed since the start of the simulation. Remember from the time frame calculations above, that 1 day = 2,400 ticks. This activity takes this information and displays a named day of the week for the user. The main loop further calls an agent method for agent specific processing and then completes the current cycle with updated visuals. B. People This method iterates all the residents giving each an opportunity to calculate and act. people end find a home find a job update happiness update health If a person does not have a home or job, that individual will look within their search vision radius for a home or job. A person s health, employment and home play a role in core happiness. As with real life circumstances, poor health, unemployment or homelessness brings happiness down. Further, a standard 2-sigma distribution to generate an element of randomness is used to affect a persons' happiness. Updating health allows the person to measure their current employment and home pollution to determine if they move. This check does not involve a random element. Once the pollution exceeds the individual s preferences, they act to relocate. C. Zones This method iterates all zones giving them a chance to update attributes and act on behaviors. zones loop balance genders balance population position zone apply pollution end Balancing genders and population follow a simple rule such that if the current value exceeds the desired value, then people of the appropriate gender are let go. Zone-positioning refers to "unsettled" zones and gives them a chance to move, locating themselves based on their affinity setting. Apply the pollution for not only this zone but its impact on neighboring zones is also performed. The impact can be measured by an estimate of falloff pollution. We made use of a following equation adapted from the Astrophysics, Gravity formula but using higher power to tighten the falloff. Let P i is the pollution for the specific non-originating zone. Let falloff = R -5 where R is the radial distance. Then P i = falloff * P s where P s is the pollution of the specific non-originating zone. VI. RESULTS AND COMPUTATIONAL MODEL IN ACTION Once the initialization completes we have the starting state for our simulation. As the model executes in NetLogo, the city itself will change appearance based on modeled resident behaviors. These adjustments will typically be viewed as changes in the density of a zone as indicated by its vertical height. The zone visuals themselves do not provide depth as they function more in aggregate, as such additional visuals are supported by AgentCity to provide greater operational insight into the city's residents' activities. A. Agent city views There are various views of AgentCity that can be captured. Here we demonstrate a sequence of views starting with our initial city having completed setup, then a state after the population has located jobs and homes, then finally a view of the city after the simulation has run for a while. B. Visualized insight into the model The 3D city model provides visualization in aggregate and allows us to see broader trends such as heavily populated zones. This aggregate view does not give us numerical feedback into the model and what activities are taking place. Therefore we added several additional numerical data visualization elements to watch data of interest such as the unemployment and homeless rates, work-shift transitions, resident s happiness, pollution levels and detailed numeric's.

5 We present some of these additional UI elements (Figure 4) below. Figure 4. Chart indicating homeless and jobless Figure 1. Initial City, setup complete Figure 5. Population activities Figure 2. Population layout after homes and jobs are added Figure 6. Gender and capacity statistics during simulation of AgentCity. VII. DISCUSSION OF EMERGENT BEHAVIOR The computational model itself proved reasonable in terms of implementation and execution. Over the course of several executions we observed interesting behaviors not originally expected. Figure 3. Zone density and pollution heat map three layers. We noticed on several occasions, that even with enough housing and employment capacity, there was always some portion of the population homeless and unemployed. This contradicts the base behavior for individuals to find and accept a job and for employers to hire any applicant. With no economic means rules in place, the cost of housing or having an employee played no role. In other words, it makes no

6 obvious sense why people would remain homeless or jobless in a society with enough capacity. This requires further study. We also noticed that some situations existed in which the current population exceeded the zone capacity and surprisingly, it was very possible to find underutilized zones. For example, a population of 4,000 people with a residential capacity of 3,000 would still show residential zones operating at 25% of capacity. Why would this occur when the need far outstrips the capacity? One of the issues we discovered during various sample runs was that our chosen "tick-to-time" relationship was too granular. Requiring 2,400 ticks per day meant that progress and observable results took more real-time than necessary. In hindsight, making some assumptions such as "instant" travel from home to work would have allowed us to cut down on the number of downtime ticks. Future model versions will need to revisit this issue. VIII. FUTURE DIRECTIONS While we implemented a pollution model, we did not implement a corresponding pollution dispersion model. The end result of the current model is that pollution simply accrues and given enough time, no zone remains hospitable. An enhancement would be to add pollution dispersion to the model. Additional efforts could be made to increase the relationships between the agents in terms of greater producer / consumer behaviors. A further enhancement would be to model from existing city zoning data. This enhancement would allow for modeling specific cities, such as Denver, by extending the model to load city zoning information from a saved data file. IX. COCLUSIONS Agent Based Models allowed us to explore and experiment without any restrictive bounds, we could change parameters and visualization paradigms easily using NetLogo environment. ABMs create a way for us to quickly and dynamically evaluate impacts of changes in environmental settings on given models. These provided an insight into dynamic economic, social and psychological systems in a living environment which we modeled which was not obvious before we started our modeling. We have presented AgentCity as an agent based model for the complex systems task of city planning and testing. The very nature of a complex systems makes direct testing and evaluation at times prohibitive and in some cases, impossible as many of the parameters used in our experiment are based on some values which can dynamically change depending upon real-life situations. Modeled as an ABM, we were able to experiment with various starting conditions and observe the results of the heterogeneous population activities. Our model provided enough emergent behaviors, which sometime are relevant in the real world, prompting the need for further exploration and evaluation. We also feel that AgentCity can provide a starting platform for complimentary work such as residential real-estate, traffic patterns, and potential testing of zoning for specific use such as biking, pedestrians inclusive of sighted and non-sighted population, possibly helping with future city planning. REFERENCES [1] Mitchell, Melanie, "Complexity, A Guided Tour, Oxford University Press, pp (2009). [2] Gilbert, Nigel, "Agent-Based Models", SAGE Publications, pp. 2-3 (2008). [3] John H. Holland and John H. Miller, Artificial Adaptive Agents in Economic Theory, AEA Papers and Proceedings, Vol. 81 No.,2, pp (May 1991). [4] Epstein, Joshua, Axtell, Robert, "Growing Artificial Societies", Brookings Institution Press, p. 177 (1996). [5] Wilson, Johnny, "The Official SimCity Planning Commission Handbook", Osborne McGraw-Hill, pp. xxii-xxiii, (1994). [6] Mudrak, G, AgentCity modeling, term report, Animation and Visualization (CS5770) Dr. S.K.Semwal, UCCS, pp (2011). [7] Wilensky, Uri, "NetLogo", Center for Connected Learning and Computer-Based Modeling, Northwestern University, Evanston, IL M. Young, The Technical Writer's Handbook. Mill Valley, CA: University Science, [8] U.S. Carbon Dioxide Emissions from Energy Sources 2008 Flash Estimate, [9] Lalena, M. [Online] Java Flocking Boids.

Content Area: Social Studies Standard: 1. History Prepared Graduates: Develop an understanding of how people view, construct, and interpret history

Content Area: Social Studies Standard: 1. History Prepared Graduates: Develop an understanding of how people view, construct, and interpret history Standard: 1. History Develop an understanding of how people view, construct, and interpret history 1. Organize and sequence events to understand the concepts of chronology and cause and effect in the history

More information

Computer Simulations

Computer Simulations Computer Simulations A practical approach to simulation Semra Gündüç gunduc@ankara.edu.tr Ankara University Faculty of Engineering, Department of Computer Engineering 2014-2015 Spring Term Ankara University

More information

The Church Demographic Specialists

The Church Demographic Specialists The Church Demographic Specialists Easy-to-Use Features Map-driven, Web-based Software An Integrated Suite of Information and Query Tools Providing An Insightful Window into the Communities You Serve Key

More information

The Underutilization of GIS & How to Cure It. Adam Carnow Esri

The Underutilization of GIS & How to Cure It. Adam Carnow Esri The Underutilization of GIS & How to Cure It Adam Carnow Esri What is GIS? A framework to organize, communicate, and understand the science of our world Business Intelligence (BI) is the set of

More information

GOVERNMENT MAPPING WORKSHOP RECOVER Edmonton s Urban Wellness Plan Mapping Workshop December 4, 2017

GOVERNMENT MAPPING WORKSHOP RECOVER Edmonton s Urban Wellness Plan Mapping Workshop December 4, 2017 GOVERNMENT MAPPING WORKSHOP 12.4.17 RECOVER Edmonton s Urban Wellness Plan Mapping Workshop December 4, 2017 In July of 2017, City Council directed administration to develop RECOVER, Edmonton s Urban Wellness

More information

CHANGES IN THE STRUCTURE OF POPULATION AND HOUSING FUND BETWEEN TWO CENSUSES 1 - South Muntenia Development Region

CHANGES IN THE STRUCTURE OF POPULATION AND HOUSING FUND BETWEEN TWO CENSUSES 1 - South Muntenia Development Region TERITORIAL STATISTICS CHANGES IN THE STRUCTURE OF POPULATION AND HOUSING FUND BETWEEN TWO CENSUSES 1 - South Muntenia Development Region PhD Senior Lecturer Nicu MARCU In the last decade, a series of structural

More information

OBEUS. (Object-Based Environment for Urban Simulation) Shareware Version. Itzhak Benenson 1,2, Slava Birfur 1, Vlad Kharbash 1

OBEUS. (Object-Based Environment for Urban Simulation) Shareware Version. Itzhak Benenson 1,2, Slava Birfur 1, Vlad Kharbash 1 OBEUS (Object-Based Environment for Urban Simulation) Shareware Version Yaffo model is based on partition of the area into Voronoi polygons, which correspond to real-world houses; neighborhood relationship

More information

Introducing GIS analysis

Introducing GIS analysis 1 Introducing GIS analysis GIS analysis lets you see patterns and relationships in your geographic data. The results of your analysis will give you insight into a place, help you focus your actions, or

More information

ENV208/ENV508 Applied GIS. Week 1: What is GIS?

ENV208/ENV508 Applied GIS. Week 1: What is GIS? ENV208/ENV508 Applied GIS Week 1: What is GIS? 1 WHAT IS GIS? A GIS integrates hardware, software, and data for capturing, managing, analyzing, and displaying all forms of geographically referenced information.

More information

Procedural City Modeling

Procedural City Modeling Procedural City Modeling Thomas Lechner¹ Ben Watson¹ Uri Wilensky¹ Martin Felsen² Northwestern University¹ Illinois Institute of Technology² Abstract We propose a method to procedurally generate a familiar

More information

PROPOSED MST RESEARCH PROGRAM

PROPOSED MST RESEARCH PROGRAM UNWTO Statistics and Tourism Satellite Account Programme COMMITTEE ON STATISTICS AND THE TOURISM SATELLITE ACCOUNT Seventeenth meeting UNWTO Headquarters, Madrid, Spain 24-25 January 2017 PROPOSED MST

More information

Oakland County Parks and Recreation GIS Implementation Plan

Oakland County Parks and Recreation GIS Implementation Plan Oakland County Parks and Recreation GIS Implementation Plan TABLE OF CONTENTS 1.0 Introduction... 3 1.1 What is GIS? 1.2 Purpose 1.3 Background 2.0 Software... 4 2.1 ArcGIS Desktop 2.2 ArcGIS Explorer

More information

Environmental Analysis, Chapter 4 Consequences, and Mitigation

Environmental Analysis, Chapter 4 Consequences, and Mitigation Environmental Analysis, Chapter 4 4.17 Environmental Justice This section summarizes the potential impacts described in Chapter 3, Transportation Impacts and Mitigation, and other sections of Chapter 4,

More information

P. O. Box 5043, 2600 CR Delft, the Netherlands, Building, Pokfulam Road, Hong Kong,

P. O. Box 5043, 2600 CR Delft, the Netherlands,   Building, Pokfulam Road, Hong Kong, THE THEORY OF THE NATURAL URBAN TRANSFORMATION PROCESS: THE RELATIONSHIP BETWEEN STREET NETWORK CONFIGURATION, DENSITY AND DEGREE OF FUNCTION MIXTURE OF BUILT ENVIRONMENTS Akkelies van Nes 1, Yu Ye 2 1

More information

New Partners for Smart Growth: Building Safe, Healthy, and Livable Communities Mayor Jay Williams, Youngstown OH

New Partners for Smart Growth: Building Safe, Healthy, and Livable Communities Mayor Jay Williams, Youngstown OH New Partners for Smart Growth: Building Safe, Healthy, and Livable Communities Mayor Jay Williams, Youngstown OH The City of Youngstown Youngstown State University Urban Strategies Inc. Youngstown needed

More information

Write a report (6-7 pages, double space) on some examples of Internet Applications. You can choose only ONE of the following application areas:

Write a report (6-7 pages, double space) on some examples of Internet Applications. You can choose only ONE of the following application areas: UPR 6905 Internet GIS Homework 1 Yong Hong Guo September 9, 2008 Write a report (6-7 pages, double space) on some examples of Internet Applications. You can choose only ONE of the following application

More information

DATA COLLECTION & SAMPLING

DATA COLLECTION & SAMPLING DATA COLLECTION & SAMPLING The Local Landscape Spring 2015 Preparing for data collection Increase background knowledge Research Plan Field Recon Test field methods Field reconnaissance Visit geographic

More information

A Framework for Dynamic O-D Matrices for Multimodal transportation: an Agent-Based Model approach

A Framework for Dynamic O-D Matrices for Multimodal transportation: an Agent-Based Model approach A Framework for Dynamic O-D Matrices for Multimodal transportation: an Agent-Based Model approach Nuno Monteiro - FEP, Portugal - 120414020@fep.up.pt Rosaldo Rossetti - FEUP, Portugal - rossetti@fe.up.pt

More information

Urban Transportation Planning Prof. Dr.V.Thamizh Arasan Department of Civil Engineering Indian Institute of Technology Madras

Urban Transportation Planning Prof. Dr.V.Thamizh Arasan Department of Civil Engineering Indian Institute of Technology Madras Urban Transportation Planning Prof. Dr.V.Thamizh Arasan Department of Civil Engineering Indian Institute of Technology Madras Module #03 Lecture #12 Trip Generation Analysis Contd. This is lecture 12 on

More information

City of Jerez Urban Core Densification proposal; An Agent Based Spatio-temporal model

City of Jerez Urban Core Densification proposal; An Agent Based Spatio-temporal model Modelling urban population allocation City of Jerez Urban Core Densification proposal; An Agent Based Spatio-temporal model Elke Sauter Julia Úbeda Who we are & why we are here Masters programme: Geographical

More information

The Building Blocks of the City: Points, Lines and Polygons

The Building Blocks of the City: Points, Lines and Polygons The Building Blocks of the City: Points, Lines and Polygons Andrew Crooks Centre For Advanced Spatial Analysis andrew.crooks@ucl.ac.uk www.gisagents.blogspot.com Introduction Why use ABM for Residential

More information

Analysis of travel-to-work patterns and the identification and classification of REDZs

Analysis of travel-to-work patterns and the identification and classification of REDZs Analysis of travel-to-work patterns and the identification and classification of REDZs Dr David Meredith, Teagasc, Spatial Analysis Unit, Rural Economy Development Programme, Ashtown, Dublin 15. david.meredith@teagasc.ie

More information

Key elements An open-ended questionnaire can be used (see Quinn 2001).

Key elements An open-ended questionnaire can be used (see Quinn 2001). Tool Name: Risk Indexing What is it? Risk indexing is a systematic approach to identify, classify, and order sources of risk and to examine differences in risk perception. What can it be used assessing

More information

Assessing Social Vulnerability to Biophysical Hazards. Dr. Jasmine Waddell

Assessing Social Vulnerability to Biophysical Hazards. Dr. Jasmine Waddell Assessing Social Vulnerability to Biophysical Hazards Dr. Jasmine Waddell About the Project Built on a need to understand: The pre-disposition of the populations in the SE to adverse impacts from disaster

More information

A GUI FOR EVOLVE ZAMS

A GUI FOR EVOLVE ZAMS A GUI FOR EVOLVE ZAMS D. R. Schlegel Computer Science Department Here the early work on a new user interface for the Evolve ZAMS stellar evolution code is presented. The initial goal of this project is

More information

Urban White Paper on Tokyo Metropolis 2002

Urban White Paper on Tokyo Metropolis 2002 Urban White Paper on Tokyo Metropolis 2002 By Bureau of City Planning Tokyo Metropolitan Government Part I. "Progress in IT and City Building" Effects of computer networks on cities and cities' response

More information

Salzburg Residential Mobility Model

Salzburg Residential Mobility Model 126 Salzburg Residential Mobility Model Laura Knoth, Azmat Arif and Johanna Schmitt University of Salzburg/Austria Laura.Knoth@stud.sbg.ac.at Full paper double blind review Abstract In order to study the

More information

Guide to Hydrologic Information on the Web

Guide to Hydrologic Information on the Web NOAA s National Weather Service Guide to Hydrologic Information on the Web Colorado River at Lees Ferry Photo: courtesy Tim Helble Your gateway to web resources provided through NOAA s Advanced Hydrologic

More information

Google Maps and Beyond

Google Maps and Beyond Google Maps and Beyond Aaron Paul First American Title apaul@firstam.com 2015 APRA Symposium Association of Professional Reserve Analysts May 2 nd, 2015 Google Maps and Beyond - Overview Business case

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, Communications & Digital Media Fall 2002 Lecture 6: Tools for Transforming Data to Action Lorlene Hoyt October

More information

Cognitive Engineering for Geographic Information Science

Cognitive Engineering for Geographic Information Science Cognitive Engineering for Geographic Information Science Martin Raubal Department of Geography, UCSB raubal@geog.ucsb.edu 21 Jan 2009 ThinkSpatial, UCSB 1 GIScience Motivation systematic study of all aspects

More information

Urban Geography. Unit 7 - Settlement and Urbanization

Urban Geography. Unit 7 - Settlement and Urbanization Urban Geography Unit 7 - Settlement and Urbanization Unit 7 is a logical extension of the population theme. In their analysis of the distribution of people on the earth s surface, students became aware

More information

Shaping Your Neighbourhood

Shaping Your Neighbourhood Shaping Your Neighbourhood Building a Core Sustainable Neighbourhood Action Plan Nov. 25 & 26, 2006 Welcome! Peter Russell Planner, Holland Barrs Planning Group Inc. Role in this project: Work with the

More information

Frequently Asked Questions

Frequently Asked Questions What is the Regional Transit Engagement Series? As one of the fastest growing regions in the country, there is recognition that long-term transit planning efforts should be accelerated if we are to remain

More information

Compact guides GISCO. Geographic information system of the Commission

Compact guides GISCO. Geographic information system of the Commission Compact guides GISCO Geographic information system of the Commission What is GISCO? GISCO, the Geographic Information System of the COmmission, is a permanent service of Eurostat that fulfils the requirements

More information

Geospatial natural disaster management

Geospatial natural disaster management Geospatial natural disaster management disasters happen. are you ready? Natural disasters can strike almost anywhere at any time, with no regard to a municipality s financial resources. These extraordinarily

More information

FSUTMS Framework for Integrating Land Use Modeling

FSUTMS Framework for Integrating Land Use Modeling FSUTMS Framework for Integrating Land Use Modeling presented to MTF Data Committee presented by Wade L. White, Whitehouse Group Walter Anderson, Whitehouse Group March 6, 2012 Agenda Background Previous

More information

HORIZON 2030: Land Use & Transportation November 2005

HORIZON 2030: Land Use & Transportation November 2005 PROJECTS Land Use An important component of the Horizon transportation planning process involved reviewing the area s comprehensive land use plans to ensure consistency between them and the longrange transportation

More information

Urban development. The compact city concept was seen as an approach that could end the evil of urban sprawl

Urban development. The compact city concept was seen as an approach that could end the evil of urban sprawl The compact city Outline 1. The Compact City i. Concept ii. Advantages and the paradox of the compact city iii. Key factor travel behavior 2. Urban sustainability i. Definition ii. Evaluating the compact

More information

Give 4 advantages of using ICT in the collection of data. Give. Give 4 disadvantages in the use of ICT in the collection of data

Give 4 advantages of using ICT in the collection of data. Give. Give 4 disadvantages in the use of ICT in the collection of data Give 4 advantages of using ICT in the collection of data can use a handheld GPS to get accurate location information which can be used to show data linked to specific locations within a GIS can collect

More information

Regional Performance Measures

Regional Performance Measures G Performance Measures Regional Performance Measures Introduction This appendix highlights the performance of the MTP/SCS for 2035. The performance of the Revenue Constrained network also is compared to

More information

Regional Performance Measures

Regional Performance Measures G Performance Measures Regional Performance Measures Introduction This appendix highlights the performance of the MTP/SCS for 2035. The performance of the Revenue Constrained network also is compared to

More information

Chem 1 Kinetics. Objectives. Concepts

Chem 1 Kinetics. Objectives. Concepts Chem 1 Kinetics Objectives 1. Learn some basic ideas in chemical kinetics. 2. Understand how the computer visualizations can be used to benefit the learning process. 3. Understand how the computer models

More information

UTAH S STATEWIDE GEOGRAPHIC INFORMATION DATABASE

UTAH S STATEWIDE GEOGRAPHIC INFORMATION DATABASE UTAH S STATEWIDE GEOGRAPHIC INFORMATION DATABASE Data Information and Knowledge Management NASCIO Awards 2009 STATE GEOGRAPHIC INFORMATION DATABASE B. EXECUTIVE SUMMARY Utah has developed one of the most

More information

Urban Spatial Scenario Design Modelling (USSDM) in Dar es Salaam: Background Information

Urban Spatial Scenario Design Modelling (USSDM) in Dar es Salaam: Background Information Urban Spatial Scenario Design Modelling (USSDM) in Dar es Salaam: Background Information Modelling urban settlement dynamics in Dar es Salaam Revision: 2 (July 2013) Prepared by: Katja Buchta TUM team

More information

Council Workshop on Neighbourhoods Thursday, October 4 th, :00 to 4:00 p.m. Burlington Performing Arts Centre

Council Workshop on Neighbourhoods Thursday, October 4 th, :00 to 4:00 p.m. Burlington Performing Arts Centre Council Workshop on Neighbourhoods Thursday, October 4 th, 2012 1:00 to 4:00 p.m. Burlington Performing Arts Centre Agenda Introductions Warm-Up Exercise Presentation Exercise Neighbourhood Planning Break

More information

Key Issue 1: Where Are Services Distributed?

Key Issue 1: Where Are Services Distributed? Key Issue 1: Where Are Services Distributed? Pages 430-433 *See the Introduction on page 430 to answer questions #1-4 1. Define service: 2. What sector of the economy do services fall under? 3. Define

More information

A CLOSER LOOK AT SOCIAL SECURITY NUMBERS

A CLOSER LOOK AT SOCIAL SECURITY NUMBERS A CLOSER LOOK AT SOCIAL SECURITY NUMBERS Evolution & Applicability in Background Screening BACKGROUND Despite the growing trend to restrict the use of an individual s Social Security number (SSN) in the

More information

Recovery Renewal Rebuilding

Recovery Renewal Rebuilding Recovery Renewal Rebuilding Federal Reserve Foreclosure Series Washington, D.C. October 20, 2008 Mayor Jay Williams, Youngstown OH The City of Youngstown Youngstown State University Urban Strategies Inc.

More information

Economic consequences of floods: impacts in urban areas

Economic consequences of floods: impacts in urban areas Economic consequences of floods: impacts in urban areas SWITCH Paris Conference Paris, 24 th 26 th January 2011 Economic consequences of floods: impacts in urban areas Institutions: Authors Vanessa Cançado

More information

The Role of Urban Planning and Local SDI Development in a Spatially Enabled Government. Faisal Qureishi

The Role of Urban Planning and Local SDI Development in a Spatially Enabled Government. Faisal Qureishi The Role of Urban Planning and Local SDI Development in a Spatially Enabled Government Faisal Qureishi 1 Introduction A continuous increase in world population combined with limited resources has lead

More information

Foreword. Vision and Strategy

Foreword. Vision and Strategy GREATER MANCHESTER SPATIAL FRAMEWORK Friends of Walkden Station Consultation Response January 2017 Foreword Friends of Walkden Station are a group of dedicated volunteers seeking to raise the status and

More information

An online data and consulting resource of THE UNIVERSITY OF TOLEDO THE JACK FORD URBAN AFFAIRS CENTER

An online data and consulting resource of THE UNIVERSITY OF TOLEDO THE JACK FORD URBAN AFFAIRS CENTER An online data and consulting resource of THE JACK FORD URBAN AFFAIRS CENTER THE CENTER FOR GEOGRAPHIC INFORMATION SCIENCE AND APPLIED GEOGRAPHICS DEPARTMENT OF GEOGRAPHY AND PLANNING THE UNIVERSITY OF

More information

geographic patterns and processes are captured and represented using computer technologies

geographic patterns and processes are captured and represented using computer technologies Proposed Certificate in Geographic Information Science Department of Geographical and Sustainability Sciences Submitted: November 9, 2016 Geographic information systems (GIS) capture the complex spatial

More information

The Use of Geographic Information Systems (GIS) by Local Governments. Giving municipal decision-makers the power to make better decisions

The Use of Geographic Information Systems (GIS) by Local Governments. Giving municipal decision-makers the power to make better decisions The Use of Geographic Information Systems (GIS) by Local Governments Giving municipal decision-makers the power to make better decisions Case Study: Examples of GIS Usage by Local Governments in North

More information

Mystery Images from Space Educator s Guide

Mystery Images from Space Educator s Guide Mystery Images from Space Educator s Guide Summary: Students learn and reinforce core concepts in Earth science and achieve learning goals in other fields as well by exploring photographs taken by astronauts.

More information

SPACE-TIME ACCESSIBILITY MEASURES FOR EVALUATING MOBILITY-RELATED SOCIAL EXCLUSION OF THE ELDERLY

SPACE-TIME ACCESSIBILITY MEASURES FOR EVALUATING MOBILITY-RELATED SOCIAL EXCLUSION OF THE ELDERLY SPACE-TIME ACCESSIBILITY MEASURES FOR EVALUATING MOBILITY-RELATED SOCIAL EXCLUSION OF THE ELDERLY Izumiyama, Hiroshi Institute of Environmental Studies, The University of Tokyo, Tokyo, Japan Email: izumiyama@ut.t.u-tokyo.ac.jp

More information

Social Studies Grade 2 - Building a Society

Social Studies Grade 2 - Building a Society Social Studies Grade 2 - Building a Society Description The second grade curriculum provides students with a broad view of the political units around them, specifically their town, state, and country.

More information

The GPS System. Brief history of GPS.

The GPS System. Brief history of GPS. The GPS System. Some time ago, driven partly by commercial interest and partly by curiosity, I decided to do some research into how the GPS system actually works. To understand it at grass roots level

More information

Joint-accessibility Design (JAD) Thomas Straatemeier

Joint-accessibility Design (JAD) Thomas Straatemeier Joint-accessibility Design (JAD) Thomas Straatemeier To cite this report: Thomas Straatemeier (2012) Joint-accessibility Design (JAD), in Angela Hull, Cecília Silva and Luca Bertolini (Eds.) Accessibility

More information

City of Hermosa Beach Beach Access and Parking Study. Submitted by. 600 Wilshire Blvd., Suite 1050 Los Angeles, CA

City of Hermosa Beach Beach Access and Parking Study. Submitted by. 600 Wilshire Blvd., Suite 1050 Los Angeles, CA City of Hermosa Beach Beach Access and Parking Study Submitted by 600 Wilshire Blvd., Suite 1050 Los Angeles, CA 90017 213.261.3050 January 2015 TABLE OF CONTENTS Introduction to the Beach Access and Parking

More information

A/Prof. Mark Zuidgeest ACCESSIBILITY EFFECTS OF RELOCATION AND HOUSING PROJECT FOR THE URBAN POOR IN AHMEDABAD, INDIA

A/Prof. Mark Zuidgeest ACCESSIBILITY EFFECTS OF RELOCATION AND HOUSING PROJECT FOR THE URBAN POOR IN AHMEDABAD, INDIA A/Prof. Mark Zuidgeest ACCESSIBILITY EFFECTS OF RELOCATION AND HOUSING PROJECT FOR THE URBAN POOR IN AHMEDABAD, INDIA South African Cities Network/University of Pretoria, 09 April 2018 MOBILITY Ability

More information

ODOR FOOTPRINTS AND THE ODOR FOOTPRINT TOOL

ODOR FOOTPRINTS AND THE ODOR FOOTPRINT TOOL ODOR FOOTPRINTS AND THE ODOR FOOTPRINT TOOL An Overview Introduction: As animal production has changed and the facilities in which livestock and poultry are raised have grown in size, neighbors of animal

More information

Sample assessment task. Task details. Content description. Year level 7

Sample assessment task. Task details. Content description. Year level 7 Sample assessment task Year level 7 Learning area Subject Title of task Task details Description of task Type of assessment Purpose of assessment Assessment strategy Evidence to be collected Suggested

More information

The Model Research of Urban Land Planning and Traffic Integration. Lang Wang

The Model Research of Urban Land Planning and Traffic Integration. Lang Wang International Conference on Materials, Environmental and Biological Engineering (MEBE 2015) The Model Research of Urban Land Planning and Traffic Integration Lang Wang Zhejiang Gongshang University, Hangzhou

More information

Data Collection: What Is Sampling?

Data Collection: What Is Sampling? Project Planner Data Collection: What Is Sampling? Title: Data Collection: What Is Sampling? Originally Published: 2017 Publishing Company: SAGE Publications, Inc. City: London, United Kingdom ISBN: 9781526408563

More information

Problems In Large Cities

Problems In Large Cities Chapter 11 Problems In Large Cities Create a list of at least 10 problems that exist in large cities. Consider problems that you have read about in this and other chapters and/or experienced yourself.

More information

Measuring connectivity in London

Measuring connectivity in London Measuring connectivity in London OECD, Paris 30 th October 2017 Simon Cooper TfL City Planning 1 Overview TfL Connectivity measures in TfL PTALs Travel time mapping Catchment analysis WebCAT Current and

More information

Chapter 2: Studying Geography, Economics, and Citizenship

Chapter 2: Studying Geography, Economics, and Citizenship Chapter 2: Studying Geography, Economics, and Citizenship Lesson 2.1 Studying Geography I. Displaying the Earth s Surface A. A globe of the Earth best shows the sizes of continents and the shapes of landmasses

More information

CLAREMONT MASTER PLAN 2017: LAND USE COMMUNITY INPUT

CLAREMONT MASTER PLAN 2017: LAND USE COMMUNITY INPUT Planning and Development Department 14 North Street Claremont, New Hampshire 03743 Ph: (603) 542-7008 Fax: (603) 542-7033 Email: cityplanner@claremontnh.com www.claremontnh.com CLAREMONT MASTER PLAN 2017:

More information

Typical information required from the data collection can be grouped into four categories, enumerated as below.

Typical information required from the data collection can be grouped into four categories, enumerated as below. Chapter 6 Data Collection 6.1 Overview The four-stage modeling, an important tool for forecasting future demand and performance of a transportation system, was developed for evaluating large-scale infrastructure

More information

National Spatial Development Perspective (NSDP) Policy Coordination and Advisory Service

National Spatial Development Perspective (NSDP) Policy Coordination and Advisory Service National Spatial Development Perspective (NSDP) Policy Coordination and Advisory Service 1 BACKGROUND The advances made in the First Decade by far supersede the weaknesses. Yet, if all indicators were

More information

GEOGRAPHIC INFORMATION SYSTEMS Session 8

GEOGRAPHIC INFORMATION SYSTEMS Session 8 GEOGRAPHIC INFORMATION SYSTEMS Session 8 Introduction Geography underpins all activities associated with a census Census geography is essential to plan and manage fieldwork as well as to report results

More information

Regional Snapshot Series: Transportation and Transit. Commuting and Places of Work in the Fraser Valley Regional District

Regional Snapshot Series: Transportation and Transit. Commuting and Places of Work in the Fraser Valley Regional District Regional Snapshot Series: Transportation and Transit Commuting and Places of Work in the Fraser Valley Regional District TABLE OF CONTENTS Complete Communities Daily Trips Live/Work Ratio Commuting Local

More information

The purpose of this report is to recommend a Geographic Information System (GIS) Strategy for the Town of Richmond Hill.

The purpose of this report is to recommend a Geographic Information System (GIS) Strategy for the Town of Richmond Hill. Staff Report for Committee of the Whole Meeting Department: Division: Subject: Office of the Chief Administrative Officer Strategic Initiatives SRCAO.18.12 GIS Strategy Purpose: The purpose of this report

More information

Traffic accidents and the road network in SAS/GIS

Traffic accidents and the road network in SAS/GIS Traffic accidents and the road network in SAS/GIS Frank Poppe SWOV Institute for Road Safety Research, the Netherlands Introduction The first figure shows a screen snapshot of SAS/GIS with part of the

More information

Implementing the Sustainable Development Goals: The Role of Geospatial Technology and Innovation

Implementing the Sustainable Development Goals: The Role of Geospatial Technology and Innovation Fifth High Level Forum on UN Global Geospatial Information Management Implementing the Sustainable Development Goals: The Role of Geospatial Technology and Innovation 28-30 November 2017 Sheraton Maria

More information

Data Collection. Lecture Notes in Transportation Systems Engineering. Prof. Tom V. Mathew. 1 Overview 1

Data Collection. Lecture Notes in Transportation Systems Engineering. Prof. Tom V. Mathew. 1 Overview 1 Data Collection Lecture Notes in Transportation Systems Engineering Prof. Tom V. Mathew Contents 1 Overview 1 2 Survey design 2 2.1 Information needed................................. 2 2.2 Study area.....................................

More information

CHANGES IN ETHNIC GEOGRAPHY IN WATERBURY AS A RESULT OF NATURAL DISASTERS AND URBAN RENEWAL

CHANGES IN ETHNIC GEOGRAPHY IN WATERBURY AS A RESULT OF NATURAL DISASTERS AND URBAN RENEWAL G-1302: GIS and Environmental Modeling Final Project Report December 4, 2012 Student: David Perrier Instructor: Tatiana Serebriakova, Ph.D. CHANGES IN ETHNIC GEOGRAPHY IN WATERBURY AS A RESULT OF NATURAL

More information

Thank you for your interest in the Support Resistance Strength Analyzer!

Thank you for your interest in the Support Resistance Strength Analyzer! This user manual refer to FXCM s Trading Station version of the indicator Support Resistance Strength Analyzer Thank you for your interest in the Support Resistance Strength Analyzer! This unique indicator

More information

BROOKINGS May

BROOKINGS May Appendix 1. Technical Methodology This study combines detailed data on transit systems, demographics, and employment to determine the accessibility of jobs via transit within and across the country s 100

More information

Advancing Urban Models in the 21 st Century. Jeff Tayman Lecturer, Dept. of Economics University of California, San Diego

Advancing Urban Models in the 21 st Century. Jeff Tayman Lecturer, Dept. of Economics University of California, San Diego Advancing Urban Models in the 21 st Century Jeff Tayman Lecturer, Dept. of Economics University of California, San Diego 1 Regional Decision System Better tools Better data Better access Better Decisions

More information

Middle School. Assessment Focus: Strand 2 Developing a Geographic Perspective. Geography Content Standard Location, Movement, and Connection

Middle School. Assessment Focus: Strand 2 Developing a Geographic Perspective. Geography Content Standard Location, Movement, and Connection MS05 Michigan Geographic Alliance(1996) Geography Sample Item Middle School Assessment Focus: Strand 2 Developing a Geographic Perspective Geography Content Standard Location, Movement, and Connection

More information

Neighborhood Locations and Amenities

Neighborhood Locations and Amenities University of Maryland School of Architecture, Planning and Preservation Fall, 2014 Neighborhood Locations and Amenities Authors: Cole Greene Jacob Johnson Maha Tariq Under the Supervision of: Dr. Chao

More information

Understanding China Census Data with GIS By Shuming Bao and Susan Haynie China Data Center, University of Michigan

Understanding China Census Data with GIS By Shuming Bao and Susan Haynie China Data Center, University of Michigan Understanding China Census Data with GIS By Shuming Bao and Susan Haynie China Data Center, University of Michigan The Census data for China provides comprehensive demographic and business information

More information

Digitalization in Shipping

Digitalization in Shipping Digitalization in Shipping Tom Sundell VP Products, NAPA www.napa.fi NAPA Solutions for Safe and Efficient Ship Operations NAPA A very short introduction to NAPA NAPA for safety and efficiency of the industry

More information

FCE 3900 EDUCATIONAL RESEARCH LECTURE 8 P O P U L A T I O N A N D S A M P L I N G T E C H N I Q U E

FCE 3900 EDUCATIONAL RESEARCH LECTURE 8 P O P U L A T I O N A N D S A M P L I N G T E C H N I Q U E FCE 3900 EDUCATIONAL RESEARCH LECTURE 8 P O P U L A T I O N A N D S A M P L I N G T E C H N I Q U E OBJECTIVE COURSE Understand the concept of population and sampling in the research. Identify the type

More information

GIS for the Beginner on a Budget

GIS for the Beginner on a Budget GIS for the Beginner on a Budget Andre C. Bally, RLA, GIS Coordinator, Harris County Public Infrastructure Department Engineering Division This presentation, GIS for Beginners on a Budget. will briefly

More information

Chapter 1 Introduction

Chapter 1 Introduction 1 Chapter 1 Introduction Figure 1.1: Westlake Plaza A warm sunny day on a downtown street and plaza, pedestrians pass on the sidewalks, people sit on benches and steps, enjoying a cup of coffee, shoppers

More information

East Bay BRT. Planning for Bus Rapid Transit

East Bay BRT. Planning for Bus Rapid Transit East Bay BRT Planning for Bus Rapid Transit Regional Vision Draper Prison The Bottleneck is a State-Level issue, Salt Lake County 2050 Population: 1.5M Draper Prison hopefully with some State-Level funding!

More information

Enhance Security, Safety and Efficiency With Geospatial Visualization

Enhance Security, Safety and Efficiency With Geospatial Visualization Areas within 10 minutes of an exit are emphasized on this map, to give an indication of how accessible neighborhoods are by highway. The colors represent 1, 3, 5 and 10 minute increments from the exits.

More information

Merging statistics and geospatial information

Merging statistics and geospatial information Merging statistics and geospatial information Demography / Commuting / Spatial planning / Registers Mirosław Migacz Chief GIS Specialist Janusz Dygaszewicz Director Central Statistical Office of Poland

More information

EXPLORING THE FUTURE WATER INFRASTRUCTURE OF CITIES

EXPLORING THE FUTURE WATER INFRASTRUCTURE OF CITIES EXPLORING THE FUTURE WATER INFRASTRUCTURE OF CITIES Eng. Arlex Sanchez Torres PhD. R.K. Price PhD. Z. Vojinovic Jan 24 th - 2011 The future of urban water: Solutions for livable and resilient cities SWITCH

More information

GIS and Governing Anchorage. GIS Critical for Efficient, Transparent Government How is GIS Program Doing Where can GIS Program Take us

GIS and Governing Anchorage. GIS Critical for Efficient, Transparent Government How is GIS Program Doing Where can GIS Program Take us GIS and Governing Anchorage GIS Critical for Efficient, Transparent Government How is GIS Program Doing Where can GIS Program Take us Municipality of Anchorage Office of Economic And Community Development

More information

Brief Glimpse of Agent-Based Modeling

Brief Glimpse of Agent-Based Modeling Brief Glimpse of Agent-Based Modeling Nathaniel Osgood Using Modeling to Prepare for Changing Healthcare Need January 9, 2014 Agent-Based Models Agent-based model characteristics One or more populations

More information

Appendix: the ODD protocol for our ABM model. Overview. Purpose. State variables and scales. Process overview and scheduling

Appendix: the ODD protocol for our ABM model. Overview. Purpose. State variables and scales. Process overview and scheduling Appendix: the ODD protocol for our ABM model Overview As per the ODD Overview, Design concepts, and Details) protocol for the specification of agent-based models [43,44], we offer here the details of our

More information

El Botellón: Modeling the Movement of Crowds in a City

El Botellón: Modeling the Movement of Crowds in a City El Botellón: Modeling the Movement of Crowds in a City Jonathan E. Rowe Rocio Gomez School of Computer Science, University of Birmingham, Birmingham B15 2TT, United Kingdom A simulation of crowd movement

More information

The econ Planning Suite: CPD Maps and the Con Plan in IDIS for Consortia Grantees Session 1

The econ Planning Suite: CPD Maps and the Con Plan in IDIS for Consortia Grantees Session 1 The econ Planning Suite: CPD Maps and the Con Plan in IDIS for Consortia Grantees Session 1 1 Training Objectives Use CPD Maps to analyze, assess, and compare levels of need in your community Use IDIS

More information

Physics E-1ax, Fall 2014 Experiment 3. Experiment 3: Force. 2. Find your center of mass by balancing yourself on two force plates.

Physics E-1ax, Fall 2014 Experiment 3. Experiment 3: Force. 2. Find your center of mass by balancing yourself on two force plates. Learning Goals Experiment 3: Force After you finish this lab, you will be able to: 1. Use Logger Pro to analyze video and calculate position, velocity, and acceleration. 2. Find your center of mass by

More information

Indicator: Proportion of the rural population who live within 2 km of an all-season road

Indicator: Proportion of the rural population who live within 2 km of an all-season road Goal: 9 Build resilient infrastructure, promote inclusive and sustainable industrialization and foster innovation Target: 9.1 Develop quality, reliable, sustainable and resilient infrastructure, including

More information