An integrated Framework for Retrieving and Analyzing Geographic Information in Web Pages

Size: px
Start display at page:

Download "An integrated Framework for Retrieving and Analyzing Geographic Information in Web Pages"

Transcription

1 An integrated Framework for Retrieving and Analyzing Geographic Information in Web Pages Hao Lin, Longping Hu, Yingjie Hu, Jianping Wu, Bailang Yu* Key Laboratory of Geographic Information Science, Ministry of Education, East China Normal University, Shanghai , P. R. China * Corresponding Author. blyu@geo.ecnu.edu.cn Abstract Most of the information stored in web pages contains geographic context, such as place names, address, and coordinates. Such geographic information often contains great values and is worth retrieving and analyzing. Traditional search engine is limited in its capability of extracting meaningful geographic messages from mass of unstructured and textual source. Even with the retrieved geographic information, specific systems are still needed to show the spatial distributions of such data. This paper presents an integrated framework which can retrieve and analyze geographic information in web pages. This framework integrates the following core functions: geographic information retrieval; geocoding; spatial analysis and statistical analysis. We also demonstrate the effectiveness of this framework by employing it to retrieve and analyze the geographic information from a particular website. Keywords-web pages; geographic information retrieval; spatial analysis I. INTRODUCTION In recent years, we witnessed a considerable increase in the application of geographic information in disaster prevention and control and regional economic planning. It is vital to keep the relevant database up to date for practical applicability. Since the Internet is a great resource of frequently updated information with geographic components, it is natural to be targeted for data mining. However, the information retrieved from web is usually of textual format. As a cartographical principle, geographic information is better understood in visual format rather than in textual format. Often presented as thematic maps and statistics images, this visual format is commonly used to reveal spatial patterns, inspire spatial associations, and support spatial decision making. Since the geographic information contained in web pages has such great meaning and the visual format is indispensable, it s significant to establish an integrated framework which can retrieve geographic information from the web, convert it into visual format for further analysis and support limited spatial analysis functions. Then, there are three difficult points have to be overcome. First is the accuracy of retrieved geographic information. Second is converting the derived geographic location information to GIS vector data. The last one is the integration of GIS spatial analysis functions. For retrieving geographic information, the concept of geographical information retrieval (GIR) has been proposed as the extension of the field of information retrieval (IR) which featured in the use of an information dictionary [1]. It is concerned with improving the quality of geographically specific information retrieval with a focus on access to unstructured documents such as those found on the Web and a number of researches have been conducted to improve the performance of geographic information retrieval [2]. The location names in web contents are focused in one research because these names often have metonymic meaning different from their literal geographic sense (e.g. Yesterday, Seoul and Peking agreed to start diplomatic relations) [3]. Another research focused on the errors in Natural Language Processing (NLP), and how these errors may influence the performance of GIR [4]. These methods of semantic analysis mentioned can improve the accuracy indeed but they restrict the efficiency of searches when they are practically executing. To avoid complicated semantic analysis and improve the accuracy, the method of professional information collection systems which based on the HTML tags analysis has been introduced into this paper [5]. In addition, a geographic information dictionary is established for supplementary and the target web sites are limited into specific ones such as professional sites with geographic coordinates, yellow pages-like sites and search engine results pages (SERP). Data gathered from the web above is usually unstructured and textual, whereas GIS works only on well-structured and numerically coded data supplied by a spatial database. In order to realize the conversion from text to map, geocoding-the process of associating an address record with a point on a map-is necessary. Gerard Rushton summarized three major methods of geocoding. First method assigns an observation to a geographic unit which is called as address conversion and landmarks conversion in this paper. The second and third methods (interpolation and parcel matching) attach a point coordinate value to a record [6] which is called as latitude and longitude conversion. All these methods are realized aim at the conversion of different types of specific web sites. In addition, the accuracy of geocoding is determined by the input address-based data quality. The paper by Zandbergena discussed the geocoding quality by using different street network Supported by the National Basic Research Program of China (973 Program) (No. 2010CB951603) /11/$ IEEE

2 datasets to geocode the same input files and this method require a researcher to manipulate address-based data in a Geographical Information System [7]. In this paper, the emendation of landmarks is realized for improving the quality of base data. System integration of GIS spatial analysis functions can be conducted in two ways. One is to integrate a modified web data capture algorithm into a commercial GIS, such as ArcGIS (an ESRI desktop product) [8]. Although this approach is convenient and efficient, most GIS functions will not be utilized, leading to a significant resource waste. The other approach is to custom design an independent framework to meet users specific requirements. This way requires the least system functionality and ensures no idle resource during system operation. ESRI s ArcEngine [9] presents an excellent example for this custom system model and was therefore selected as development platform in this study. The objective of this paper is to resolve the aforementioned difficulties and develop a prototype system for geographic data capture from the web and format conversion for GIS database updating, analysis, and visualization. The remainder of this paper is organized as follows. Section 2 details the process of retrieval and conversion methods. Section 3 introduces the prototype system and chooses some specific web sites as case studies. These cases are utilized to demonstrate the methods and implementation. Section 4 concludes this paper. II. METHOD Geographic information retrieved in this paper is mainly coordinates (know as latitude and longitude), address, and landmarks. These data is transformed as shown in Fig. 1. Figure 1. Flowchart of data processing A. Source Code Analysis For accuracy of retrieved address and coordinates, we choose web pages that have a certain rule. These specific web pages include pages from professional geographic site, yellow pageslike site and the search engine results pages (SERPs). In these specific web pages, Geographic information has been stored in semi-structured source code, as is shown in TABLE I. TABLE I. SOURCE CODE MODE OF CHOSEN WEB PAGES Professional site Yellow pages-like site Search engine results tag> tag>event_1/tag> tag>latitude_1/ta g > tag>longitude_1/t ag> /tag> tag> tag> Event _2/tag> tag>latitude_2/ta g > tag>longitude_2/t ag> /tag> tag> tag> Event _N/tag> tag>latitude_n/ta g > tag>longitude_n/ tag> /tag> tag> tag >Name_1/tag > tag >Address_1/tag > /tag> tag> tag >Name_2/tag > tag >Address_2/tag > /tag> tag> tag >Name_N/tag > tag >Address_N/tag > /tag> tag> Keyword_1Key word_2 Keyword_NLan dmark_1 /tag1> tag> Keyword_1Key word_2 Keyword_NLan dmark_2 /tag> tag> Keyword_1keyw ord_2 Keyword_NLan dmark_n /tag> 1) HTML Tags Analysis For pages in professional site and Yellow pages-like site, one can cut out needed address, latitude and longitude from these pages by analyzing the source code and customizing rules based on HTML (Hypertext Markup Language) tags. For example, the user can find out the tag before and behind Address_1. The pair of tags must be unique in case irrelevant information. They also should apply to Address_2 for processing batch. After confirming the tags, N addresses can be cut out from one single page. If there are M pages, [P ((M-1)N) P MN)] addresses can be obtained. Then, the Event_1, Name_1 or other information corresponding to relevant geographic information can be cut out in the same way according user s need. The collection result is shown as TABLE II. 2) Landmark Match As is shown as TABLE I, it s impossible to extract the geographic information by analyzing HTML tags when geospatial information is combined with the other information. So, Landmark match become a feasible method. We cycle the data table of prepared base maps to match the landmarks. The processing result is shown as TABLE II.

3 TABLE II. Retrieving Results of Source Code Professional site Event_1 Latitude_1 Longitude_1 Event _2 Latitude_2 Longitude_2 Event _N Latitude_N Longitude_N Yellow pages-like site Search engine results Name_1 Address_1 Name_2 Address_2 Name_N Address_N Keyword_1 Keyword_2 Keyword_N Keyword_1 Keyword_2 Keyword_N Keyword_1 Keyword_2 Keyword_N Landmark_1 Landmark_2 Landmark_N Now, pieces of meaningful geographic information have been able to be retrieved from these specific web pages. Next step is try to convert these pieces of information into vector map with further handling according the data transfer standards of common GIS. B. GIS Data Conversion The concentration management of Common GIS data is tabular form. The data structure is shown as TABLE III. FID field is a globally unique identifier (GUID) automatically generated at the time of conversion. Shape filed record the shape of the geographical entity (point, line or polygon). It is also known as the spatial location information [10]. Other thematic attribute information of geographic entities is stored in Property_1 to Property_N fields. So, the spatial information and attribute information of the geographic entities must be extracted for converting the web geographic information into GIS spatial data. TABLE III. The Typical Table of GIS Data FID Shape Property_1 Property _N 1 Geometry Geometry N Geometry 1) Latitude and Longitude Conversion Point on Earth s surface is usually described by latitude and longitude. With reference to the appropriate geodetic coordinate system, space orientation of the point can be realized by using its coordinate [11]. The localization principle of GIS is also base on the coordinate. So, latitude and longitude (TABLE IV) can be directly located and converted to a vector map though only a little of professional web site record the latitude and longitude, such as CEDC (China Earthquake Data Center) [12]. 2) Addresses Conversion Compared with the other two types, the conversion of addresses is complex and they cannot be directly converted into vector unless using the method of geocoding. Geocoding, also known as address matching, is the process of creating the corresponding vector map by establish some connection between address table and related base map, associating an address record with a point on a map [13]. First, an address table and a base map are essential data for geocoding. Second, each record in address table must contain explicit road name and house number for address location. Third, attribute information of must be one to one correspondence to the addresses. The format of conventional addresses of China is XX City + XX District + XX Road + XX Number. The road name and the number can be extract by locate the keywords, such as Road, Street, No. or alleyway etc. 3) Landmarks Conversion Landmarks (TABLE IV) are also easy to covert because this kind of geographic information is retrieved by matching exiting base maps. So, landmarks can be converted directly by connecting to relevant base maps. TABLE IV. Professional site Final Tabular form of Retrieving Results Search engine results ID Event Lat Lon ID Message Landmarks 1 E_1 Lat_1 Lon_1 1 K_1K_N L_1 2 E_2 Lat_2 Lon_2 2 K_1K_N L_2 N E_N Lat_N Lon_N N K_1K_N L_N Yellow pages-like site ID Name Address Road Number 1 N_1 A_1 R_1 No_1 2 N_2 A_1 R_2 No_2 N N_N A_1 R_N No_N III. PROTOTYPE AND APPLICATION To meet the requirements above and implement the method mentioned, we designed a prototype system with two main function modes: information retrieve and spatial analysis. The simplified system flowchart is shown as Fig.1. Each function of the system can be divided into several sub-modules. The completed system architecture design is showed as Fig.2.

4 Figure 2. Simplified system flowchart information of SERPs will be match to landmarks. These landmarks are stored in SQL2000 and can be emendated by a menu item in the prototype for additions and deletions. The collection results can be converted by landmarks match base on prepared base maps. The example is shown as follow: The latest information of fire disaster in Shanghai center area. Figure 5. The latest information of fire disaster in Shanghai, China Figure 3. Detailed system architecture design A. Geographic Information Retrieval Module This module can collect geographic information from web pages contents and converting the unstructured geographic data to vector data. There are three ways for user to get geographic information in web pages can. 1) Specified Site Collection One can choose specified sites including China Earthquake Data Center (CEDC) and Dianping.com (a yellow pages-like site) [14] directly by mouse click without any other edit. The HTML tags has been analyzed and edited into build-in collection rules. The final table of results can be converted by coordinate localization and geocoding in accordance with the tabular from. Geocoding is executed by the Address Locator created with the help of ArcGIS Engine 9.3 software development kit [15]. The example is shown as follow: Collection of earthquake information from CEDC. 3) Customize Rules Collection Collection rules for how to cut out the needed information between HTML tags can be customized by users in this submodule. In consideration of the difference between coordinates (latitude and longitude) and Chinese conventional addresses, there is one more step to handle address compared with coordinates. So, two tabular forms can be selected and the final address tabular form will be created automatically by build-in rules. Then, the retrieved results can be converted as same as the specified site collection. The example is shown as follow: The latest vegetarian restaurants in Shanghai center area. Restaurant Address Restaurant Name Figure 6. The latest vegetarian restaurants in Shanghai center area Figure 4. Collection of earthquake information from CEDC 2) SERPs Collection In this module, one can retrieved geographic information from SERPs by input keywords and choose the search engine prefer. There are Baidu and Google as options. Geographic B. Statistic Analysis and Spatial Analysis Module The retrieved geographic information above is converted and stored in geodatabase as point feature class which also known as the point vector layer. According to the spatial characteristics, attribute characteristics and interaction of point features, the analysis functions integrated in this system include regional statistical analysis, network density analysis, buffer analysis, hierarchical thematic map, histograms and attribute query. Thematic map and charts can be created by these sub-modules so that spatial distribution can be reflected and server for decisionmaking. 1) Regional Statistic Analysis

5 According the topological relations between two point feature classes, one can statistically calculate the number of geographical factors in interested regions. The results can be show in the form of thematic map. The example is shown as follow: Regional statistical analysis of vegetarian restaurants in Shanghai center. Figure 9. Magnitude 8.8 earthquake in Chile affected areas (200km) Figure 7. Regional statistical analysis of vegetarian restaurants in Shanghai center 2) Network Density Analysis Network density analysis means calculating the density of geographical factors in a specific grid cell. This function is used to study the spatial distribution of geographical phenomena. The vector grid is overlay analyzed with the target layer according to the size of vector grid and the analysis results can be shown in the form of hierarchical thematic map. The example is shown as follow: Density analysis of vegetarian restaurants in Shanghai center. 4) Hierarchical Thematic Map This sub-module is different from regional statistic analysis as just one feature class is used for statistic analysis. Meanwhile, this function can be used to calculate the maximum, minimum, mean, variance and sum of each numeric filed. The result of hierarchical thematic map is similar to regional statistic analysis. 5) Histogram This sub-module use ZedGraph [17] as chart controls. The results of spatial statistical analysis are reflected in the form of histogram instead of thematic maps. This is another visual expression for users. The example is shown as follow: Histogram of vegetarian restaurants in Shanghai center. Figure 10. Histogram of vegetarian restaurants in Shanghai center Figure 8. Density analysis of vegetarian restaurants in Shanghai center 3) Buffer Analysis Buffer analysis is used for identifying areas surrounding geographic features. The process involves generating a buffer around existing geographic features and then identifying or selecting features based on whether they fall inside or outside the boundary of the buffer [16]. The generated buffer graphics can be outputted as graphics files. The example is shown as follow: Magnitude 8.8 earthquake in Chile affected areas (200km). 6) Attribute Query Attribute query function is similar to the SQL query of relational database. Users can query interested geographic information in attribute tables of feature classes. The results will be highlighted on the map. IV. CONCLUSION This paper has proposed an integrated framework designed for retrieving and analyzing geographic information in web pages. It can retrieve web geographic information and convert the derived geographic location information to GIS vector data by using ArcGIS Engine 9.3 software development kit. Meanwhile, the vector data are organized and stored in a geodatabase and displaying on the map control for further spatial analysis and

6 statistical analysis. Finally, tailor-made graphics such as thematic map and statistics images are outputted by the prototype for practical decision-making of users. However, this system is just a prototype for demonstrating the feasibility of above function. The base map we choose is limited for large area application and the prototype is target mainly to Chinese specific web site. Further study must be made for retrieving more types of web site, improving search efficiency and expanding the analysis modules. REFERENCES [1] X. Wang, Research on Geographic Information Retrieval, University of Science and Technology of China, [2] C. B. JONES and R. S. PURVES, Geographical information retrieval, International Journal of Geographical Information Science, vol. 22(3), 2007, pp [3] L. Johannes and H. Sven, On metonymy recognition for geographic information retrieval, International Journal of Geographical Information Science, vol. 22(3), 2008, pp [4] S. Nicola, L. Yi, M. Alistair, and R. Jiawen, An empirical study of the effects of NLP components on Geographic IR performance, International Journal of Geographical Information Science, vol. 22(3), 2008, pp [5] K. Zhou, Exploring the Integration of GIS and IR and its Application for the Management of Emergency Response, East China Normal University, [6] G. Rushton, Geocoding in Cancer Research, American Journal of Preventive Medicine, 2006, vol. 30(2S). [7] P. A. Zandbergena, Influence of street reference data on geocoding quality, Geocarto International, 2011, vol. 26(1). [8] Esri Products, accessed at April 20, [9] ArcGIS Engine Overview, accessed at April 20, [10] C. Zhang, Internship Guide of GIS, Higher Education Press, 2000, pp [11] M. Cai, New Cartography Tutorials, Higher Education Press, 2006, pp [12] CEDC, accessed at April 20, [13] P. A. Zandbergena, Influence of street reference data on geocoding quality, Geocarto International, 2011, vol. 26(1). [14] Dianping.com, accessed at April 20, [15] Engine Help for.net (VS2008) [16] Buffer Analysis, accessed at April 20, [17] ZedGraph, accessed at April 20, 2011.

Lecture 2. A Review: Geographic Information Systems & ArcGIS Basics

Lecture 2. A Review: Geographic Information Systems & ArcGIS Basics Lecture 2 A Review: Geographic Information Systems & ArcGIS Basics GIS Overview Types of Maps Symbolization & Classification Map Elements GIS Data Models Coordinate Systems and Projections Scale Geodatabases

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

Canadian Board of Examiners for Professional Surveyors Core Syllabus Item C 5: GEOSPATIAL INFORMATION SYSTEMS

Canadian Board of Examiners for Professional Surveyors Core Syllabus Item C 5: GEOSPATIAL INFORMATION SYSTEMS Study Guide: Canadian Board of Examiners for Professional Surveyors Core Syllabus Item C 5: GEOSPATIAL INFORMATION SYSTEMS This guide presents some study questions with specific referral to the essential

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

Task 1: Start ArcMap and add the county boundary data from your downloaded dataset to the data frame.

Task 1: Start ArcMap and add the county boundary data from your downloaded dataset to the data frame. Exercise 6 Coordinate Systems and Map Projections The following steps describe the general process that you will follow to complete the exercise. Specific steps will be provided later in the step-by-step

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

Lecture 2. Introduction to ESRI s ArcGIS Desktop and ArcMap

Lecture 2. Introduction to ESRI s ArcGIS Desktop and ArcMap Lecture 2 Introduction to ESRI s ArcGIS Desktop and ArcMap Outline ESRI What is ArcGIS? ArcGIS Desktop ArcMap Overview Views Layers Attribute Tables Help! Scale Tips and Tricks ESRI Environmental Systems

More information

Smart Data Collection and Real-time Digital Cartography

Smart Data Collection and Real-time Digital Cartography Smart Data Collection and Real-time Digital Cartography Yuji Murayama and Ko Ko Lwin Division of Spatial Information Science Faculty of Life and Environmental Sciences University of Tsukuba IGU 2013 1

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

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

A Review: Geographic Information Systems & ArcGIS Basics

A Review: Geographic Information Systems & ArcGIS Basics A Review: Geographic Information Systems & ArcGIS Basics Geographic Information Systems Geographic Information Science Why is GIS important and what drives it? Applications of GIS ESRI s ArcGIS: A Review

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

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

ArcGIS for Desktop. ArcGIS for Desktop is the primary authoring tool for the ArcGIS platform.

ArcGIS for Desktop. ArcGIS for Desktop is the primary authoring tool for the ArcGIS platform. ArcGIS for Desktop ArcGIS for Desktop ArcGIS for Desktop is the primary authoring tool for the ArcGIS platform. Beyond showing your data as points on a map, ArcGIS for Desktop gives you the power to manage

More information

GIS Quick Facts. CIVL 1101 GIS Quick Facts 1/5.

GIS Quick Facts. CIVL 1101 GIS Quick Facts 1/5. CIVL 1101 1/5 What is GIS? Geographic Information Systems (GIS) provide a platform for displaying and analyzing spatial data. GIS systems allow you to view multiple layers of data simultaneously. GIS is

More information

GIS Software. Evolution of GIS Software

GIS Software. Evolution of GIS Software GIS Software The geoprocessing engines of GIS Major functions Collect, store, mange, query, analyze and present Key terms Program collections of instructions to manipulate data Package integrated collection

More information

GENERALIZATION IN THE NEW GENERATION OF GIS. Dan Lee ESRI, Inc. 380 New York Street Redlands, CA USA Fax:

GENERALIZATION IN THE NEW GENERATION OF GIS. Dan Lee ESRI, Inc. 380 New York Street Redlands, CA USA Fax: GENERALIZATION IN THE NEW GENERATION OF GIS Dan Lee ESRI, Inc. 380 New York Street Redlands, CA 92373 USA dlee@esri.com Fax: 909-793-5953 Abstract In the research and development of automated map generalization,

More information

DP Project Development Pvt. Ltd.

DP Project Development Pvt. Ltd. Dear Sir/Madam, Greetings!!! Thanks for contacting DP Project Development for your training requirement. DP Project Development is leading professional training provider in GIS technologies and GIS application

More information

ArcMap - EXPLORING THE DATABASE Part I. SPATIAL DATA FORMATS Part II

ArcMap - EXPLORING THE DATABASE Part I. SPATIAL DATA FORMATS Part II Week 5 ArcMap - EXPLORING THE DATABASE Part I SPATIAL DATA FORMATS Part II topics of the week Exploring the Database More on the Table of Contents Exploration tools Identify, Find, Measure, Map tips, Hyperlink,

More information

Are You Maximizing The Value Of All Your Data?

Are You Maximizing The Value Of All Your Data? Are You Maximizing The Value Of All Your Data? Using The SAS Bridge for ESRI With ArcGIS Business Analyst In A Retail Market Analysis SAS and ESRI: Bringing GIS Mapping and SAS Data Together Presented

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

SRJC Applied Technology 54A Introduction to GIS

SRJC Applied Technology 54A Introduction to GIS SRJC Applied Technology 54A Introduction to GIS Overview Lecture of Geographic Information Systems Fall 2004 Santa Rosa Junior College Presented By: Tim Pudoff, GIS Coordinator, County of Sonoma, Information

More information

Arboretum Explorer: Using GIS to map the Arnold Arboretum

Arboretum Explorer: Using GIS to map the Arnold Arboretum Arboretum Explorer: Using GIS to map the Arnold Arboretum Donna Tremonte, Arnold Arboretum of Harvard University 2015 Esri User Conference (UC), July 22, 2015 http://arboretum.harvard.edu/explorer Mission

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

Geospatial Products V8i (SELECTseries 1)

Geospatial Products V8i (SELECTseries 1) Geospatial Products V8i (SELECTseries 1) Keith Raymond Product Manager Geospatial Desktop Products Presentation Overview What are the various products? Why would you need them? Demonstrations 2 WWW.BENTLEY.COM

More information

GOVERNMENT GIS BUILDING BASED ON THE THEORY OF INFORMATION ARCHITECTURE

GOVERNMENT GIS BUILDING BASED ON THE THEORY OF INFORMATION ARCHITECTURE GOVERNMENT GIS BUILDING BASED ON THE THEORY OF INFORMATION ARCHITECTURE Abstract SHI Lihong 1 LI Haiyong 1,2 LIU Jiping 1 LI Bin 1 1 Chinese Academy Surveying and Mapping, Beijing, China, 100039 2 Liaoning

More information

Available online at Analele Stiintifice ale Universitatii Al. I. Cuza din Iasi Seria Geologie 58 (1) (2012) 53 58

Available online at   Analele Stiintifice ale Universitatii Al. I. Cuza din Iasi Seria Geologie 58 (1) (2012) 53 58 Available online at http://geology.uaic.ro/auig/ Analele Stiintifice ale Universitatii Al. I. Cuza din Iasi Seria Geologie 58 (1) (2012) 53 58 AUI GEOLOGIE GIS database for mineral resources: case study

More information

UNIT 4: USING ArcGIS. Instructor: Emmanuel K. Appiah-Adjei (PhD) Department of Geological Engineering KNUST, Kumasi

UNIT 4: USING ArcGIS. Instructor: Emmanuel K. Appiah-Adjei (PhD) Department of Geological Engineering KNUST, Kumasi UNIT 4: USING ArcGIS Instructor: Emmanuel K. Appiah-Adjei (PhD) Department of Geological Engineering KNUST, Kumasi Getting to Know ArcGIS ArcGIS is an integrated collection of GIS software products ArcGIS

More information

PC ARC/INFO and Data Automation Kit GIS Tools for Your PC

PC ARC/INFO and Data Automation Kit GIS Tools for Your PC ESRI PC ARC/INFO and Data Automation Kit GIS Tools for Your PC PC ARC/INFO High-quality digitizing and data entry Powerful topology building Cartographic design and query Spatial database query and analysis

More information

Animating Maps: Visual Analytics meets Geoweb 2.0

Animating Maps: Visual Analytics meets Geoweb 2.0 Animating Maps: Visual Analytics meets Geoweb 2.0 Piyush Yadav 1, Shailesh Deshpande 1, Raja Sengupta 2 1 Tata Research Development and Design Centre, Pune (India) Email: {piyush.yadav1, shailesh.deshpande}@tcs.com

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

Data Structures & Database Queries in GIS

Data Structures & Database Queries in GIS Data Structures & Database Queries in GIS Objective In this lab we will show you how to use ArcGIS for analysis of digital elevation models (DEM s), in relationship to Rocky Mountain bighorn sheep (Ovis

More information

POSSIBILITY FOR APPLICATION OF GIS TECHNOLOGIES IN RTB BOR GROUP

POSSIBILITY FOR APPLICATION OF GIS TECHNOLOGIES IN RTB BOR GROUP MINING AND METALLURGY INSTITUTE BOR UDK: 622 ISSN: 2334-8836 (Štampano izdanje) ISSN: 2406-1395 (Online) UDK: 681.33:622.343(045)=111 doi:10.5937/mmeb1603021v Nenad Vušović *, Marko Vuković **, Igor Svrkota

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

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

Geog 469 GIS Workshop. Data Analysis

Geog 469 GIS Workshop. Data Analysis Geog 469 GIS Workshop Data Analysis Outline 1. What kinds of need-to-know questions can be addressed using GIS data analysis? 2. What is a typology of GIS operations? 3. What kinds of operations are useful

More information

Geographic Systems and Analysis

Geographic Systems and Analysis Geographic Systems and Analysis New York University Robert F. Wagner Graduate School of Public Service Instructor Stephanie Rosoff Contact: stephanie.rosoff@nyu.edu Office hours: Mondays by appointment

More information

94-802Z: Geographic Information Systems Summer 2018

94-802Z: Geographic Information Systems Summer 2018 94-802Z: Geographic Information Systems Summer 2018 Instructor: Professor Kristen Kurland Teaching Assistant(s): (Office hours to be posted on Canvas) TBA Class Web Site: http:/www.cmu.edu/canvas

More information

Steve Pietersen Office Telephone No

Steve Pietersen Office Telephone No Steve Pietersen Steve.Pieterson@durban.gov.za Office Telephone No. 031 311 8655 Overview Why geography matters The power of GIS EWS GIS water stats EWS GIS sanitation stats How to build a GIS system EWS

More information

Introduction to ArcGIS Server Development

Introduction to ArcGIS Server Development Introduction to ArcGIS Server Development Kevin Deege,, Rob Burke, Kelly Hutchins, and Sathya Prasad ESRI Developer Summit 2008 1 Schedule Introduction to ArcGIS Server Rob and Kevin Questions Break 2:15

More information

FUNDAMENTALS OF GEOINFORMATICS PART-II (CLASS: FYBSc SEM- II)

FUNDAMENTALS OF GEOINFORMATICS PART-II (CLASS: FYBSc SEM- II) FUNDAMENTALS OF GEOINFORMATICS PART-II (CLASS: FYBSc SEM- II) UNIT:-I: INTRODUCTION TO GIS 1.1.Definition, Potential of GIS, Concept of Space and Time 1.2.Components of GIS, Evolution/Origin and Objectives

More information

Introduction. Project Summary In 2014 multiple local Otsego county agencies, Otsego County Soil and Water

Introduction. Project Summary In 2014 multiple local Otsego county agencies, Otsego County Soil and Water Introduction Project Summary In 2014 multiple local Otsego county agencies, Otsego County Soil and Water Conservation District (SWCD), the Otsego County Planning Department (OPD), and the Otsego County

More information

YYT-C3002 Application Programming in Engineering GIS I. Anas Altartouri Otaniemi

YYT-C3002 Application Programming in Engineering GIS I. Anas Altartouri Otaniemi YYT-C3002 Application Programming in Engineering GIS I Otaniemi Overview: GIS lectures & exercise We will deal with GIS application development in two lectures. Because of the versatility of GIS data models

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

The File Geodatabase API. Craig Gillgrass Lance Shipman

The File Geodatabase API. Craig Gillgrass Lance Shipman The File Geodatabase API Craig Gillgrass Lance Shipman Schedule Cell phones and pagers Please complete the session survey we take your feedback very seriously! Overview File Geodatabase API - Introduction

More information

GIS Supports to Economic and Social Development

GIS Supports to Economic and Social Development GIS Supports to Economic and Social Development Dang Van Duc and Le Quoc Hung Institute of Information Technology 18, Hoang Quoc Viet Rd., Cau Giay Dist., Hanoi, Vietnam Email: dvduc@ioit.ncst.ac.vn; lqhung@ioit.ncst.ac.vn

More information

Web Visualization of Geo-Spatial Data using SVG and VRML/X3D

Web Visualization of Geo-Spatial Data using SVG and VRML/X3D Web Visualization of Geo-Spatial Data using SVG and VRML/X3D Jianghui Ying Falls Church, VA 22043, USA jying@vt.edu Denis Gračanin Blacksburg, VA 24061, USA gracanin@vt.edu Chang-Tien Lu Falls Church,

More information

ADDRESSING A HOW TO LOOK AT GIS ADDRESSING 9/13/2017

ADDRESSING A HOW TO LOOK AT GIS ADDRESSING 9/13/2017 ADDRESSING A Look at Creating & Updating Point Files A HOW TO LOOK AT GIS ADDRESSING Creating points using LAT/LONG fields from WINGAP Creating addressing location (GPS/Latitude & Longitude) points using

More information

Introduction to ArcGIS Server - Creating and Using GIS Services. Mark Ho Instructor Washington, DC

Introduction to ArcGIS Server - Creating and Using GIS Services. Mark Ho Instructor Washington, DC Introduction to ArcGIS Server - Creating and Using GIS Services Mark Ho Instructor Washington, DC Technical Workshop Road Map Product overview Building server applications GIS services Developer Help resources

More information

Course overview. Grading and Evaluation. Final project. Where and When? Welcome to REM402 Applied Spatial Analysis in Natural Resources.

Course overview. Grading and Evaluation. Final project. Where and When? Welcome to REM402 Applied Spatial Analysis in Natural Resources. Welcome to REM402 Applied Spatial Analysis in Natural Resources Eva Strand, University of Idaho Map of the Pacific Northwest from http://www.or.blm.gov/gis/ Where and When? Lectures Monday & Wednesday

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

Developing An Application For M-GIS To Access Geoserver Through Mobile For Importing Shapefile

Developing An Application For M-GIS To Access Geoserver Through Mobile For Importing Shapefile Developing An Application For M-GIS To Access Geoserver Through Mobile For Importing Shapefile Ritik Sharma,A,1, Shubhangi Garg B,2, Yogesh Kumar c,3, Jeevash Mutreja d,4 a ABES Engg.College Ghaziabad

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

Spatial Information Retrieval

Spatial Information Retrieval Spatial Information Retrieval Wenwen LI 1, 2, Phil Yang 1, Bin Zhou 1, 3 [1] Joint Center for Intelligent Spatial Computing, and Earth System & GeoInformation Sciences College of Science, George Mason

More information

GIS CONCEPTS Part I. GIS ON THE WEB Part II

GIS CONCEPTS Part I. GIS ON THE WEB Part II Week 2 GIS CONCEPTS Part I GIS ON THE WEB Part II topics of the week part I GIS functions and GIS data Spatial relationships Organizing convention for spatial data Store Information by thematic layers

More information

Personal Field Data Collection by UM-FieldGIS (Integration of Google Map API to Mobile GIS)

Personal Field Data Collection by UM-FieldGIS (Integration of Google Map API to Mobile GIS) Personal Field Data Collection by UM-FieldGIS (Integration of Google Map API to Mobile GIS) Ko Ko Lwin*. Yuji MURAYAMA* *Division of Spatial Information Science Graduate School of Life and Environmental

More information

Fundamentals of ArcGIS Desktop Pathway

Fundamentals of ArcGIS Desktop Pathway Fundamentals of ArcGIS Desktop Pathway Table of Contents ArcGIS Desktop I: Getting Started with GIS 3 ArcGIS Desktop II: Tools and Functionality 5 Understanding Geographic Data 8 Understanding Map Projections

More information

The Challenge of Geospatial Big Data Analysis

The Challenge of Geospatial Big Data Analysis 288 POSTERS The Challenge of Geospatial Big Data Analysis Authors - Teerayut Horanont, University of Tokyo, Japan - Apichon Witayangkurn, University of Tokyo, Japan - Shibasaki Ryosuke, University of Tokyo,

More information

Environmental Systems Research Institute

Environmental Systems Research Institute Introduction to ArcGIS ESRI Environmental Systems Research Institute Redlands, California 2 ESRI GIS Development Arc/Info (coverage model) Versions 1-7 from 1980 1999 Arc Macro Language (AML) ArcView (shapefile

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

4. GIS Implementation of the TxDOT Hydrology Extensions

4. GIS Implementation of the TxDOT Hydrology Extensions 4. GIS Implementation of the TxDOT Hydrology Extensions A Geographic Information System (GIS) is a computer-assisted system for the capture, storage, retrieval, analysis and display of spatial data. It

More information

Geodatabase An Overview

Geodatabase An Overview Federal GIS Conference February 9 10, 2015 Washington, DC Geodatabase An Overview Ralph Denkenberger - esri Session Path The Geodatabase - What is it? - Why use it? - What types are there? Inside the Geodatabase

More information

Utilizing Data from American FactFinder with TIGER/Line Shapefiles in ArcGIS

Utilizing Data from American FactFinder with TIGER/Line Shapefiles in ArcGIS Utilizing Data from American FactFinder with TIGER/Line Shapefiles in ArcGIS Web Adams, GISP Data Dissemination Specialist U.S. Census Bureau New York Regional Office 1 What We Do Decennial Census Every

More information

Transactions on Information and Communications Technologies vol 18, 1998 WIT Press, ISSN

Transactions on Information and Communications Technologies vol 18, 1998 WIT Press,   ISSN GIS in the process of road design N.C. Babic, D. Rebolj & L. Hanzic Civil Engineering Informatics Center, University ofmaribor, Faculty of Civil Engineering, Smetanova 17, 2000 Maribor, Slovenia. E-mail:

More information

What are the five components of a GIS? A typically GIS consists of five elements: - Hardware, Software, Data, People and Procedures (Work Flows)

What are the five components of a GIS? A typically GIS consists of five elements: - Hardware, Software, Data, People and Procedures (Work Flows) LECTURE 1 - INTRODUCTION TO GIS Section I - GIS versus GPS What is a geographic information system (GIS)? GIS can be defined as a computerized application that combines an interactive map with a database

More information

2G1/3G4 GIS TUTORIAL >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

2G1/3G4 GIS TUTORIAL >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> > University of Michigan >Taubman College of Architecture > ARCH 552, Perimeter @ Work Out [T]here, Fall 2009 >September 24, 2009 2G1/3G4 GIS TUTORIAL >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

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

Spatial analysis in XML/GML/SVG based WebGIS

Spatial analysis in XML/GML/SVG based WebGIS Spatial analysis in XML/GML/SVG based WebGIS Haosheng Huang, Yan Li huang@cartography.tuwien.ac.at and yanli@scnu.edu.cn Research Group Cartography, Vienna University of Technology Spatial Information

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

EEOS 381 -Spatial Databases and GIS Applications

EEOS 381 -Spatial Databases and GIS Applications EEOS 381 -Spatial Databases and GIS Applications Lecture 5 Geodatabases What is a Geodatabase? Geographic Database ESRI-coined term A standard RDBMS that stores and manages geographic data A modern object-relational

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

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

INDOT Office of Traffic Safety

INDOT Office of Traffic Safety Intro to GIS Spatial Analysis INDOT Office of Traffic Safety Intro to GIS Spatial Analysis INDOT Office of Traffic Safety Kevin Knoke Section 130 Program Manager Highway Engineer II Registered Professional

More information

MODELING ACTIVE DATABASE-DRIVEN CARTOGRAPHY WITHIN GIS DATABASES

MODELING ACTIVE DATABASE-DRIVEN CARTOGRAPHY WITHIN GIS DATABASES Page 1 of 7 MODELING ACTIVE DATABASE-DRIVEN CARTOGRAPHY WITHIN GIS DATABASES Abstract Charlie Frye and Cory L. Eicher ESRI, 380 New York Street, Redlands, CA 92373 GIS databases contain classes of features

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

Outline. Chapter 1. A history of products. What is ArcGIS? What is GIS? Some GIS applications Introducing the ArcGIS products How does GIS work?

Outline. Chapter 1. A history of products. What is ArcGIS? What is GIS? Some GIS applications Introducing the ArcGIS products How does GIS work? Outline Chapter 1 Introducing ArcGIS What is GIS? Some GIS applications Introducing the ArcGIS products How does GIS work? Basic data formats The ArcCatalog interface 1-1 1-2 A history of products Arc/Info

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

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

Developing 3D Geoportal for Wilayah Persekutuan Iskandar

Developing 3D Geoportal for Wilayah Persekutuan Iskandar Developing 3D Geoportal for Wilayah Persekutuan Iskandar Dionnald Beh BoonHeng and Alias Abdul Rahman Department of Geoinformatics, Faculty of Geoinformation Engineering and Sciences, Universiti Teknologi

More information

Geodatabase An Introduction

Geodatabase An Introduction 2013 Esri International User Conference July 8 12, 2013 San Diego, California Technical Workshop Geodatabase An Introduction David Crawford and Jonathan Murphy Session Path The Geodatabase What is it?

More information

ArcGIS Pro: Essential Workflows STUDENT EDITION

ArcGIS Pro: Essential Workflows STUDENT EDITION ArcGIS Pro: Essential Workflows STUDENT EDITION Copyright 2018 Esri All rights reserved. Course version 6.0. Version release date August 2018. Printed in the United States of America. The information contained

More information

Enabling ENVI. ArcGIS for Server

Enabling ENVI. ArcGIS for Server Enabling ENVI throughh ArcGIS for Server 1 Imagery: A Unique and Valuable Source of Data Imagery is not just a base map, but a layer of rich information that can address problems faced by GIS users. >

More information

Paper UC1351. Conference: User Conference Date: 08/10/2006 Time: 8:30am-9:45am Room: Room 23-B (SDCC)

Paper UC1351. Conference: User Conference Date: 08/10/2006 Time: 8:30am-9:45am Room: Room 23-B (SDCC) Conference: User Conference Date: 08/10/2006 Time: 8:30am-9:45am Room: Room 23-B (SDCC) Title of Paper: Increasing the Use of GIS in the Federal Government Author Name: Miss Abstract This presentation

More information

File Geodatabase Feature Class. Tags platts, price assessement, crude oil, crude, petroleum

File Geodatabase Feature Class. Tags platts, price assessement, crude oil, crude, petroleum Major Price Assessment Points (Global) File Geodatabase Feature Class Tags platts, price assessement, crude oil, crude, petroleum Summary Visualize the price of oil around the world with these generalized

More information

Research on Object-Oriented Geographical Data Model in GIS

Research on Object-Oriented Geographical Data Model in GIS Research on Object-Oriented Geographical Data Model in GIS Wang Qingshan, Wang Jiayao, Zhou Haiyan, Li Bin Institute of Information Engineering University 66 Longhai Road, ZhengZhou 450052, P.R.China Abstract

More information

THE SPATIAL DATA WAREHOUSE OF SEOUL

THE SPATIAL DATA WAREHOUSE OF SEOUL THE SPATIAL DATA WAREHOUSE OF SEOUL Jae-Ho Han The Seoul Metropolitan Government Seoul City Hall, Taepyeongno 1(il)-ga, Jung-gu, Seoul 100-744, Korea djhjha@hanmail.net Impyeong Lee Dept. of Geoinformatics,

More information

ArcGIS Web Tools, Templates, and Solutions for Defence & Intelligence. Renee Bernstein Esri Solutions Engineer

ArcGIS Web Tools, Templates, and Solutions for Defence & Intelligence. Renee Bernstein Esri Solutions Engineer ArcGIS Web Tools, Templates, and Solutions for Defence & Intelligence Renee Bernstein Esri Solutions Engineer ArcGIS Solutions Includes 450+ Industry Focused Apps and Capabilities Organized by 9 Primary

More information

APPLICATION OF GIS IN ELECTRICAL DISTRIBUTION NETWORK SYSTEM

APPLICATION OF GIS IN ELECTRICAL DISTRIBUTION NETWORK SYSTEM See discussions, stats, and author profiles for this publication at: https://www.researchgate.net/publication/305263658 APPLICATION OF GIS IN ELECTRICAL DISTRIBUTION NETWORK SYSTEM Article October 2015

More information

Enhancing Parcel Data In Colleton County. February 10, 2009

Enhancing Parcel Data In Colleton County. February 10, 2009 Enhancing Parcel Data In Colleton County GIS & CAMA Conference February 10, 2009 Introductions Bruce T. Harper Technology Director Colleton County, SC Bill Wetzel National GIS Account Manager The Sidwell

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

Performing. Geospatial Analysis. Using Latitude and Longitude Data. Ginger Ni - Software Engineer

Performing. Geospatial Analysis. Using Latitude and Longitude Data. Ginger Ni - Software Engineer Performing Geospatial Analysis Using Latitude and Longitude Data Ginger Ni - Software Engineer Hewlett Packard Enterprise confidential information This is a rolling (up to three year) roadmap and is subject

More information

Working with the Geodatabase

Working with the Geodatabase Working with the Geodatabase Agenda What is the geodatabase? Benefits of the geodatabase Inside the geodatabase Geodatabase rules Demos Additional resources and training Q & A The Geodatabase is the foundation

More information

Web-GIS based Framework for Solid Waste Complaint Management for Sustainable and Smart City

Web-GIS based Framework for Solid Waste Complaint Management for Sustainable and Smart City Cloud Publications International Journal of Advanced Remote Sensing and GIS 2016, Volume 5, Issue 10, pp. 1930-1936 ISSN 2320-0243, DOI: 10.23953/cloud.ijarsg.71 Research Article Open Access Web-GIS based

More information

Combining Geospatial and Statistical Data for Analysis & Dissemination

Combining Geospatial and Statistical Data for Analysis & Dissemination Combining Geospatial and Statistical Data for Analysis & Dissemination (with Special Reference to Qatar Census 2010) Presentation by Mansoor Al Malki, Director of IT Department Qatar Statistics Authority

More information

Esri Production Mapping: Map Automation & Advanced Cartography MADHURA PHATERPEKAR JOE SHEFFIELD

Esri Production Mapping: Map Automation & Advanced Cartography MADHURA PHATERPEKAR JOE SHEFFIELD Esri Production Mapping: Map Automation & Advanced Cartography MADHURA PHATERPEKAR JOE SHEFFIELD Traditional Cartography What you really want Cartographic Workflow Output Cartographic Data Symbology Layout

More information

Introducing ArcGIS Engine

Introducing ArcGIS Engine 1 Introducing ArcGIS Engine ESRI ArcGIS Engine is a platform for building custom standalone geographic information system (GIS) applications that support multiple application programming interfaces (APIs),

More information

Geographical Information System GIS

Geographical Information System GIS Geographical Information System GIS LOOM.02.331 anto.aasa@ut.ee Scale GIS and spatial planning National Regional Local Strategic (National Dev. Plan) National Goals and development policy Tactical (Regional

More information

https://u.osu.edu/miller.81/ Texts 1. Required Worboys, M. and Duckham, M. (2004) GIS: A Computing Perspective. Other readings see course schedule.

https://u.osu.edu/miller.81/ Texts 1. Required Worboys, M. and Duckham, M. (2004) GIS: A Computing Perspective. Other readings see course schedule. GEOGR 5212 Geospatial Databases for GIS - Spring Instructor Harvey J. Miller Lecture/lab meeting time Tuesdays 3:55PM - 5:15PM, Denney Hall 238 and location (classroom) Thursdays 3:55PM - 5:15PM Derby

More information

IMPERIAL COUNTY PLANNING AND DEVELOPMENT

IMPERIAL COUNTY PLANNING AND DEVELOPMENT IMPERIAL COUNTY PLANNING AND DEVELOPMENT GEODATABASE USER MANUAL FOR COUNTY BUSINESS DEVELOPMENT GIS June 2010 Prepared for: Prepared by: County of Imperial Planning and Development 801 Main Street El

More information

Tutorial: Urban Trajectory Visualization. Case Studies. Ye Zhao

Tutorial: Urban Trajectory Visualization. Case Studies. Ye Zhao Case Studies Ye Zhao Use Cases We show examples of the web-based visual analytics system TrajAnalytics The case study information and videos are available at http://vis.cs.kent.edu/trajanalytics/ Porto

More information