D2D SALES WITH SURVEY123, OP DASHBOARD, AND MICROSOFT SSAS

Size: px
Start display at page:

Download "D2D SALES WITH SURVEY123, OP DASHBOARD, AND MICROSOFT SSAS"

Transcription

1 D2D SALES WITH SURVEY123, OP DASHBOARD, AND MICROSOFT SSAS EDWARD GAUSE, GISP DIRECTOR OF INFORMATION SERVICES (ENGINEERING APPS) HTC (HORRY TELEPHONE COOP.)

2 EDWARD GAUSE, GISP DIRECTOR OF INFORMATION SERVICES ENGINEERING APPLICATIONS 19 YEARS AT HTC BS COMPUTER SCIENCE/MATH WITH GRADUATE LEVEL COURSES IN BUSINESS 10 YEARS IN FIELD ARTILLERY FIRE DIRECTION CONTROL WHERE I LEARN A LOT OF GIS SKILLS PRESIDENT OF HORRY GEORGETOWN GIS USER GROUP SERVE ON ADVISORY BOARDS FOR GIS AT HORRY COUNTY SCHOOLS AAST (APPLIED ARTS SCIENCE AND TECHNOLOGY) AND AT COASTAL CAROLINA UNIVERSITY ESRI TELUG USER GROUP ADVISORY BOARD MEMBER

3 OUTLINE OF PRESENTATION GOALS SURVEY123 & ARCGIS ONLINE OPERATION DASHBOARD & ARCGIS ONLINE EXPLORER & ARCGIS ONLINE REST API SERVICE AND JAVA PROGRAM TO DOWNLOAD DATA TO A LOCAL GEODATABASE ARCMAP AND DIFFERENT POLYGON FEATURE LAYERS GEODATABASE AND JOINING WITH POLYGONS CREATED IN ARCMAP LOADING MS SSAS CUBE FOR ANALYSIS USING OTHER TOOLS

4 GOALS: RECORD THE HOUSES THAT D2D SALES TEAM WENT TO RECORD THE WORK EACH SALES PERSON DID GET MARKETING DATA FOR ANALYSIS GET SOME STATISTIC WE WILL USE FOR SUBDIVISION ANALYSIS LATER IN CUBES UNDERSTAND THE TIME OF DAY D2D IS MOST SUCCESSFUL UNDERSTAND THE TIME OF WEEK AND MONTH D2D IS MOST SUCCESSFUL UNDERSTAND WHERE THE D2D IS MOST SUCCESSFUL ETC

5 WHY WE CHOOSE SURVEY123! WE NEEDED TO KNOW WHERE WE DID THE SURVEY, WHICH SURVEY123 RECORDS LOCATION WE NEEDED A SURVEY PLATFORM THAT WAS EASY TO CARRY AROUND, WHICH SURVEY123 RUNS ON IPHONE, IPAD AND ANDROID PHONES WE NEEDED TO GIVE SALES TEAM MANAGER AND EASY WAY TO TRACK PROGRESS, WHICH OPERATION DASHBOARD DOES EVERYONE CAN ALSO USE ESRI S EXPLORER APP AS WELL TO VIEW THE PROGRESS ALL SALES TEAM MEMBERS ARE UPDATED THE SAME SHARED CLOUD FEATURE, MAKING SHARING EASY

6 We made all the question response be a pick list so Sale Team Member did not have to type. Survey123 allow for IF logic to control if a survey question is asked based off of another question, so Sales Team only asks needed questions.

7 Data collected can be used by Operation Dashboard. We built several graphs and maps to allow for Sales Management to track Sales Team.

8 ESRI s explorer app allowed us to easily see all the D2D Surveys and have different symbologies be available to map.

9 LIMITS OF ARCGIS ONLINE, SURVEY123, OPERATION DASHBOARD, ETC WE DON T HAVE ALL OF OUR DATA IN THE CLOUD ON ARCGIS ONLINE SO JOINING WITH INTERNAL DATA IS IMPOSSIBLE OR HARD TO DO. SOME GRAPHS IN OPERATION DASHBOARD ONLY WORK WITH CERTAIN DATATYPES, SO WE WERE A LITTLE BIT LIMITED. CLOUD SERVICE IS NOT AS EASY TO WORK WITH PROGRAMMATICALLY AS IF IT WAS ON A GEODATABASE

10 HOW DID WE GET THE DATA TO OUR LOCAL GEODATABASE? USED ESRI REST API USED JAVA TO CONNECT TO THE REST SERVICE WRITE DATA THAT WAS PULLED FROM REST TO THE GEODATABASE GEODATABASE IS ON MICROSOFT SQL SERVER THIS PROCESS IS RAN HOURLY ver/0/query

11

12 ARCMAP AND ENGINEERING ENGINEERING GIS TEAM BUILDS POLYGON FEATURE LAYER FOR RATE CENTER ENGINEERING GIS BUILDS POLYGON FEATURE LAYER FOR SUBDIVISIONS ENGINEERING GIS BUILDS POLYGONS FOR THE CONSTRUCTION AREA

13 NOW WE HAVE DATA WE CAN WORK WITH ON THE GEODATABASE! WHAT CAN WE DO? WE CAN JOIN SEVERAL LAYERS TOGETHER TO ANALYZE DATA AGGREGATED BY DIFFERENT POLYGONS OR TO ADD NAME FROM POLYGON FEATURE TO THE D2D FEATURE EXAMPLE FOLLOWS:

14 select tmp.*, ( cast( tmp.nbrsells as float) / cast( tmp.numrecs as float) ) as SuccessRatio, sn2.shape from ( select sn.objectid, sn.subdivisionname, sum( case when d2d.contacttype in ('Follow Up Contact with Presentation', 'Initial Contact with NO Presentation', 'Initial Contact with Presentation', 'Follow Up Contact with NO Presentation' ) then 1 else 0 end ) as 'NumRecs', sum( case when d2d.productsadded = 'Yes' then 1 else 0 end ) as NbrSells from gis.sde.d2dsurveyresultsv2 d2d join gis.sde.boundarysouthernnetwork sn on (sn.shape.stintersects(d2d.shape) = 1) group by sn.objectid, sn.subdivisionname ) as tmp join gis.sde.boundarysouthernnetwork sn2 on (sn2.objectid = tmp.objectid)

15 The query on the last slide creates the following result and we can do the Add Query Layer in ArcMap to see this result:

16 So now by joining the D2D with Subdivisions we were able to see the aggregated results of which communities we have done better in with D2D Sales.

17 SO NOW WITH THE POWER OF JOINING DIFFERENT FEATURES WITH THE ORIGINAL D2D DATA FROM ARCGIS ONLINE WE CAN BUILD A MICROSOFT SSAS CUBE. WE HAVE A NIGHTLY PROCESS THAT BUILDS A FACT TABLE ON THE MICROSOFT SSAS DATABASE. THIS NIGHTLY PROCESS WAS BUILT WITH MICROSOFT SSIS PRODUCT WHICH IS AN ETL (EXTRACTION TRANSFORMATION LANGUAGE) TO MOVE DATA INTO THE FACT TABLE FOR THE CUBE. NEXT 2 SLIDES HAS A SCREEN SHOT OF MICROSOFT TOOLS TO BUILD THE CUBE.

18 Here is where we are moving the data with MS SSIS into the Cube Environment s Fact Table.

19 Here is where we are building a MS SSAS Cube from the D2D data that we pulled to our local geodatabase from the cloud ArcGIS Online datasource.

20 Once you have a Microsoft Cube built in SSAS, you can point Excel to the datasource and then use Excel s PivotTable functions to slice and dice the cube to report on different dimensions of the cube and measurements.

21 Once you have a Microsoft Cube built in SSAS, you can then use it as a datasource in PowerView.

22 While waiting on my team to build the D2D Microsoft Cube, I provided reports using the R programming language against the local geodatabase and created the following charts in about an hour.

23 Because the query shown earlier had the Success Ratio for each Subdivsion, I just needed to add a time of day field to the query, and then I was able to create the above maps to see which locations where more Successful at what time of day. Again I just added as Add Query Layer.

24 LESSONS LEARNED MARKETING AND SALES DID NOT KNOW WHAT THEY WANTED TO COLLECT ON THE FIRST TRY, NOR THE SECOND TRY, YOU CAN T MAKE QUESTION CHANGES TO SURVEY123 ONCE IT IS LIVE SO YOU NEED BUY IN THAT THE FIRST BIT OF DATA YOU COLLECT MAY BE LOST REQUIRED A LOT OF DIFFERENT SKILLS TO PULL THIS PROJECT OFF THIS PROJECT REQUIRED WORKING WITH MORE THAN ONE DEPARTMENT

25 LESSONS LEARNED: ENGINEERING/GIS HAD TO BUILD SUBDIVISION, RATE CENTER AND THE SOUTHERN NETWORK PROJECT AREA FEATURE LAYERS FOR US TO AGGREGATE ON AND INCLUDE NAME FIELD AS DIMENSIONAL DATA FOR D2D SELLS RECORDS.

26 LESSONS LEARNED: MARKETING HAD TO DEFINE THE QUESTIONS FOR THE SURVEY IN A WAY TO REMOVE THE NEED TO TYPE TEXT AND HAD TO IDENTIFY QUESTION THEY WANTED ANSWER FOR.

27 LESSONS LEARNED: D2D SALES TEAM NEED TO DEFINE THEIR NEEDS TO TRACKING THEIR PROGRESS AND HOW THEY WOULD PLAN WHERE TO GO NEXT

28 LESSONS LEARNED: D2D SALES TEAM HAD TO AGREE TO USING SURVEY123 AND OPERATIONS DASHBOARD TO COLLECT DATA

29 LESSONS LEARNED: INFORMATION SERVICES HAD TO GLUE ALL THE PIECES TOGETHER

30 LESSONS LEARNED: FINANCE BUILT THE REPORTS FOR MARKETING, D2D SALES AND EXECUTIVE STAFF USING POWERVIEW AND THE CUBE INFORMATION SERVICES BUILT

31 WHAT S NEXT BUILD MORE CUBES LIKE D2D SALES AND THE CUSTOMER SERVICE COUNTS CUBE WE HAVE. FINANCE PLANS TO INTEGRATE D2D SALES AND CUSTOMER SERVICE COUNTS CUBE USING MS POWERVIEW SETUP ESRI S INSIGHTS PRODUCT TO POINT TO DATA THAT IS IN OUR LOCAL GEODATABASE AND POINT TO THE CUBES SETUP SOME MACHINE LEARNING ALGORITHMS TO DATA MINE THE CUBES AND PROVIDE BUSINESS INTELLIGENCES TO PREDICT PATTERNS

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

Data Aggregation with InfraWorks and ArcGIS for Visualization, Analysis, and Planning Data Aggregation with InfraWorks and ArcGIS for Visualization, Analysis, and Planning Stephen Brockwell President, Brockwell IT Consulting, Inc. Join the conversation #AU2017 KEYWORD Class Summary Silos

More information

ArcGIS Pro Q&A Session. NWGIS Conference, October 11, 2017 With John Sharrard, Esri GIS Solutions Engineer

ArcGIS Pro Q&A Session. NWGIS Conference, October 11, 2017 With John Sharrard, Esri GIS Solutions Engineer ArcGIS Pro Q&A Session NWGIS Conference, October 11, 2017 With John Sharrard, Esri GIS Solutions Engineer jsharrard@esri.com ArcGIS Desktop The applications ArcGIS Pro ArcMap ArcCatalog ArcScene ArcGlobe

More information

GIS Lecture 4: Data. GIS Tutorial, Third Edition GIS 1

GIS Lecture 4: Data. GIS Tutorial, Third Edition GIS 1 GIS Lecture 4: Data GIS 1 Outline Data Types, Tables, and Formats Geodatabase Tabular Joins Spatial Joins Field Calculator ArcCatalog Functions GIS 2 Data Types, Tables, Formats GIS 3 Directly Loadable

More information

Administering your Enterprise Geodatabase using Python. Jill Penney

Administering your Enterprise Geodatabase using Python. Jill Penney Administering your Enterprise Geodatabase using Python Jill Penney Assumptions Basic knowledge of python Basic knowledge enterprise geodatabases and workflows You want code Please turn off or silence cell

More information

GIS for Business Intelligence: Getting Cloud Connected

GIS for Business Intelligence: Getting Cloud Connected GIS for Business Intelligence: Getting Cloud Connected Ed Farrell Director of GIS Solutions, DVG efarrell@dvginteractive.com http://dvginteractive.com October 19 th, 2017 Lake Placid Convention Center

More information

Arcgis Enterprise Performance And Scalability Best Practices

Arcgis Enterprise Performance And Scalability Best Practices Arcgis Enterprise Performance And Scalability Best Practices We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer,

More information

ArcGIS Platform For NSOs

ArcGIS Platform For NSOs ArcGIS Platform For NSOs Applying GIS and Spatial Thinking to Official Statistics Esri UC 2014 Demo Theater Applying GIS at the NSO Generic Statistical Business Process Model (GSBPM) 1 Specify Needs 2

More information

ArcGIS is Advancing. Both Contributing and Integrating many new Innovations. IoT. Smart Mapping. Smart Devices Advanced Analytics

ArcGIS is Advancing. Both Contributing and Integrating many new Innovations. IoT. Smart Mapping. Smart Devices Advanced Analytics ArcGIS is Advancing IoT Smart Devices Advanced Analytics Smart Mapping Real-Time Faster Computing Web Services Crowdsourcing Sensor Networks Both Contributing and Integrating many new Innovations ArcGIS

More information

Geo Business Gis In The Digital Organization

Geo Business Gis In The Digital Organization We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with geo business gis in

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

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

You are Building Your Organization s Geographic Knowledge

You are Building Your Organization s Geographic Knowledge You are Building Your Organization s Geographic Knowledge And Increasingly Making it Available Sharing Data Publishing Maps and Geo-Apps Developing Collaborative Approaches Citizens Knowledge Workers Analysts

More information

An introduction to ArcGIS Maps for Office. Scott Ball & Mike Flanagan

An introduction to ArcGIS Maps for Office. Scott Ball & Mike Flanagan An introduction to ArcGIS Maps for Office Scott Ball & Mike Flanagan Main takeaways for today Adding the where to your analysis You can learn a lot when you unlock the power of geography in your analytics

More information

Embracing ArcGIS Server Technology A City s Balanced Approach

Embracing ArcGIS Server Technology A City s Balanced Approach Embracing ArcGIS Server Technology A City s Balanced Approach Sridhar Katragadda Virginia Johnston Esri UC2013. About the City Virginia Beach Metropolitan Statistical Area (MSA) is the 38th largest in

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

ST-Links. SpatialKit. Version 3.0.x. For ArcMap. ArcMap Extension for Directly Connecting to Spatial Databases. ST-Links Corporation.

ST-Links. SpatialKit. Version 3.0.x. For ArcMap. ArcMap Extension for Directly Connecting to Spatial Databases. ST-Links Corporation. ST-Links SpatialKit For ArcMap Version 3.0.x ArcMap Extension for Directly Connecting to Spatial Databases ST-Links Corporation www.st-links.com 2012 Contents Introduction... 3 Installation... 3 Database

More information

Demystifying ArcGIS Online. Karen Lizcano Esri

Demystifying ArcGIS Online. Karen Lizcano Esri Demystifying ArcGIS Online Karen Lizcano Esri An Integrated Web GIS Platform Desktop Web Device Powered by Services Managed via Portal Access from any Device Portal Server Online Content and Services ArcGIS

More information

Changes in Esri GIS, practical ways to be ready for the future

Changes in Esri GIS, practical ways to be ready for the future Changes in Esri GIS, practical ways to be ready for the future John Sharrard, Esri April 16, 2015 The only thing that is constant is change. Heraclitus, ca. 500 B.C. My story (of experiencing change) Changes

More information

Google Maps and Beyond

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

More information

ArcGIS. for Server. Understanding our World

ArcGIS. for Server. Understanding our World ArcGIS for Server Understanding our World ArcGIS for Server Create, Distribute, and Manage GIS Services You can use ArcGIS for Server to create services from your mapping and geographic information system

More information

ArcGIS Enterprise: What s New. Philip Heede Shannon Kalisky Melanie Summers Sam Williamson

ArcGIS Enterprise: What s New. Philip Heede Shannon Kalisky Melanie Summers Sam Williamson ArcGIS Enterprise: What s New Philip Heede Shannon Kalisky Melanie Summers Sam Williamson ArcGIS Enterprise is the new name for ArcGIS for Server What is ArcGIS Enterprise ArcGIS Enterprise is powerful

More information

GIS ADMINISTRATOR / WEB DEVELOPER EVANSVILLE-VANDERBURGH COUNTY AREA PLAN COMMISSION

GIS ADMINISTRATOR / WEB DEVELOPER EVANSVILLE-VANDERBURGH COUNTY AREA PLAN COMMISSION GIS ADMINISTRATOR / WEB DEVELOPER EVANSVILLE-VANDERBURGH COUNTY AREA PLAN COMMISSION SALARY RANGE INITIATION $43,277 SIX MONTHS $45,367 POSITION GRADE PAT VI The Evansville-Vanderburgh County Area Plan

More information

Update and Modernization of Sales Tax Rate Lookup Tool for Public and Agency Users. David Wrigh

Update and Modernization of Sales Tax Rate Lookup Tool for Public and Agency Users. David Wrigh Update and Modernization of Sales Tax Rate Lookup Tool for Public and Agency Users David Wrigh GIS at the Agency Introduction Who we are! George Alvarado, David Wright, Marty Parsons and Bob Bulgrien make

More information

Map Application Progression

Map Application Progression Map Application Progression Application Migration with Latest ArcGIS by Dean Chiang California Department of Fish and Wildlife What we do at CDFW Hunting and fishing licensing and regulation Conservation

More information

GIS FOR PLANNING. Course Overview. Schedule. Instructor. Prerequisites. Urban Planning 792 Thursday s 5:30-8:10pm SARUP 158

GIS FOR PLANNING. Course Overview. Schedule. Instructor. Prerequisites. Urban Planning 792 Thursday s 5:30-8:10pm SARUP 158 GIS FOR PLANNING Urban Planning 792 Thursday s 5:30-8:10pm SARUP 158 Schedule Class/Lab - SARUP 158 Thursdays 5:30pm - 8:10pm Office Hours - By Appointment Project Ideas - Week 4 Final - 5/10/2018 Instructor

More information

Web GIS: Architectural Patterns and Practices. Shannon Kalisky Philip Heede

Web GIS: Architectural Patterns and Practices. Shannon Kalisky Philip Heede Web GIS: Architectural Patterns and Practices Shannon Kalisky Philip Heede Web GIS Transformation of the ArcGIS Platform Desktop Apps Server GIS Web Maps Web Scenes Layers Web GIS Transformation of the

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

Lesson: Don t Wait For the Storm

Lesson: Don t Wait For the Storm Lesson: Don t Wait For the Storm Developing a GIS for Plaquemines Parish, Louisiana Presented by: Daniel Mellott, GISP Burk Kleinpeter, Inc. Where is Plaquemines Parish? 1998 GIS Feasibility Study User

More information

Houston Plat Tracker puts the GIS in Land Development

Houston Plat Tracker puts the GIS in Land Development Houston Plat Tracker puts the GIS in Land Development Abstract: The Plat Tracker supports Houston's land development approval process. This home grown web-based system includes GIS research tools and a

More information

Introduction to ArcGIS Maps for Office. Greg Ponto Scott Ball

Introduction to ArcGIS Maps for Office. Greg Ponto Scott Ball Introduction to ArcGIS Maps for Office Greg Ponto Scott Ball Agenda What is Maps for Office? Platform overview What are Apps for the Office? ArcGIS Maps for Office features - Visualization - Geoenrichment

More information

Introduction to Portal for ArcGIS. Hao LEE November 12, 2015

Introduction to Portal for ArcGIS. Hao LEE November 12, 2015 Introduction to Portal for ArcGIS Hao LEE November 12, 2015 Agenda Web GIS pattern Product overview Installation and deployment Security and groups Configuration options Portal for ArcGIS + ArcGIS for

More information

GPS Mapping with Esri s Collector App. What We ll Cover

GPS Mapping with Esri s Collector App. What We ll Cover GPS Mapping with Esri s Collector App Part 1: Overview What We ll Cover Part 1: Overview and requirements Part 2: Preparing the data in ArcGIS for Desktop Part 3: Build a web map in ArcGIS Online Part

More information

ArcGIS GeoAnalytics Server: An Introduction. Sarah Ambrose and Ravi Narayanan

ArcGIS GeoAnalytics Server: An Introduction. Sarah Ambrose and Ravi Narayanan ArcGIS GeoAnalytics Server: An Introduction Sarah Ambrose and Ravi Narayanan Overview Introduction Demos Analysis Concepts using GeoAnalytics Server GeoAnalytics Data Sources GeoAnalytics Server Administration

More information

ArcGIS Enterprise: What s New. Philip Heede Shannon Kalisky Melanie Summers Shreyas Shinde

ArcGIS Enterprise: What s New. Philip Heede Shannon Kalisky Melanie Summers Shreyas Shinde ArcGIS Enterprise: What s New Philip Heede Shannon Kalisky Melanie Summers Shreyas Shinde ArcGIS Enterprise is the new name for ArcGIS for Server ArcGIS Enterprise Software Components ArcGIS Server Portal

More information

White Rock Tree Management Silverlight Application. Presented by: Boris Zanic, GIS Specialist Ying Lin, GIS/WEB Technician

White Rock Tree Management Silverlight Application. Presented by: Boris Zanic, GIS Specialist Ying Lin, GIS/WEB Technician White Rock Tree Management Silverlight Application Presented by: Boris Zanic, GIS Specialist Ying Lin, GIS/WEB Technician Land Area 5.28 square km Population in 2011 19,339 Population density 3,500 Median

More information

Introduction to Portal for ArcGIS

Introduction to Portal for ArcGIS Introduction to Portal for ArcGIS Derek Law Product Management March 10 th, 2015 Esri Developer Summit 2015 Agenda Web GIS pattern Product overview Installation and deployment Security and groups Configuration

More information

Datahoods or Data-Driven Neighborhoods. Using GIS to better understand neighborhoods

Datahoods or Data-Driven Neighborhoods. Using GIS to better understand neighborhoods Datahoods or Data-Driven Neighborhoods Using GIS to better understand neighborhoods Who am I? Silas Toms President, Loki Intelligent Corporation Author, ArcPy and ArcGIS (2 editions) Co-Host of the Mappyist

More information

European Location Framework data in the ArcGIS platform

European Location Framework data in the ArcGIS platform European Location Framework data in the ArcGIS platform Presentation to: Author: Date: INSPIRE Conference 2016 Clemens Portele 26 September 2016 Why ELF? Global (e.g. UN GGIM) Regional Europe (INSPIRE

More information

Portal for ArcGIS: An Introduction

Portal for ArcGIS: An Introduction Portal for ArcGIS: An Introduction Derek Law Esri Product Management Esri UC 2014 Technical Workshop Agenda Web GIS pattern Product overview Installation and deployment Security and groups Configuration

More information

No. of Days. Building 3D cities Using Esri City Engine ,859. Creating & Analyzing Surfaces Using ArcGIS Spatial Analyst 1 7 3,139

No. of Days. Building 3D cities Using Esri City Engine ,859. Creating & Analyzing Surfaces Using ArcGIS Spatial Analyst 1 7 3,139 Q3 What s New? Creating and Editing Data with ArcGIS Pro Editing and Maintaining Parcels Using ArcGIS Spatial Analysis Using ArcGIS Pro User Workflows for ArcGIS Online Organizations Q3-2018 ArcGIS Desktop

More information

Census Mapping with ArcGIS

Census Mapping with ArcGIS Census Mapping with ArcGIS Jin Lee, GIS manager at the Lewis Mumford Center and Center for Social and Demographic Analysis Email: jwlee@albany.edu Phone: 442-5402 Quick summary of Day1 http://csda.albany.edu/events-news/gisworkshop_outline_fall_3-1.pdf

More information

Leveraging ArcGIS Server Technology

Leveraging ArcGIS Server Technology Leveraging ArcGIS Server Technology A Local Government Approach Virginia Johnston GIS Systems Analyst Virginia Beach 39 th Largest city in the United States 438,000 Residents City by the Sea Located in

More information

Introduction to Coastal GIS

Introduction to Coastal GIS Introduction to Coastal GIS Event was held on Tues, 1/8/13 - Thurs, 1/10/13 Time: 9:00 am to 5:00 pm Location: Roger Williams University, Bristol, RI Audience: The intended audiences for this course are

More information

SANTA CLARA COUNTY THEMATIC ATLAS

SANTA CLARA COUNTY THEMATIC ATLAS 1 SANTA CLARA COUNTY THEMATIC ATLAS Project Overview Douglas Schenk, GIS Analyst Sampa Patra, GIS Analyst Making the Thematic Atlas 2 Brought to you by the County of Santa Clara Public Health Department,

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

Getting Started with Community Maps

Getting Started with Community Maps Esri International User Conference San Diego, California Technical Workshops July 24, 2012 Getting Started with Community Maps Shane Matthews and Tamara Yoder Topics for this Session ArcGIS is a complete

More information

Geodatabase Best Practices. Dave Crawford Erik Hoel

Geodatabase Best Practices. Dave Crawford Erik Hoel Geodatabase Best Practices Dave Crawford Erik Hoel Geodatabase best practices - outline Geodatabase creation Data ownership Data model Data configuration Geodatabase behaviors Data integrity and validation

More information

Lesson 16: Technology Trends and Research

Lesson 16: Technology Trends and Research http://www.esri.com/library/whitepapers/pdfs/integrated-geoenabled-soa.pdf GEOG DL582 : GIS Data Management Lesson 16: Technology Trends and Research Overview Learning Objective Questions: 1. Why is integration

More information

Leveraging Web GIS: An Introduction to the ArcGIS portal

Leveraging Web GIS: An Introduction to the ArcGIS portal Leveraging Web GIS: An Introduction to the ArcGIS portal Derek Law Product Management DLaw@esri.com Agenda Web GIS pattern Product overview Installation and deployment Configuration options Security options

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

Network Analysis Services in ArcGIS Enterprise. Deelesh Mandloi

Network Analysis Services in ArcGIS Enterprise. Deelesh Mandloi Network Analysis Services in ArcGIS Enterprise Deelesh Mandloi Slides from this demo theater http://esriurl.com/uc17nas Agenda Network Analyst concepts ArcGIS Enterprise publishing workflow - Geoprocessing

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

GIS PORTFOLIO MOHAMED MAGDY MOHAMED HUSSAIN GIS ENGINEER. UWF GIS ONLINE CERTIFICATE GIS Internship (GIS4944)

GIS PORTFOLIO MOHAMED MAGDY MOHAMED HUSSAIN GIS ENGINEER. UWF GIS ONLINE CERTIFICATE GIS Internship (GIS4944) 2012 GIS PORTFOLIO MOHAMED MAGDY MOHAMED HUSSAIN GIS ENGINEER UWF GIS ONLINE CERTIFICATE GIS Internship (GIS4944) Portfolio Table of Contents Subject... Page Personal statement/mission/philosophy... 1

More information

Continental Divide National Scenic Trail GIS Program

Continental Divide National Scenic Trail GIS Program CDNST Vision Statement: Provide the most accurate geospatial locational information of the Continental Divide Trail and nearby resources to the public as well as help provide internal management information

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

Law Enforcement Solutions and Applications

Law Enforcement Solutions and Applications ArcGIS for Solutions and Applications Solutions and Applications ArcGIS for Platform ArcGIS for Collection of solutions and applications for law enforcement. Built on the ArcGIS platform. For any named

More information

Spatial Analysis with Web GIS. Rachel Weeden

Spatial Analysis with Web GIS. Rachel Weeden Spatial Analysis with Web GIS Rachel Weeden Agenda Subhead goes here Introducing ArcGIS Online Spatial Analysis Workflows Scenarios Other Options Resources ArcGIS is a Platform Making mapping and analytics

More information

Sharing GIS to Empower the End User David Wray, Roanoke County, Virginia

Sharing GIS to Empower the End User David Wray, Roanoke County, Virginia Sharing GIS to Empower the End User David Wray, Roanoke County, Virginia Sharing GIS to Empower the End User Roanoke County, Virginia Roanoke County, Virginia Population: 92,901 Area: 251 Square Miles

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

Geography for the 2020 Round of Census

Geography for the 2020 Round of Census Boundaries Key Census Data EA Id Population Male Female EA Id Area EA Id Num HH Avg HH size Geography for the 2020 Round of Census Linda Peters, Esri lpeters@esri.com Integration of Statistical and Geospatial

More information

This paper outlines the steps we took to process the repository file into a Geodatabase Utility Data Model for Bloomfield Township s analysis.

This paper outlines the steps we took to process the repository file into a Geodatabase Utility Data Model for Bloomfield Township s analysis. Title of Paper Importing CAD Drawings into a Utility Data Model Authors Names Kevin G. Broecker & James R. Miller Abstract This presentation covers the process needed to integrate data from a CAD drawing

More information

THE MOUNTAIN RESCUE ASSOCIATION MAPPING PLATFORM

THE MOUNTAIN RESCUE ASSOCIATION MAPPING PLATFORM THE MOUNTAIN RESCUE ASSOCIATION MAPPING PLATFORM Introduction Monty Bell, Mountain Rescue Association Paul Doherty, NAPSG Foundation http://www.napsgfoundation.org/ Jon Pedder Introduction Sierra Madre

More information

Esri Training by Microcenter Prepare to Innovate. Microcenter Course Catalog

Esri Training by Microcenter Prepare to Innovate. Microcenter Course Catalog Esri Training by Microcenter Prepare to Innovate 2015 Instructor-Led Courses Microcenter Course Catalog ArcGIS Foundational Courses Designed to meet the learning needs of professionals whose GIS experience

More information

Comptroller GIS and Property Data. Ken Morrell Assessment Systems Manager Division of Property Assessments February 22, 2007

Comptroller GIS and Property Data. Ken Morrell Assessment Systems Manager Division of Property Assessments February 22, 2007 Comptroller GIS and Property Data Ken Morrell Assessment Systems Manager Division of Property Assessments February 22, 2007 Comptroller Divisions Using and Supporting GIS Office of Local Government Implement

More information

GIS for the Beginner on a Budget

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

More information

The Emerging Role of Enterprise GIS in State Forest Agencies

The Emerging Role of Enterprise GIS in State Forest Agencies The Emerging Role of Enterprise GIS in State Forest Agencies Geographic Information System (GIS) A geographic information system (GIS) is a computer software system designed to capture, store, manipulate,

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

INTRODUCTION TO ARCGIS Version 10.*

INTRODUCTION TO ARCGIS Version 10.* Week 3 INTRODUCTION TO ARCGIS Version 10.* topics of the week Overview of ArcGIS Using ArcCatalog Overview of ArcGIS Desktop ArcGIS Overview Scalable desktop applications ArcView ArcEditor ArcInfo ArcGIS

More information

USING TECHNOLOGY TO SHARE GIS David Wray, Roanoke County, Virginia

USING TECHNOLOGY TO SHARE GIS David Wray, Roanoke County, Virginia USING TECHNOLOGY TO SHARE GIS David Wray, Roanoke County, Virginia Using Technology to Share GIS Roanoke County, Virginia Roanoke County, Virginia Population: 92,901 Area: 251 Square Miles Protected Areas:

More information

GIS Workshop Data Collection Techniques

GIS Workshop Data Collection Techniques GIS Workshop Data Collection Techniques NOFNEC Conference 2016 Presented by: Matawa First Nations Management Jennifer Duncan and Charlene Wagenaar, Geomatics Technicians, Four Rivers Department QA #: FRG

More information

ArcGIS Online Routing and Network Analysis. Deelesh Mandloi Matt Crowder

ArcGIS Online Routing and Network Analysis. Deelesh Mandloi Matt Crowder ArcGIS Online Routing and Network Analysis Deelesh Mandloi Matt Crowder Introductions Who are we? - Members of the Network Analyst development team Who are you? - Network Analyst users? - ArcGIS Online

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

esri.com/apps Copyright 2017 Esri. All rights reserved.

esri.com/apps Copyright 2017 Esri. All rights reserved. ArcGIS Apps esri.com/apps Copyright 2017 Esri. All rights reserved. 159913 G79379 ArcGIS Apps Survey123 for ArcGIS Included with ArcGIS Survey123 for ArcGIS Create survey style forms to capture accurate

More information

Crime Analysis. GIS Solutions for Intelligence-Led Policing

Crime Analysis. GIS Solutions for Intelligence-Led Policing Crime Analysis GIS Solutions for Intelligence-Led Policing Applying GIS Technology to Crime Analysis Know Your Community Analyze Your Crime Use Your Advantage GIS aids crime analysis by Identifying and

More information

ArcGIS Deployment Pattern. Azlina Mahad

ArcGIS Deployment Pattern. Azlina Mahad ArcGIS Deployment Pattern Azlina Mahad Agenda Deployment Options Cloud Portal ArcGIS Server Data Publication Mobile System Management Desktop Web Device ArcGIS An Integrated Web GIS Platform Portal Providing

More information

Introducing GIS analysis

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

More information

Visualizing Big Data on Maps: Emerging Tools and Techniques. Ilir Bejleri, Sanjay Ranka

Visualizing Big Data on Maps: Emerging Tools and Techniques. Ilir Bejleri, Sanjay Ranka Visualizing Big Data on Maps: Emerging Tools and Techniques Ilir Bejleri, Sanjay Ranka Topics Web GIS Visualization Big Data GIS Performance Maps in Data Visualization Platforms Next: Web GIS Visualization

More information

Web GIS in Agriculture Land Use, Crop Management and Planning. Kevin Knapp Bryan Baker, Phd.

Web GIS in Agriculture Land Use, Crop Management and Planning. Kevin Knapp Bryan Baker, Phd. Web GIS in Agriculture Land Use, Crop Management and Planning Kevin Knapp Bryan Baker, Phd. Two Case Studies Two Custom Developed Web Applications Both Integrate different technologies Primary Requirement

More information

Incorporating ArcGIS Pro in your Curriculum

Incorporating ArcGIS Pro in your Curriculum AAG, Boston 2017 April 5, 2017 Incorporating ArcGIS Pro in your Curriculum Geri Miller Agenda Concerns Acknowledged Learning curve ArcGIS Pro does not have all the tools (perception) Licensing and offline

More information

GIS Boot Camp for Education June th, 2011 Day 1. Instructor: Sabah Jabbouri Phone: (253) x 4854 Office: TC 136

GIS Boot Camp for Education June th, 2011 Day 1. Instructor: Sabah Jabbouri Phone: (253) x 4854 Office: TC 136 GIS Boot Camp for Education June 27-30 th, 2011 Day 1 Instructor: Sabah Jabbouri Phone: (253) 833-9111 x 4854 Office: TC 136 Email: sjabbouri@greenriver.edu http://www.instruction.greenriver.edu/gis/ Summer

More information

Geodatabase An Introduction

Geodatabase An Introduction Federal GIS Conference 2014 February 10 11, 2014 Washington DC Geodatabase An Introduction Ralph Denkenberger esri Session Path The Geodatabase - What is it? - Why use it? - What types are there? Inside

More information

No. of Days. ArcGIS 3: Performing Analysis ,431. Building 3D cities Using Esri City Engine ,859

No. of Days. ArcGIS 3: Performing Analysis ,431. Building 3D cities Using Esri City Engine ,859 What s New? Creating Story Maps with ArcGIS Field Data Collection and Management Using ArcGIS Get Started with Insights for ArcGIS Introduction to GIS Using ArcGIS & ArcGIS Pro: Essential Workflow Migrating

More information

No. of Days. ArcGIS Pro for GIS Professionals ,431. Building 3D cities Using Esri City Engine ,859

No. of Days. ArcGIS Pro for GIS Professionals ,431. Building 3D cities Using Esri City Engine ,859 What s New? Creating Story Maps with ArcGIS Field Data Collection and Management Using ArcGIS Get Started with Insights for ArcGIS Introduction to GIS Using ArcGIS & ArcGIS Pro: Essential Workflow Migrating

More information

Esri WebGIS Highlights of What s New, and the Road Ahead

Esri WebGIS Highlights of What s New, and the Road Ahead West Virginia GIS Conference WVU, Morgantown, WV Esri WebGIS Highlights of What s New, and the Road Ahead Mark Scott, Solutions Engineer, Esri Local Government Team May 5 th, 2016 West Virginia GIS Conference

More information

Geo-enabling a Transactional Real Estate Management System A case study from the Minnesota Dept. of Transportation

Geo-enabling a Transactional Real Estate Management System A case study from the Minnesota Dept. of Transportation Geo-enabling a Transactional Real Estate Management System A case study from the Minnesota Dept. of Transportation Michael Terner Executive Vice President Co-author and Project Manager Andy Buck Overview

More information

The Development of Historical Data Visualization a spatiotemporal web application supporting teaching and learning at the Harvard Business School

The Development of Historical Data Visualization a spatiotemporal web application supporting teaching and learning at the Harvard Business School The Development of Historical Data Visualization a spatiotemporal web application supporting teaching and learning at the Harvard Business School Giovanni Zambotti Benjamin Lewis Weihe Wendy Guan* Center

More information

Development of a Web-Based GIS Management System for Agricultural Authorities in Iraq

Development of a Web-Based GIS Management System for Agricultural Authorities in Iraq Development of a Web-Based GIS Management System for Agricultural Authorities in Iraq USCID Water Management Conference Phoenix, Arizona April 18, 2013 Gabriele Bonaiti Extension Program Specialist David

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

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

Your World is not Red or Green. Good Practice in Data Display and Dashboard Design

Your World is not Red or Green. Good Practice in Data Display and Dashboard Design Your World is not Red or Green Good Practice in Data Display and Dashboard Design References Tufte, E. R. (2). The visual display of quantitative information (2nd Ed.). Cheshire, CT: Graphics Press. Few,

More information

Journey to create opportunities in Sierra Leone using Esri s ArcGIS Platform Presented by:

Journey to create opportunities in Sierra Leone using Esri s ArcGIS Platform Presented by: Journey to create opportunities in Sierra Leone using Esri s ArcGIS Platform Presented by: John Clark, Getech Group Plc, on behalf of The Petroleum Directorate Sierra Leone Summary The mission of the Petroleum

More information

The Pace of Change Is Accelerating Creating Many Challenges

The Pace of Change Is Accelerating Creating Many Challenges VISION The Pace of Change Is Accelerating Creating Many Challenges Evidence Threatening Our Natural World and Our Future as Humans Social Conflict Mass Migration Ocean Acidification Food Population Urbanization

More information

Road to GIS, PSE s past, present and future

Road to GIS, PSE s past, present and future Road to GIS, PSE s past, present and future PSE Gas Mapping History 1840 Early 1900 s Gas piping was captured in Field Books which were than converted onto Mylar maps using Pen and Ink. 1955 Washington

More information

Exelis and Esri Technologies for Defense and National Security. Cherie Muleh

Exelis and Esri Technologies for Defense and National Security. Cherie Muleh Exelis and Esri Technologies for Defense and National Security Cherie Muleh Cherie.Muleh@exelisinc.com ENVI IMAGERY AND DATA BECOME KNOWLEDGE > Add information from imagery to your GIS > Automated workflows

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

Enabling Success in Enterprise Asset Management: Case Study for Developing and Integrating GIS with CMMS for a Large WWTP

Enabling Success in Enterprise Asset Management: Case Study for Developing and Integrating GIS with CMMS for a Large WWTP Enabling Success in Enterprise Asset Management: Case Study for Developing and Integrating GIS with CMMS for a Large WWTP Allison Blake, P.E. 1*, Matthew Jalbert, P.E. 2, Julia J. Hunt, P.E. 2, Mazen Kawasmi,

More information

Office of Technology Partnerships GIS Collaboration

Office of Technology Partnerships GIS Collaboration Office of Technology Partnerships GIS Collaboration State GIS Update April 21, 2017 Mark Holmes, GISP Outline MGF Upgrade Project Census Programs Imagery Update LiDAR Update Open Discussion 2 MGF Background

More information

Oakland County Parks and Recreation GIS Implementation Plan

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

More information

Why GIS & Why Internet GIS?

Why GIS & Why Internet GIS? Why GIS & Why Internet GIS? The Internet bandwagon Internet mapping (e.g., MapQuest) Location-based services Real-time navigation (e.g., traffic) Real-time service dispatch Business Intelligence Spatial

More information

Portal for ArcGIS: An Introduction. Catherine Hynes and Derek Law

Portal for ArcGIS: An Introduction. Catherine Hynes and Derek Law Portal for ArcGIS: An Introduction Catherine Hynes and Derek Law Agenda Web GIS pattern Product overview Installation and deployment Configuration options Security options and groups Portal for ArcGIS

More information