arxiv: v1 [cs.oh] 16 Nov 2017

Size: px
Start display at page:

Download "arxiv: v1 [cs.oh] 16 Nov 2017"

Transcription

1 (geo)graphs - Complex Networks as a shapefile of nodes and a shapefile of edges for different applications Leonardo B L Santos 1,2,*, Aurelienne A S Jorge 3, Marcio Rossato 4, Jéssica D Santos 2, Onofre A Candido 1, Wilson Seron 5, and Charles N de Santana 6,7,8 arxiv: v1 [cs.oh] 16 Nov Centro Nacional de Monitoramento e Alertas de Desastres Naturais (Cemaden), São José dos Campos, SP, Brazil 2 Programa de Pós Graduação em Computação Aplicada do Instituto Nacional de Pesquisas Espaciais (INPE), São José dos Campos, SP, Brasil 3 Instituto Nacional de Pesquisas Espaciais (INPE), Cachoeira Paulista, SP, Brasil 4 Via Vale Sistemas, Cachoeira Paulista, SP, Brasil 5 Universidade Federal de São Paulo, São José dos Campos, SP, Brasil 6 Instituto Nacional de Ciência e Tecnologia em Estudos Interdisciplinares e Transdisciplinares em Ecologia e Evolução (INCT-INTREE), Universidade Federal da Bahia, Salvador, BA, Brasil 7 Programa de Pós Graduação em Modelagem em Ciências da Terra e do Ambiente, Universidade Estadual de Feira de Santana, Feira, BA, Brasil 8 Departamento de Computação Científica, DataSCOUT - Data Science and Scientific Computing, Salvador, BA, Brasil * leonardo.santos@cemaden.gov.br ABSTRACT Spatial dependency and spatial embedding are basic physical properties of many phenomena modeled by networks. The most indicated computational environment to deal with spatial information is to use Georeferenced Information System (GIS) and Geographical Database Management Systems (GDBMS). Several models have been proposed in this direction, however there is a gap in the literature in generic frameworks for working with Complex Networks in GIS/GDBMS environments. Here we introduce the concept of (geo)graphs: graphs in which the nodes have a known geographical location and the edges have spatial dependence. We present case studies and two open source softwares (GIS4GRAPH and GeoCNet) that indicate how to retrieve networks from GIS data and how to represent networks over GIS data by using (geo)graphs. Introduction The advances in high computing processing and data storage in last decades together with the development of modern statistical physics theory facilitated the arise of Complex Networks approaches to model large scale systems in which it is possible to find relationships among its elements 1 4. This concept has been applied to interdisciplinary studies ranging from Ecology 5, 6, Evolution 7 9, Urban Mobility 10, Epidemiology 11, Computer Sciences 12, Climatic Sciences 13, 14 among others. Spatial dependency and spatial embedding are basic physical properties of many phenomena modeled by networks. The classical approach to deal with spatial information is to use Georeferenced Information System (GIS) and Geographical Database Management Systems (GDBMS) that easily combine different layers of georeferenced data into information retrieval. Several models have been proposed to describe spatial effects in networks 15, 16. However, there is a gap in the literature about generic frameworks for working with Complex Networks in GIS/GDBMS environments. Here we introduce the concept of (geo)graphs: graphs in which the nodes have a known geographical location and the edges have spatial dependence - and (geo)graphs are geographical objects compatible with GIS/GDBMS environments. We also present two open source computational frameworks to facilitate the integration of the (geo)graphs in GIS/GDBMS environments: GIS4GRAPH (G4G), a Web tool written in Python and JavaScript that allows the conversion of a given shapefile to a (geo)graph, for which the only requirements to use it is to have Internet access and a browser; and Geographical Complex Networks (GeoCNet) a desktop application written in Python and C that allows the conversion of a graph to a (geo)graph shapefile. Both, G4G and GeoCNet, have been developed by some of the authors of this paper, and both source codes are free and can be accessed, respectively, in the repositories and

2 The G4G tool From GIS to graphs - the G4G sofware In terms of geospatial data, GIS4Graph is able to deal with both shapefiles and OpenStreetMap (OSM) files as input. When dealing with a shapefile, it must be a set of linestrings representing the network to be analyzed. Such data are then inserted into a database with geographic support - using PostgreSQL as the Database Management System and PostGIS as its spatial extension. The connections identification between network segments is efficiently performed by an indexed spatial query based on a function that verifies intersections between geometric features. When it comes to an OSM file representing a street network, a PostgreSQL extension named pgrouting is employed. In both cases, the result is a connection list between nodes. The first step before any calculation is to build a graph based on the analyzed network. It can be done by adding a node for each geographic feature and edges based on the connection list. The igraph library 17 is used for both graph building and some default metrics calculation. Vertex degree, clustering coefficient, shortest paths and betweenness are some examples of metrics calculated by igraph and incorporated to G4G. G4G interface is built upon OpenLayers, a JavaScript framework to work with interactive maps and geographic elements, allowing applying visualization styles to features individually. The resultant dataset is displayed visually on a map or as a graph. From graphs to GIS - the GeoCNet software In order to convert spatial networks to GIS environment we propose the following workflow: 1. To create a shapefile for the nodes using any GIS software. A point type shapefile for the nodes must be created. The shapefile must have a mandatory column of type integer named id, representing the id s of the nodes. All the characteristics of the polygons/points will be associated to their respective points as attributes, including the geographic locations of the nodes. The resulting nodes shapefile will be used as an input for the GeoCNet software. 2. To create an adjacency matrix (0s and 1s) representing the connections between these nodes. The matrix will be used as an input for the GeoCNet software as well. 3. Then, a line type shapefile representing the edges of the network is given as an output of GeoCNet. The point-typeshapefile and the line-type-shapefile will have topological attributes of nodes and edges respectively. Some Applications Transportation Here we present how (geo)graphs can be used to identify potential main streets used by most of the transports routes in the city of Lorena/SP. The geodata representing the street network of the city of Lorena/SP were acquired through a request on OpenStreetMap Extended API by specifying the bounding box of the city. It delivers an XML response wrapped in an OSM element that includes basically the description of the ways (polylines that represent linear features such as roads) and their relationships (OSM, 2017). More precisely, each line segment between crossroads is a way, and the relationships between ways are indicated by osm source and osm target fields. For the proposed analysis, it is needed to represent every avenue or street as a single node. By using the G4G, we can extract the network from the GIS data and then represent the betweenness centrality index for the streets network on a map. A case study for the city of Lorena/SP is shown in Figure 1. The streets for which the betweenness centrality index are higher are the potential main streets used by most of the transport routes in the city. Mobility - flow We studied the flow of people between each pair of areas (traffic zones) in a city on a typical day using an Origin-Destination survey for the metropolitan region of Rio de Janeiro/RJ 18. By using the GeoCNet, we can represent urban mobility networks on a map. A case study for the metropolitan region of Rio de Janeiro/Brazil is shown in Figure 2. Each node represents a traffic zone. Each pair of nodes is connected if the flow of people between the traffic zones represented by them is greater than a given threshold value. Nodes colors change according to the number of connections of the nodes. And edges colors change according to the total number of people going from one to the other node. In the figure it is shown that many people move between distant traffic zones (red edges between nodes distant from each other) especially if the destination/origin is a very connected traffic zone (a red node). Weather radar - correlation Weather radar is one of the most important equipment for monitoring extreme meteorological events. For this brief case study, a dataset of meteorological time series were obtained by a weather radar (temporal resolution of 10 minutes) 1. 1 sigma.cptec.inpe.br/radar/ 2/5

3 Figure 1. Lorena city s street network on map visualization. A filter was applied to show only the streets with the highest betweenness values with colors employed according to the legend on the bottom right corner. By using the GeoCNet, we can study rainfall temporal correlation networks. A case study for the mountainous region of Rio de Janeiro/Brazil, near the city Nova Friburgo/Brazil, is shown in Figure 3. Each node represents a grid point of a weather radar (as an interpolated field of rainfall). Each pair of nodes is connected if the Pearson correlation between the rainfall time series associated to each node is greater than a given threshold value. In the Figure, red dots represent the nodes and the blue lines represent the edges. So it is possible to visualize a community-like structure in the network, guided by the mountains of the region (see the satellite image). Conclusions and Perspectives In this paper it was introduced the concept of (geo)graphs: graphs in which the nodes have a known geographical location and the edges have spatial dependence. We also presented two open source softwares GIS4GRAPH (G4G) and GeoCNet, two computational frameworks to facilitate the integration of the (geo)graphs in GIS softwares. Datasets about transportation (streets - OSM), urban mobility (flow of people) and meteorological (time series correlation) networks were used as brief case studies. Using (geo)graphs, as a concept, and G4G and GeoCNet, as tools, you are able to insert and manipulate graphs into GIS, the most appropriate computational environment to handle geographical data. Then, you are able to easily representing graphs and their properties on maps, composing with different layers and allowing several spatial analysis. Among the perspectives of this research are the improvement of the web interface for the tool, and more detailed case studies, producing thematic maps for the nodes, edges and properties (topological measurements). References 1. Watts, D. J. & Strogatz, S. H. Collective dynamics of small-world networks. nature 393, 440 (1998). 2. Barabási, A.-L. & Albert, R. Emergence of scaling in random networks. science 286, (1999). 3. Strogatz, S. H. Exploring complex networks. nature 410, 268 (2001). 4. Albert, R. & Barabási, A.-L. Statistical mechanics of complex networks. Rev. modern physics 74, 47 (2002). 5. Sole, R. V. & Montoya, M. Complexity and fragility in ecological networks. Proc. Royal Soc. Lond. B: Biol. Sci. 268, (2001). 3/5

4 Figure 2. Urban mobility network for the metropolitan region of Rio de Janeiro/Brazil. The color of each node is related to its topological degree (number of connections), and the color of each edge is related to its weight index (total number of people going from one to the other node of each pair of nodes). The threshold of flow to connect each pair of nodes was taken in a thousand people. 6. Pascual, M. & Dunne, J. A. Ecological networks: linking structure to dynamics in food webs (Oxford University Press, 2006). 7. Wagner, A. & Fell, D. A. The small world inside large metabolic networks. Proc. Royal Soc. Lond. B: Biol. Sci. 268, (2001). 8. Andrade, R. F. et al. Detecting network communities: An application to phylogenetic analysis. PLoS computational biology 7, e (2011). 9. Wagner, A. Genotype networks shed light on evolutionary constraints. Trends Ecol. & Evol. 26, (2011). 10. Barbosa-Filho, H. et al. Human mobility: Models and applications. arxiv: [physics.soc-ph] (2017). 11. Pastor-Satorras, R. & Vespignani, A. Epidemic spreading in scale-free networks. Phys. review letters 86, 3200 (2001). 12. Barabási, A.-L., Albert, R. & Jeong, H. Scale-free characteristics of random networks: the topology of the world-wide web. Phys. A: statistical mechanics its applications 281, (2000). 13. Donges, J. F., Zou, Y., Marwan, N. & Kurths, J. Complex networks in climate dynamics. The Eur. Phys. Journal-Special Top. 174, (2009). 14. de Santana, C. et al. Graph theory defining non-local dependency of rainfall in northeast brazil. Ecol. Complex. 6, (2009). 4/5

5 Figure 3. Correlation network for the rainfall time series in the mountains region of Rio de Janeiro/Brazil. The satellite image of the region is also represented. 15. Hayashi, Y. A review of recent studies of geographical scale-free networks. Inf. Media Technol. 1, (2006). 16. Barthe lemy, M. Spatial networks. Phys. Reports 499, (2011). 17. Csardi, G. & Nepusz, T. The igraph software package for complex network research. InterJournal Complex Systems, 1695 (2006). URL Santos, L. B. L. et al. Exploring the spatial structure of rio de janeiro s intra-urban mobility complex network. to be submitted (2018). Acknowledgements Research was partially supported by grant / of the Brazilian National Council for Scientific and Technological Development (CNPq) and by the grant 2015/ Sa o Paulo Research Foundation (FAPESP) and DFG-IRTG 1740/2. C.N.S was partially supported by a PDJ Postdoctoral grant / by the Coordination for the Improvement of Higher Education Personnel (CAPES). The authors sincerely thank Dr. Marcos Quiles, Dr. Elbert Macau and Dr. Tristan Pryer for their kind comments during this study. Author contributions statement L.B.L. conceived the concept of (geo)graphs, A.A.S.J., M.R. and J.D.S implemented the main computational tools, A.A.S.J., M.R., J.D.S, O.A.C. and W.S. conducted the experiments, L.B.L. and C.N.S. analyzed the results. All author reviewed the manuscript. 5/5

GIS4Graph: a tool for analyzing (geo)graphs applied to study efficiency in a street network

GIS4Graph: a tool for analyzing (geo)graphs applied to study efficiency in a street network GIS4Graph: a tool for analyzing (geo)graphs applied to study efficiency in a street network Aurelienne A. S. Jorge 1, Márcio Rossato 2, Roberta B. Bacelar 3, Leonardo B. L. Santos 4 1 Instituto Nacional

More information

Instituto de Pesquisas Meteorológicas - IPMet Universidade Estadual Paulista - Unesp

Instituto de Pesquisas Meteorológicas - IPMet Universidade Estadual Paulista - Unesp IPMET WEB GIS APPLICATION FOR SEVERE WEATHER ALERT AND DECISION SUPPORT Jaqueline Murakami Kokitsu Instituto de Pesquisas Meteorológicas - IPMet Universidade Estadual Paulista - Unesp IPMet/Unesp Meteorological

More information

Combining Geographic and Network Analysis: The GoMore Rideshare Network. Kate Lyndegaard

Combining Geographic and Network Analysis: The GoMore Rideshare Network. Kate Lyndegaard Combining Geographic and Network Analysis: The GoMore Rideshare Network Kate Lyndegaard 10.15.2014 Outline 1. Motivation 2. What is network analysis? 3. The project objective 4. The GoMore network 5. The

More information

MEDIUM-SCALE GRAVITY WAVES OBTAINED FROM AIRGLOW ALL-KSY OBSERVATIONS OVER CACHOEIRA PAULISTA

MEDIUM-SCALE GRAVITY WAVES OBTAINED FROM AIRGLOW ALL-KSY OBSERVATIONS OVER CACHOEIRA PAULISTA MEDIUM-SCALE GRAVITY WAVES OBTAINED FROM AIRGLOW ALL-KSY OBSERVATIONS OVER CACHOEIRA PAULISTA Anderson Vestena BILIBIO 1, Cristiano Max WRASSE 1, Cosme Alexandre FIGUEIREDO¹, Hisao TAKAHASHI 1, Igo da

More information

Multi agent Evacuation Simulation Data Model for Disaster Management Context

Multi agent Evacuation Simulation Data Model for Disaster Management Context Multi agent Evacuation Simulation Data Model for Disaster Management Context Mohamed Bakillah, Alexander Zipf, J. Andrés Domínguez, Steve H. L. Liang GI4DM 2012 1 Content Context Requirements for Enhanced

More information

QGIS FLO-2D Integration

QGIS FLO-2D Integration EPiC Series in Engineering Volume 3, 2018, Pages 1575 1583 Engineering HIC 2018. 13th International Conference on Hydroinformatics Karen O Brien, BSc. 1, Noemi Gonzalez-Ramirez, Ph. D. 1 and Fernando Nardi,

More information

INTRODUCTION TO GIS. Dr. Ori Gudes

INTRODUCTION TO GIS. Dr. Ori Gudes INTRODUCTION TO GIS Dr. Ori Gudes Outline of the Presentation What is GIS? What s the rational for using GIS, and how GIS can be used to solve problems? Explore a GIS map and get information about map

More information

Design and implementation of a new meteorology geographic information system

Design and implementation of a new meteorology geographic information system Design and implementation of a new meteorology geographic information system WeiJiang Zheng, Bing. Luo, Zhengguang. Hu, Zhongliang. Lv National Meteorological Center, China Meteorological Administration,

More information

Techniques for Science Teachers: Using GIS in Science Classrooms.

Techniques for Science Teachers: Using GIS in Science Classrooms. Techniques for Science Teachers: Using GIS in Science Classrooms. After ESRI, 2008 GIS A Geographic Information System A collection of computer hardware, software, and geographic data used together for

More information

INTRODUCTION TO GEOGRAPHIC INFORMATION SYSTEM By Reshma H. Patil

INTRODUCTION TO GEOGRAPHIC INFORMATION SYSTEM By Reshma H. Patil INTRODUCTION TO GEOGRAPHIC INFORMATION SYSTEM By Reshma H. Patil ABSTRACT:- The geographical information system (GIS) is Computer system for capturing, storing, querying analyzing, and displaying geospatial

More information

Introduction to GIS I

Introduction to GIS I Introduction to GIS Introduction How to answer geographical questions such as follows: What is the population of a particular city? What are the characteristics of the soils in a particular land parcel?

More information

V1.0. Session: Labelled Maps Verification, entering names into a GIS and Google Maps/Earth. Pier-Giorgio Zaccheddu

V1.0. Session: Labelled Maps Verification, entering names into a GIS and Google Maps/Earth. Pier-Giorgio Zaccheddu Session: Labelled Maps Verification, entering names into a GIS and Google Maps/Earth V1.0 Pier-Giorgio Zaccheddu Federal Agency for Cartography and Geodesy (BKG) Richard-Strauss-Allee 11 60598 Frankfurt

More information

Full Toblerian Spaces: Recovering Tobler s Views on the Representations for Fluxes in Geographical Analysis

Full Toblerian Spaces: Recovering Tobler s Views on the Representations for Fluxes in Geographical Analysis Full Toblerian Spaces: Recovering Tobler s Views on the Representations for Fluxes in Geographical Analysis Marcio Azeredo - MsC Candidate (Applied Computer Science) Advisor: Dr. Antônio Miguel Vieira

More information

Overview of Geospatial Open Source Software which is Robust, Feature Rich and Standards Compliant

Overview of Geospatial Open Source Software which is Robust, Feature Rich and Standards Compliant Overview of Geospatial Open Source Software which is Robust, Feature Rich and Standards Compliant Cameron SHORTER, Australia Key words: Open Source Geospatial Foundation, OSGeo, Open Standards, Open Geospatial

More information

Natural Disaster Monitoring and Alert System

Natural Disaster Monitoring and Alert System SIStema de Monitoramento e Alerta de DEsastres Naturais Natural Disaster Monitoring and Alert System www.dpi.inpe.br/sismaden Version 1.0 Released July/11/2008 Natural Disasters in Brazil Forest fires

More information

COMPLETELY CONTRACTIVE MAPS BETWEEN C -ALGEBRAS

COMPLETELY CONTRACTIVE MAPS BETWEEN C -ALGEBRAS IJMMS 32:8 2002) 507 513 PII. S0161171202111331 http://mms.hindawi.com Hindawi Publishing Corp. COMPLETELY CONTRACTIVE MAPS BETWEEN C -ALGEBRAS W. T. SULAIMAN Received 15 November 2001 We give a simple

More information

Among various open-source GIS programs, QGIS can be the best suitable option which can be used across partners for reasons outlined below.

Among various open-source GIS programs, QGIS can be the best suitable option which can be used across partners for reasons outlined below. Comparison of Geographic Information Systems (GIS) software As of January 2018, WHO has reached an agreement with ESRI (an international supplier of GIS software) for an unlimited use of ArcGIS Desktop

More information

These modules are covered with a brief information and practical in ArcGIS Software and open source software also like QGIS, ILWIS.

These modules are covered with a brief information and practical in ArcGIS Software and open source software also like QGIS, ILWIS. Online GIS Training and training modules covered are: 1. ArcGIS, Analysis, Fundamentals and Implementation 2. ArcGIS Web Data Sharing 3. ArcGIS for Desktop 4. ArcGIS for Server These modules are covered

More information

GIS CONCEPTS ARCGIS METHODS AND. 2 nd Edition, July David M. Theobald, Ph.D. Natural Resource Ecology Laboratory Colorado State University

GIS CONCEPTS ARCGIS METHODS AND. 2 nd Edition, July David M. Theobald, Ph.D. Natural Resource Ecology Laboratory Colorado State University GIS CONCEPTS AND ARCGIS METHODS 2 nd Edition, July 2005 David M. Theobald, Ph.D. Natural Resource Ecology Laboratory Colorado State University Copyright Copyright 2005 by David M. Theobald. All rights

More information

Georelational Vector Data Model

Georelational Vector Data Model Georelational Vector Data Model Contents Georelational Data Model Representation of Simple Features Topology Non-topological Vector Data Data Models for Composite Features Geo-relational Looking at a paper

More information

Lecture 9: Geocoding & Network Analysis

Lecture 9: Geocoding & Network Analysis Massachusetts Institute of Technology - Department of Urban Studies and Planning 11.520: A Workshop on Geographic Information Systems 11.188: Urban Planning and Social Science Laboratory Lecture 9: Geocoding

More information

GEOGRAPHIC INFORMATION SYSTEMS

GEOGRAPHIC INFORMATION SYSTEMS GEOGRAPHIC INFORMATION SYSTEMS 4-H Round-Up Community Transitions Workshop Daniel Hanselka June 14, 2011 Goals of the Workshop Answer the question: What is GIS? Uses of GIS. Some of the Common Terminology

More information

Geometric Algorithms in GIS

Geometric Algorithms in GIS Geometric Algorithms in GIS GIS Visualization Software Dr. M. Gavrilova GIS Software for Visualization ArcView GEO/SQL Digital Atmosphere AutoDesk Visual_Data GeoMedia GeoExpress CAVE? Visualization in

More information

Geography 38/42:376 GIS II. Topic 1: Spatial Data Representation and an Introduction to Geodatabases. The Nature of Geographic Data

Geography 38/42:376 GIS II. Topic 1: Spatial Data Representation and an Introduction to Geodatabases. The Nature of Geographic Data Geography 38/42:376 GIS II Topic 1: Spatial Data Representation and an Introduction to Geodatabases Chapters 3 & 4: Chang (Chapter 4: DeMers) The Nature of Geographic Data Features or phenomena occur as

More information

QGIS COURSE - ROUTE ANALYSIS, FINDING THE SHORT PATH IN QGIS ONLINE TRAINING. GIS Training. Course. .com

QGIS COURSE - ROUTE ANALYSIS, FINDING THE SHORT PATH IN QGIS ONLINE TRAINING. GIS Training. Course. .com Q COURSE - ROUTE ANALYSIS, FINDING THE SHORT PATH IN Q ONLINE TRAINING Training Course.com TYC COURSE GOALS The objective of this course is to initiate the student in route analysis using Q. The training

More information

Móstoles, Spain. Keywords: complex networks, dual graph, line graph, line digraph.

Móstoles, Spain. Keywords: complex networks, dual graph, line graph, line digraph. Int. J. Complex Systems in Science vol. 1(2) (2011), pp. 100 106 Line graphs for directed and undirected networks: An structural and analytical comparison Regino Criado 1, Julio Flores 1, Alejandro García

More information

Discovery and Access of Geospatial Resources using the Geoportal Extension. Marten Hogeweg Geoportal Extension Product Manager

Discovery and Access of Geospatial Resources using the Geoportal Extension. Marten Hogeweg Geoportal Extension Product Manager Discovery and Access of Geospatial Resources using the Geoportal Extension Marten Hogeweg Geoportal Extension Product Manager DISCOVERY AND ACCESS USING THE GEOPORTAL EXTENSION Geospatial Data Is Very

More information

GIS = Geographic Information Systems;

GIS = Geographic Information Systems; What is GIS GIS = Geographic Information Systems; What Information are we talking about? Information about anything that has a place (e.g. locations of features, address of people) on Earth s surface,

More information

Comparative analysis of transport communication networks and q-type statistics

Comparative analysis of transport communication networks and q-type statistics Comparative analysis of transport communication networs and -type statistics B. R. Gadjiev and T. B. Progulova International University for Nature, Society and Man, 9 Universitetsaya Street, 498 Dubna,

More information

Beyond points: How to turn SMW into a complete Geographic Information System

Beyond points: How to turn SMW into a complete Geographic Information System Beyond points: How to turn SMW into a complete Geographic Information System SMWCon 2013, New-York Pierre Racine Contributor to PostGIS Research Professional Center for Forest Research Québec, Canada Objectives

More information

All About Spatial Data. Find it, Manage it, Use it

All About Spatial Data. Find it, Manage it, Use it All About Spatial Data Find it, Manage it, Use it Workshop Outline Define spatial data Spatial data formats Data Sources Metadata Evaluating Spatial Data Data Management Activities: define spatial data,

More information

Learning ArcGIS: Introduction to ArcCatalog 10.1

Learning ArcGIS: Introduction to ArcCatalog 10.1 Learning ArcGIS: Introduction to ArcCatalog 10.1 Estimated Time: 1 Hour Information systems help us to manage what we know by making it easier to organize, access, manipulate, and apply knowledge to the

More information

Welcome to NR502 GIS Applications in Natural Resources. You can take this course for 1 or 2 credits. There is also an option for 3 credits.

Welcome to NR502 GIS Applications in Natural Resources. You can take this course for 1 or 2 credits. There is also an option for 3 credits. Welcome to NR502 GIS Applications in Natural Resources. You can take this course for 1 or 2 credits. There is also an option for 3 credits. The 1st credit consists of a series of readings, demonstration,

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

Stochastic cellular automata model for wildland fire spread dynamics

Stochastic cellular automata model for wildland fire spread dynamics Journal of Physics: Conference Series Stochastic cellular automata model for wildland fire spread dynamics To cite this article: Rodolfo Maduro Almeida and Elbert E N Macau 2011 J. Phys.: Conf. Ser. 285

More information

A Technique for Importing Shapefile to Mobile Device in a Distributed System Environment.

A Technique for Importing Shapefile to Mobile Device in a Distributed System Environment. A Technique for Importing Shapefile to Mobile Device in a Distributed System Environment. 1 Manish Srivastava, 2 Atul Verma, 3 Kanika Gupta 1 Academy of Business Engineering and Sciences,Ghaziabad, 201001,India

More information

ANALYSIS OF THE MICROCLIMATE OF SÃO CRISTÓVÃO AND ITS INFLUENCE IN HEATING SYSTEMS, VENTILATING AND AIR CONDITIONING (HVAC)

ANALYSIS OF THE MICROCLIMATE OF SÃO CRISTÓVÃO AND ITS INFLUENCE IN HEATING SYSTEMS, VENTILATING AND AIR CONDITIONING (HVAC) ANALYSIS OF THE MICROCLIMATE OF SÃO CRISTÓVÃO AND ITS INFLUENCE IN HEATING SYSTEMS, VENTILATING AND AIR CONDITIONING (HVAC) Monteiro, M.F.M., marcelofmm@gmail.com Bernardes, T.L.P, thamires-bernaredes@hotmail.com

More information

PostGIS Cookbook. open source I community experience distilled

PostGIS Cookbook. open source I community experience distilled PostGIS Cookbook Over 80 task-based recipes to store, organize, manipulate, and analyze spatial data in a PostGIS database Paolo Corti Thomas J Kraft Stephen Vincent Mather Bborie Park PUBLISHING open

More information

Development of a server to manage a customised local version of OpenStreetMap in Ireland

Development of a server to manage a customised local version of OpenStreetMap in Ireland Development of a server to manage a customised local version of OpenStreetMap in Ireland BłaŜej Ciepłuch 1, Jianghua Zheng 1, Peter Mooney 1,2, Adam C. Winstanley 1 1 Department of Computer Science, National

More information

Migration Clusters in Brazil: an Analysis of Areas of Origin and Destination Ernesto Friedrich Amaral

Migration Clusters in Brazil: an Analysis of Areas of Origin and Destination Ernesto Friedrich Amaral 1 Migration Clusters in Brazil: an Analysis of Areas of Origin and Destination Ernesto Friedrich Amaral Research question and data The main goal of this research is to analyze whether the pattern of concentration

More information

GIS-based Smart Campus System using 3D Modeling

GIS-based Smart Campus System using 3D Modeling GIS-based Smart Campus System using 3D Modeling Smita Sengupta GISE Advance Research Lab. IIT Bombay, Powai Mumbai 400 076, India smitas@cse.iitb.ac.in Concept of Smart Campus System Overview of IITB Campus

More information

Overview key concepts and terms (based on the textbook Chang 2006 and the practical manual)

Overview key concepts and terms (based on the textbook Chang 2006 and the practical manual) Introduction Geo-information Science (GRS-10306) Overview key concepts and terms (based on the textbook 2006 and the practical manual) Introduction Chapter 1 Geographic information system (GIS) Geographically

More information

An Open Source Tool for the Visualization, Analysis and Reporting of Regional and Statewide Transit Networks

An Open Source Tool for the Visualization, Analysis and Reporting of Regional and Statewide Transit Networks An Open Source Tool for the Visualization, Analysis and Reporting of Regional and Statewide Transit Networks Saeed Ghanbartehrani Department of Industrial and Systems Engineering, Ohio University J. David

More information

CPSC 695. Future of GIS. Marina L. Gavrilova

CPSC 695. Future of GIS. Marina L. Gavrilova CPSC 695 Future of GIS Marina L. Gavrilova The future of GIS Overview What is GIS now How GIS was viewed before Current trends and developments Future directions of research What is GIS? Internet's definition

More information

GEOGRAPHY 350/550 Final Exam Fall 2005 NAME:

GEOGRAPHY 350/550 Final Exam Fall 2005 NAME: 1) A GIS data model using an array of cells to store spatial data is termed: a) Topology b) Vector c) Object d) Raster 2) Metadata a) Usually includes map projection, scale, data types and origin, resolution

More information

Introduction-Overview. Why use a GIS? What can a GIS do? Spatial (coordinate) data model Relational (tabular) data model

Introduction-Overview. Why use a GIS? What can a GIS do? Spatial (coordinate) data model Relational (tabular) data model Introduction-Overview Why use a GIS? What can a GIS do? How does a GIS work? GIS definitions Spatial (coordinate) data model Relational (tabular) data model intro_gis.ppt 1 Why use a GIS? An extension

More information

Innovation. The Push and Pull at ESRI. September Kevin Daugherty Cadastral/Land Records Industry Solutions Manager

Innovation. The Push and Pull at ESRI. September Kevin Daugherty Cadastral/Land Records Industry Solutions Manager Innovation The Push and Pull at ESRI September 2004 Kevin Daugherty Cadastral/Land Records Industry Solutions Manager The Push and The Pull The Push is the information technology that drives research and

More information

CENSUS MAPPING WITH GIS IN NAMIBIA. BY Mrs. Ottilie Mwazi Central Bureau of Statistics Tel: October 2007

CENSUS MAPPING WITH GIS IN NAMIBIA. BY Mrs. Ottilie Mwazi Central Bureau of Statistics   Tel: October 2007 CENSUS MAPPING WITH GIS IN NAMIBIA BY Mrs. Ottilie Mwazi Central Bureau of Statistics E-mail: omwazi@npc.gov.na Tel: + 264 61 283 4060 October 2007 Content of Presentation HISTORICAL BACKGROUND OF CENSUS

More information

17th International Conference on Harmonisation within Atmospheric Dispersion Modelling for Regulatory Purposes 9-12 May 2016, Budapest, Hungary

17th International Conference on Harmonisation within Atmospheric Dispersion Modelling for Regulatory Purposes 9-12 May 2016, Budapest, Hungary 17th International Conference on Harmonisation within Atmospheric Dispersion Modelling for Regulatory Purposes 9-12 May 2016, Budapest, Hungary SIMULATIONS OF TRAFFIC RELATED POLLUTANTS IN A MAIN STREET

More information

Data Aggregation with InfraWorks and ArcGIS for Visualization, Analysis, and Planning

Data Aggregation with InfraWorks and ArcGIS for Visualization, Analysis, and Planning CI125230 Data Aggregation with InfraWorks and ArcGIS for Visualization, Analysis, and Planning Stephen Brockwell Brockwell IT Consulting Inc. Sean Kinahan Brockwell IT Consulting Inc. Learning Objectives

More information

4CitySemantics. GIS-Semantic Tool for Urban Intervention Areas

4CitySemantics. GIS-Semantic Tool for Urban Intervention Areas 4CitySemantics GIS-Semantic Tool for Urban Intervention Areas Nuno MONTENEGRO 1 ; Jorge GOMES 2 ; Paulo URBANO 2 José P. DUARTE 1 1 Faculdade de Arquitectura da Universidade Técnica de Lisboa, Rua Sá Nogueira,

More information

A Natural Disaster Monitoring and Warning System SISMADEN

A Natural Disaster Monitoring and Warning System SISMADEN ABCC Program Workshop Ottawa, September 2010 A Natural Disaster Monitoring and Warning System SISMADEN Dr. Laércio M. Namikawa Eymar S.S. Lopes rincipais Desastres Naturais no Brasil 2000-2007 Natural

More information

GIS for ChEs Introduction to Geographic Information Systems

GIS for ChEs Introduction to Geographic Information Systems GIS for ChEs Introduction to Geographic Information Systems AIChE Webinar John Cirucci 1 GIS for ChEs Introduction to Geographic Information Systems What is GIS? Tools and Methods Applications Examples

More information

STOCHASTIC CELLULAR AUTOMATA MODEL FOR WILDLAND FIRE SPREAD DYNAMICS

STOCHASTIC CELLULAR AUTOMATA MODEL FOR WILDLAND FIRE SPREAD DYNAMICS STOCHASTIC CELLULAR AUTOMATA MODEL FOR WILDLAND FIRE SPREAD DYNAMICS Rodolfo Maduro Almeida 1 Elbert Einstein Nehrer Macau 2 1 Programa de Pós-graduação em Computação Aplicada INPE São José dos Campos

More information

BRAZILIAN'REMOTE SmSING COMKmUTY: HISTORICAL, GEOGRAPHICAL AND ECONOMICAL ASPECTS

BRAZILIAN'REMOTE SmSING COMKmUTY: HISTORICAL, GEOGRAPHICAL AND ECONOMICAL ASPECTS BRAZILIAN'REMOTE SmSING COMKmUTY: HISTORICAL, GEOGRAPHICAL AND ECONOMICAL ASPECTS Tania Maria Sausen Instituto Nacional de Pesquisas Espaciais Secretaria da Ciencia e Tecnologia Avenida dos Astronautas,

More information

What is GIS and How Can It Help Me?

What is GIS and How Can It Help Me? esri European User Conference Madrid 2011 What is GIS and How Can It Help Me? Jaime Nieves Ignacio Vázquez esri spain «Knowing where things are, and why, is essential to rational decision making.» Jack

More information

GIS Visualization: A Library s Pursuit Towards Creative and Innovative Research

GIS Visualization: A Library s Pursuit Towards Creative and Innovative Research GIS Visualization: A Library s Pursuit Towards Creative and Innovative Research Justin B. Sorensen J. Willard Marriott Library University of Utah justin.sorensen@utah.edu Abstract As emerging technologies

More information

Welcome! Power BI User Group (PUG) Copenhagen

Welcome! Power BI User Group (PUG) Copenhagen Welcome! Power BI User Group (PUG) Copenhagen Making Maps in Power BI Andrea Martorana Tusa BI Specialist Welcome to Making maps in Power BI Who am I? First name: Andrea. Last name: Martorana Tusa. Italian,

More information

Valdosta State University Strategic Research & Analysis

Valdosta State University Strategic Research & Analysis Christopher Neasbitt, Programmer Analyst Associate (cjneasbi@valdosta.edu) Kristina M. Cragg, Ph.D., Assistant to the President for Strategic Research & Analysis (kmcragg@valdosta.edu) Amir Atabekov, Student

More information

GIS CONCEPTS ARCGIS METHODS AND. 3 rd Edition, July David M. Theobald, Ph.D. Warner College of Natural Resources Colorado State University

GIS CONCEPTS ARCGIS METHODS AND. 3 rd Edition, July David M. Theobald, Ph.D. Warner College of Natural Resources Colorado State University GIS CONCEPTS AND ARCGIS METHODS 3 rd Edition, July 2007 David M. Theobald, Ph.D. Warner College of Natural Resources Colorado State University Copyright Copyright 2007 by David M. Theobald. All rights

More information

Encapsulating Urban Traffic Rhythms into Road Networks

Encapsulating Urban Traffic Rhythms into Road Networks Encapsulating Urban Traffic Rhythms into Road Networks Junjie Wang +, Dong Wei +, Kun He, Hang Gong, Pu Wang * School of Traffic and Transportation Engineering, Central South University, Changsha, Hunan,

More information

GIS Based Transit Information System for Metropolitan Cities in India

GIS Based Transit Information System for Metropolitan Cities in India PAPER REFERENCE NO.: PN-250 GIS Based Transit Information System for Metropolitan Cities in India Pal, Sarvjeet. a and Singh, Varun. b a M. Tech. (GIS & Remote Sensing); GIS Cell; Motilal Nehru National

More information

GEOMAGNETICALLY INDUCED CURRENTS IN A BRAZILIAN POWER NETWORK OVER THE SOLAR CYCLES 23 AND 24

GEOMAGNETICALLY INDUCED CURRENTS IN A BRAZILIAN POWER NETWORK OVER THE SOLAR CYCLES 23 AND 24 GEOMAGNETICALLY INDUCED CURRENTS IN A BRAZILIAN POWER NETWORK OVER THE SOLAR CYCLES 23 AND 24 Cleiton Barbosa 1,2 *, Gelvam A. Hartmann 1, Livia Alves 3, Ramon Caraballo 4, Andrés Papa 1, R.Pirjola 5,6

More information

NR402 GIS Applications in Natural Resources

NR402 GIS Applications in Natural Resources NR402 GIS Applications in Natural Resources Lesson 1 Introduction to GIS Eva Strand, University of Idaho Map of the Pacific Northwest from http://www.or.blm.gov/gis/ Welcome to NR402 GIS Applications in

More information

Overview. Everywhere. Over everything.

Overview. Everywhere. Over everything. Cadenza Desktop Cadenza Web Cadenza Mobile Cadenza Overview. Everywhere. Over everything. The ultimate GIS and reporting suite. Provide, analyze and report data efficiently. For desktop, web and mobile.

More information

One platform for desktop, web and mobile

One platform for desktop, web and mobile One platform for desktop, web and mobile Search and filter Get access to all data thematically filter data in context factually and spatially as well as display it dynamically. Export a selection or send

More information

Application of WebGIS and VGI for Community Based Resources Inventory. Jihn-Fa Jan Department of Land Economics National Chengchi University

Application of WebGIS and VGI for Community Based Resources Inventory. Jihn-Fa Jan Department of Land Economics National Chengchi University Application of WebGIS and VGI for Community Based Resources Inventory Jihn-Fa Jan Department of Land Economics National Chengchi University OUTLINE Introduction Methodology Results Conclusions 2 MOTIVATION

More information

What is 511? Need for 511 Services. Development & Deployment of Regional Road and Weather Information Supporting 511 Traveler Services

What is 511? Need for 511 Services. Development & Deployment of Regional Road and Weather Information Supporting 511 Traveler Services Development & Deployment of Regional Road and Weather Information Supporting 511 Traveler Services Leon F. Osborne University of North Dakota Regional Weather Information Center Grand Forks, ND David L.

More information

Road & Railway Network Density Dataset at 1 km over the Belt and Road and Surround Region

Road & Railway Network Density Dataset at 1 km over the Belt and Road and Surround Region Journal of Global Change Data & Discovery. 2017, 1(4): 402-407 DOI:10.3974/geodp.2017.04.03 www.geodoi.ac.cn 2017 GCdataPR Global Change Research Data Publishing & Repository Road & Railway Network Density

More information

International Journal of Remote Sensing, in press, 2006.

International Journal of Remote Sensing, in press, 2006. International Journal of Remote Sensing, in press, 2006. Parameter Selection for Region-Growing Image Segmentation Algorithms using Spatial Autocorrelation G. M. ESPINDOLA, G. CAMARA*, I. A. REIS, L. S.

More information

Open Source Technologies and Remotely Sensed Data in Protecting Elephants. Rosemary Alles Dr. Justine Blanford Penn State World Campus July 2015

Open Source Technologies and Remotely Sensed Data in Protecting Elephants. Rosemary Alles Dr. Justine Blanford Penn State World Campus July 2015 Open Source Technologies and Remotely Sensed Data in Protecting Elephants Rosemary Alles Dr. Justine Blanford Penn State World Campus July 2015 Global Crisis: Poaching & Wildlife Trafficking 100,000 Elephants

More information

Modeling evacuation plan problems

Modeling evacuation plan problems Chapter 7 Modeling evacuation plan problems In Section 3.1 we reviewed the recommendations that the UNESCO presented in [30] to develop volcanic emergency plans. In [18] is presented the state of art of

More information

Spatial Web Technology for Urban Green Society (A Case of Tsukuba City)

Spatial Web Technology for Urban Green Society (A Case of Tsukuba City) The 5th Japan-Korea-China Joint Conference on Geography (Green Society in East Asia: A Geographical Contribution) Spatial Web Technology for Urban Green Society (A Case of Tsukuba City) Ko Ko Lwin and

More information

Free Open Source Software: FOSS Based GIS for Spatial Retrievals of Appropriate Locations for Ocean Energy Utilizing Electric Power Generation Plants

Free Open Source Software: FOSS Based GIS for Spatial Retrievals of Appropriate Locations for Ocean Energy Utilizing Electric Power Generation Plants Free Open Source Software: FOSS Based GIS for Spatial Retrievals of Appropriate Locations for Ocean Energy Utilizing Electric Power Generation Plants Kohei Arai 1 Graduate School of Science and Engineering

More information

Research Article The Impact on Geographic Location Accuracy due to Different Satellite Orbit Ephemerides

Research Article The Impact on Geographic Location Accuracy due to Different Satellite Orbit Ephemerides Mathematical Problems in Engineering Volume 2009, Article ID 856138, 9 pages doi:10.1155/2009/856138 Research Article The Impact on Geographic Location Accuracy due to Different Satellite Orbit Ephemerides

More information

Applied Cartography and Introduction to GIS GEOG 2017 EL. Lecture-2 Chapters 3 and 4

Applied Cartography and Introduction to GIS GEOG 2017 EL. Lecture-2 Chapters 3 and 4 Applied Cartography and Introduction to GIS GEOG 2017 EL Lecture-2 Chapters 3 and 4 Vector Data Modeling To prepare spatial data for computer processing: Use x,y coordinates to represent spatial features

More information

A Prototype of a Web Mapping System Architecture for the Arctic Region

A Prototype of a Web Mapping System Architecture for the Arctic Region A Prototype of a Web Mapping System Architecture for the Arctic Region Han-Fang Tsai 1, Chih-Yuan Huang 2, and Steve Liang 3 GeoSensorWeb Laboratory, Department of Geomatics Engineering, University of

More information

MapOSMatic: city maps for the masses

MapOSMatic: city maps for the masses MapOSMatic: city maps for the masses Thomas Petazzoni Libre Software Meeting July 9th, 2010 Outline 1 The story 2 MapOSMatic 3 Behind the web page 4 Pain points 5 Future work 6 Conclusion Thomas Petazzoni

More information

Numerical evaluation of the upper critical dimension of percolation in scale-free networks

Numerical evaluation of the upper critical dimension of percolation in scale-free networks umerical evaluation of the upper critical dimension of percolation in scale-free networks Zhenhua Wu, 1 Cecilia Lagorio, 2 Lidia A. Braunstein, 1,2 Reuven Cohen, 3 Shlomo Havlin, 3 and H. Eugene Stanley

More information

Geometric Algorithms in GIS

Geometric Algorithms in GIS Geometric Algorithms in GIS GIS Software Dr. M. Gavrilova GIS System What is a GIS system? A system containing spatially referenced data that can be analyzed and converted to new information for a specific

More information

Experiences and Directions in National Portals"

Experiences and Directions in National Portals FIG Seminar on e-land Administration Innsbruck/Austria 2-4 June 2004 "ESRI's Experiences and Directions in National Portals" Kevin Daugherty Cadastral/Land Records Manager ESRI Topic Points Technology

More information

INCT2012 Complex Networks, Long-Range Interactions and Nonextensive Statistics

INCT2012 Complex Networks, Long-Range Interactions and Nonextensive Statistics Complex Networks, Long-Range Interactions and Nonextensive Statistics L. R. da Silva UFRN DFTE Natal Brazil 04/05/12 1 OUR GOALS Growth of an asymptotically scale-free network including metrics. Growth

More information

A NOTE ON WELL-POSED NULL AND FIXED POINT PROBLEMS

A NOTE ON WELL-POSED NULL AND FIXED POINT PROBLEMS A NOTE ON WELL-POSED NULL AND FIXED POINT PROBLEMS SIMEON REICH AND ALEXANDER J. ZASLAVSKI Received 16 October 2004 We establish generic well-posedness of certain null and fixed point problems for ordered

More information

Networks as a tool for Complex systems

Networks as a tool for Complex systems Complex Networs Networ is a structure of N nodes and 2M lins (or M edges) Called also graph in Mathematics Many examples of networs Internet: nodes represent computers lins the connecting cables Social

More information

a system for input, storage, manipulation, and output of geographic information. GIS combines software with hardware,

a system for input, storage, manipulation, and output of geographic information. GIS combines software with hardware, Introduction to GIS Dr. Pranjit Kr. Sarma Assistant Professor Department of Geography Mangaldi College Mobile: +91 94357 04398 What is a GIS a system for input, storage, manipulation, and output of geographic

More information

A National Scale Infrastructure Database and Modelling Environment for the UK

A National Scale Infrastructure Database and Modelling Environment for the UK A National Scale Infrastructure Database and Modelling Environment for the UK Stuart Barr a, David Alderson a, Craig Robson a, Alex Otto b, Jim Hall b, Scott Thacker b, Raghav Pant b. Presenting Author:

More information

Searching for less perturbed elliptical orbits around Europa

Searching for less perturbed elliptical orbits around Europa Journal of Physics: Conference Series PAPER OPEN ACCESS Searching for less perturbed elliptical orbits around Europa To cite this article: J Cardoso dos Santos et al 2015 J. Phys.: Conf. Ser. 641 012011

More information

StreamStats: Delivering Streamflow Information to the Public. By Kernell Ries

StreamStats: Delivering Streamflow Information to the Public. By Kernell Ries StreamStats: Delivering Streamflow Information to the Public By Kernell Ries U.S. Department of the Interior U.S. Geological Survey MD-DE-DC District 410-238-4317 kries@usgs.gov StreamStats Web Application

More information

Department of Computer Science Federal University of São Carlos São Carlos SP, Brazil

Department of Computer Science Federal University of São Carlos São Carlos SP, Brazil Department of Computer Science Federal University of São Carlos São Carlos SP, Brazil 12th International Conference on Enterprise 50 Information Systems ICEIS 2010 / Outline Motivations and Goals Multidimensional

More information

GIS Data Structure: Raster vs. Vector RS & GIS XXIII

GIS Data Structure: Raster vs. Vector RS & GIS XXIII Subject Paper No and Title Module No and Title Module Tag Geology Remote Sensing and GIS GIS Data Structure: Raster vs. Vector RS & GIS XXIII Principal Investigator Co-Principal Investigator Co-Principal

More information

Introduction to IsoMAP Isoscapes Modeling, Analysis, and Prediction

Introduction to IsoMAP Isoscapes Modeling, Analysis, and Prediction Introduction to IsoMAP Isoscapes Modeling, Analysis, and Prediction What is IsoMAP To the user, and online workspace for: Accessing, manipulating, and analyzing, and modeling environmental isotope data

More information

ISO INTERNATIONAL STANDARD. Geographic information Metadata Part 2: Extensions for imagery and gridded data

ISO INTERNATIONAL STANDARD. Geographic information Metadata Part 2: Extensions for imagery and gridded data INTERNATIONAL STANDARD ISO 19115-2 First edition 2009-02-15 Geographic information Metadata Part 2: Extensions for imagery and gridded data Information géographique Métadonnées Partie 2: Extensions pour

More information

arxiv:cond-mat/ v1 [cond-mat.dis-nn] 12 Jun 2004

arxiv:cond-mat/ v1 [cond-mat.dis-nn] 12 Jun 2004 Apollonian networks José S. Andrade Jr. and Hans J. Herrmann Departamento de Física, Universidade Federal do Ceará, 60451-970 Fortaleza, Ceará, Brazil. arxiv:cond-mat/0406295v1 [cond-mat.dis-nn] 12 Jun

More information

Development and operation of GIS exercise materials for undergraduate students

Development and operation of GIS exercise materials for undergraduate students Development and operation of GIS exercise materials for undergraduate students Since around 2000, GIS researchers in Japan have collaborated to provide materials for GIS lecture classes for university

More information

An Implementation of Mobile Sensing for Large-Scale Urban Monitoring

An Implementation of Mobile Sensing for Large-Scale Urban Monitoring An Implementation of Mobile Sensing for Large-Scale Urban Monitoring Teerayut Horanont 1, Ryosuke Shibasaki 1,2 1 Department of Civil Engineering, University of Tokyo, Meguro, Tokyo 153-8505, JAPAN Email:

More information

DESIGNING AND APPLICATION OF WEB-BASED GEOGRAPHICAL INFORMATION SYSTEM FOR VISUAL ASSESSMENT OF LAND LEVELS

DESIGNING AND APPLICATION OF WEB-BASED GEOGRAPHICAL INFORMATION SYSTEM FOR VISUAL ASSESSMENT OF LAND LEVELS DOI: 10.21917/ijsc.2018.0235 DESIGNING AND APPLICATION OF WEB-BASED GEOGRAPHICAL INFORMATION SYSTEM FOR VISUAL ASSESSMENT OF LAND LEVELS Ri NamSong, Choe JongAe and Kim Jonggun Institute of Information

More information

12 Review and Outlook

12 Review and Outlook 12 Review and Outlook 12.1 Review 12.2 Outlook http://www-kdd.isti.cnr.it/nwa Spatial Databases and GIS Karl Neumann, Sarah Tauscher Ifis TU Braunschweig 926 What are the basic functions of a geographic

More information

Introduction to GIS. Phil Guertin School of Natural Resources and the Environment GeoSpatial Technologies

Introduction to GIS. Phil Guertin School of Natural Resources and the Environment GeoSpatial Technologies Introduction to GIS Phil Guertin School of Natural Resources and the Environment dguertin@cals.arizona.edu Mapping GeoSpatial Technologies Traditional Survey Global Positioning Systems (GPS) Remote Sensing

More information

Development of Univ. of San Agustin Geographic Information System (USAGIS)

Development of Univ. of San Agustin Geographic Information System (USAGIS) , pp.170-176 http://dx.doi.org/10.14257/astl.2014.48.27 Development of Univ. of San Agustin Geographic Information System (USAGIS) Rosslin John H. Robles Chair, Computer Science Department, University

More information

Basics of GIS. by Basudeb Bhatta. Computer Aided Design Centre Department of Computer Science and Engineering Jadavpur University

Basics of GIS. by Basudeb Bhatta. Computer Aided Design Centre Department of Computer Science and Engineering Jadavpur University Basics of GIS by Basudeb Bhatta Computer Aided Design Centre Department of Computer Science and Engineering Jadavpur University e-governance Training Programme Conducted by National Institute of Electronics

More information