Writing Space-Time Point Data To KML

Size: px
Start display at page:

Download "Writing Space-Time Point Data To KML"

Transcription

1 Writing Space-Time Point Data To KML Barry Rowlingson December 3, Introduction KML is a file format for vector map data such as points, lines and polygons. It has come to wide use since the rise of Google Earth as a map data viewer, and is now an OGC standard file format. This makes it easy for other software to to read and write KML files. However, KML is a very rich format and can do a lot of interesting things with the data. This makes it hard for software to implement the export functionality to create KML files that do exactly what you want. Fortunately KML is an XML format, and so it is easy to create from any programming language that can do a bit of text manipulation. In this report I show how to create a KML file of space-time points from R that can be imported into Google Earth and used in an animation. 2 KML File Format Definition The OGC standard documents are available from org/standards/kml, and Google s slightly friendlier documentation is online at A simple KML document for a single point with a begin and end date looks like this: <?xml version="1.0" encoding="utf-8"?> <kml xmlns=" <Document> <Folder> <name>simple Dataset</name> <open>1</open> <description> Here are some points </description> <Placemark> <Name>point-1</Name> <Point> 1

2 <coordinates> , ,0</coordinates> </Point> <TimeSpan> <begin> </begin> <end> </end> </TimeSpan> </Placemark> </Folder></Document> </kml> This generates KML with one point at those lat-long coordinates with the given begin and end date. What is needed is a function that takes a number of points and creates a file with all the points in <Placemark> sections. 3 Export Function Walkthrough The function will take three compulsory arguments giving the coordinates and beginning time points. It will have defaults for everything else which the user can override: stkml <- function(x,y,start,len=1, names=paste("point-",1:npts,sep=""), title="r Output",description="Some points from R", template, output=stdout()){ The x and y arguments are vectors of longitude and latitude coordinates as decimal numbers. The point events start at the time in the start argument, which should be a vector of R Date objects. The duration of the events is given by len, which defaults to one day, but can be a vector if all the events have different durations. To generate the KML it could use R s cat and paste functions to string everything together, but this makes for very messy code. I have used the brew package which enables you to write a clear template and embed loops and variable substitutions: require(brew) Next we get the number of points (further error checking here could test the lengths of the other arguments) and compute the end times of the events. The starts and ends are then formatted as dates in the right format for KML files: npts = length(x) end = start + as.difftime(len,units="days") start = format(start,"%y-%m-%d") end = format(end,"%y-%m-%d") 2

3 To enable some flexibility the function includes a simple template but lets the user specify an external file for more customisation: if(missing(template)){ template = '<?xml version="1.0" encoding="utf-8"?> <kml xmlns=" <Document> <Folder> <name><%=title%></name> <open>1</open> <description> <%=description%> </description> <% for(i in 1:npts){ %> <Placemark> <name><%=names[i]%></name> <Point> <coordinates><%=x[i]%>,<%=y[i]%>,0</coordinates> </Point> <TimeSpan><begin><%=start[i]%></begin><end><%=end[i]%></end></TimeSpan> </Placemark> <% } %> </Folder></Document> </kml> ' brew(text = template, output=output) }else{ brew(file = template, output=output) } } 4 Usage A simple test function was written to illustrate the function. This generates points within a box on a random day in June, Two KML files are written, one to test the fixed-length event code, and one to test the variable-length event code: tests <- function(n=50){ xyt <- function(n){ data.frame(x=runif(n, , ), y=runif(n, , ), t=as.date( paste(2008,7,sample(30,n,replace=true),sep="/"), format = "%Y/%m/%d")) } 3

4 } a = xyt(n);b=xyt(n) stkml(a$x,a$y,a$t,output="test1.kml", title="rescues", description="locations of Rescues in June" ) dur = sample(10,n,replace=true) stkml(b$x,b$y,b$t,dur,output="test2.kml", title="fires", description="fires occurred here") The two KML files created can be loaded into Quantum GIS and styled to produce a pretty map: They can also be loaded into Google Earth and viewed using the animation slider: 4

5 By right-clicking on the layer it is possible to access the style of the points and change the icon to get something like this: To do further styling, it will be necessary to write a brew template file similar to the one embedded in the function and to specify that as an argument. For example, to produce KML with points styled with the fire icon, create styledfire.brew in a text editor like this: 5

6 <?xml version="1.0" encoding="utf-8"?> <kml xmlns=" <Document> <Style id="fire"> <IconStyle> <Icon> <href> </Icon> </IconStyle> </Style> <Folder> <name><%=title%></name> <open>1</open> <description> <%=description%> </description> <% for(i in 1:npts){ %> <Placemark> <styleurl>#fire</styleurl> <Name><%=names[i]%></Name> <Point> <coordinates><%=x[i]%>,<%=y[i]%>,0</coordinates> </Point> <TimeSpan><begin><%=start[i]%></begin><end><%=end[i]%></end></TimeSpan> </Placemark> <% } %> </Folder></Document> </kml> And then, given the data in x, y, t and dur, run stkml like this: > stkml(x,y,t,dur,output="fires.kml",title="fires", description="fires occurred here", template="styledfire.brew") For more customisation, check the KML documentation or find examples of KML files that do what you want to do and read the source. 6

Road maps. Introduction. Structure

Road maps. Introduction. Structure Road maps Introduction This service let you embed interactive maps in your website (à la Google maps). You can customize map by displaying data in overlays You can create your own overlays. Structure To

More information

Google Earth. Tutorials. Tutorial 2: Annotating Google Earth

Google Earth. Tutorials. Tutorial 2: Annotating Google Earth Google Earth Tutorials Tutorial 2: Annotating Google Earth Google Earth makes it easy to create a map with annotations - you can add placemarks (points), paths (lines), polygons in Google Earth, and add

More information

Google Earth II: Create a tour with Google Earth

Google Earth II: Create a tour with Google Earth Google Earth II: Create a tour with Google Earth This workshop is a continuation of The Google Earth Workshop I: Map-making Basics. You will create a tour to show the main and satellite campuses of the

More information

Easy Mapping with Google

Easy Mapping with Google Easy Mapping with Google Applications: Mapping is a great way for students to visualize spatial information to help them develop analytical abilities or conduct research. With Google Maps, it is easy to

More information

Interfacing R. Thomas Lumley Ken Rice. UW Biostatistics. Seattle, June 2008

Interfacing R. Thomas Lumley Ken Rice. UW Biostatistics. Seattle, June 2008 Interfacing R Thomas Lumley Ken Rice UW Biostatistics Seattle, June 2008 Interfacing R With Bioconductor, R can do a huge proportion of the analyses you ll want but not everything Intensive (or anachronistic)

More information

Google Earth Tutorial 1: The Basics of Map-making in Google Earth 6.2

Google Earth Tutorial 1: The Basics of Map-making in Google Earth 6.2 Google Earth Tutorial 1: The Basics of Map-making in Google Earth 6.2 University of Waterloo Map Library, 2012 Part 1: Placemarks 1. Locating a Geographical Area a. Open up Google Earth. b. In the Search

More information

Interfacing R. Thomas Lumley Ken Rice. UW Biostatistics. Seattle, June 2009

Interfacing R. Thomas Lumley Ken Rice. UW Biostatistics. Seattle, June 2009 Interfacing R Thomas Lumley Ken Rice UW Biostatistics Seattle, June 2009 Interfacing R With Bioconductor, R can do a huge proportion of the analyses you ll want but not everything Intensive (or anachronistic)

More information

STEP-BY-STEP GUIDE FOR SETTING UP A SPECIES TREE DIFFUSION ANALYSIS IN BEAST

STEP-BY-STEP GUIDE FOR SETTING UP A SPECIES TREE DIFFUSION ANALYSIS IN BEAST STEP-BY-STEP GUIDE FOR SETTING UP A SPECIES TREE DIFFUSION ANALYSIS IN BEAST CONTENTS GENERAL INFORMATION AND DISCLAIMER. 2 DEFINING SPECIES DISTRIBUTIONS AS POLYGONS. 3 TRANSLATING SPECIES DISTRIBUTIONS

More information

Using Google Earth. Middlebury College Library and Information Services

Using Google Earth. Middlebury College Library and Information Services Using Google Earth Middlebury College Introduction: While Google Earth can be a fun tool for simply looking at the surface of the earth, there are many other more sophisticated features to explore. Google

More information

CS4HS#workshop! Google&maps!!!

CS4HS#workshop! Google&maps!!! CS4HS#workshop! Google&maps!!!!!!! Developed!by!Claire!Hocking!! Class/Individual Project - Teacher Setup Prior to setting the homework Create 4 spreadsheets that are shared between all students in the

More information

Data Visualization Techniques with Google Earth

Data Visualization Techniques with Google Earth Data Visualization Techniques with Google Earth E-Learning for the GIS Professional Any Time, Any Place! geospatialtraining.com Course Outline Module 1: Google Earth Pro Fundamentals Module 2: Adding Features

More information

10. Interfacing R. Thomas Lumley Ken Rice. Universities of Washington and Auckland. Seattle, July 2016

10. Interfacing R. Thomas Lumley Ken Rice. Universities of Washington and Auckland. Seattle, July 2016 10. Interfacing R Thomas Lumley Ken Rice Universities of Washington and Auckland Seattle, July 2016 Interfacing R With Bioconductor, R can do a huge proportion of the analyses you ll want but not everything;

More information

Google Earth Pro: A tutorial

Google Earth Pro: A tutorial Google Earth Pro: A tutorial 1 OVERVIEW As of early 2015, Google Earth Pro, which used to be a $400 product, is now free. This is a powerful yet simple tool for viewing information geographically whether

More information

Instructions for Getting Data into Google Earth

Instructions for Getting Data into Google Earth Instructions for Getting Data into Google Earth 21/10/14 1. Making simple placemarks in Google Earth from an Excel table An excel sheet can be set up with lat/long data and then put through a website like

More information

PlaceMap. Accommodation. Slide 1

PlaceMap. Accommodation.   Slide 1 PlaceMap for Accommodation Slide 1 PlaceMap Using the power of Google Earth to store and display all of your spatial data in a much more dynamic way Google Earth is a free software program that lets you

More information

Tutorial for Importing Open Green Map Sites into Google Earth

Tutorial for Importing Open Green Map Sites into Google Earth Tutorial for Importing Open Green Map Sites into Google Earth Step 1. Download your Open Green Map data files by logging in on Open Green Map and viewing your map(s). Choose the Import/Export tab over

More information

Rainforest Alliance. Spatial data requirements and guidance. June 2018 Version 1.1

Rainforest Alliance. Spatial data requirements and guidance. June 2018 Version 1.1 Rainforest Alliance Spatial data requirements and guidance June 2018 Version 1.1 More information? For more information about the Rainforest Alliance, visit www.rainforest-alliance.org or contact info@ra.org

More information

ATNS. USING Google EARTH. Version 1

ATNS. USING Google EARTH. Version 1 ATNS USING Google EARTH Version 1 ATNS/HO/Using Google Earth Page 1 25/04/2013 CONTENTS 1. BASIC SETUP 2. NAVIGATING IN GOOGLE EARTH 3. ADDING OBJECTS TO GOOGLE EARTH 4. USER HELP REFERENCES ATNS/HO/Using

More information

Accessing OGC Services To access OGC WMS and WFS open the service in the directory that you want to consume, and click on either WMS or WFS.

Accessing OGC Services To access OGC WMS and WFS open the service in the directory that you want to consume, and click on either WMS or WFS. Using Web Services Web Services Overview This user guide contains instructions on how to consume a range of services through a range of both web based and desktop GIS applications. Web services are a live

More information

GSA Supplemental Data item Appendices A through C APPENDIX A

GSA Supplemental Data item Appendices A through C APPENDIX A Appendices A through C APPENDIX A 1. Generic attribute table in ArcPAD for collection of point data Below is an image of a typical ArcGIS attribute table to collect point data (lithology, orientation)

More information

Getting Started with TerraExplorer for Web

Getting Started with TerraExplorer for Web Getting Started with TerraExplorer for Web Version 7.0.0 Skyline Software Systems Inc. Information contained in this document is subject to change without notice and does not represent a commitment on

More information

The main differences with other open source reporting solutions such as JasperReports or mondrian are:

The main differences with other open source reporting solutions such as JasperReports or mondrian are: WYSIWYG Reporting Including Introduction: Content at a glance. Create A New Report: Steps to start the creation of a new report. Manage Data Blocks: Add, edit or remove data blocks in a report. General

More information

BC is 94% public land. That requires a lot of mapping and makes the province a major data producer..

BC is 94% public land. That requires a lot of mapping and makes the province a major data producer.. About British Columbia BC is big - almost twice the area of Spain (95 000 000 ha vs 50 500 000 ha) - larger than the states of Washington, Oregon, and California combined - spans five UTM zones BC is 94%

More information

6. XML. Thomas Lumley Ken Rice. Universities of Washington and Auckland. Seattle, July 2012

6. XML. Thomas Lumley Ken Rice. Universities of Washington and Auckland. Seattle, July 2012 6. XML Thomas Lumley Ken Rice Universities of Washington and Auckland Seattle, July 2012 Complex text data XML is a format for constructing and describing data formats for plain text data. HTML (almost)

More information

Augmented Reality, Google Earth and Tcl/Tk. Steve Landers and David Roseman. Abstract

Augmented Reality, Google Earth and Tcl/Tk. Steve Landers and David Roseman.  Abstract Augmented Reality, Google Earth and Tcl/Tk Steve Landers and David Roseman steve@digitalsmarties.com dlr@eolas.com Abstract This paper will describe the implementation of an augmented reality simulation

More information

A Macro that Creates U.S Census Tracts Keyhole Markup Language Files for Google Map Use

A Macro that Creates U.S Census Tracts Keyhole Markup Language Files for Google Map Use Paper 2418-2018 A Macro that Creates U.S Census Tracts Keyhole Markup Language Files for Google Map Use ABSTRACT Ting Sa, Cincinnati Children s Hospital Medical Center This paper introduces a macro that

More information

Software Engineering Large Practical. Stephen Gilmore School of Informatics October 9, 2017

Software Engineering Large Practical. Stephen Gilmore School of Informatics October 9, 2017 Software Engineering Large Practical Stephen Gilmore School of Informatics October 9, 2017 About the Software Engineering Large Practical The Software Engineering Large Practical is a programming practical

More information

RAPIDMAP Geocortex HTML5 Viewer Manual

RAPIDMAP Geocortex HTML5 Viewer Manual RAPIDMAP Geocortex HTML5 Viewer Manual This site was developed using the evolving HTML5 web standard and should work in most modern browsers including IE, Safari, Chrome and Firefox. Even though it was

More information

Google Maps Mashups WORKSHOP. Jeff Blossom, Senior GIS Specialist Center for Geographic Analysis. Harvard University gis.harvard.

Google Maps Mashups WORKSHOP. Jeff Blossom, Senior GIS Specialist Center for Geographic Analysis. Harvard University gis.harvard. Google Maps Mashups WORKSHOP Jeff Blossom, Senior GIS Specialist Center for Geographic Analysis Harvard University gis.harvard.edu Fall, 2012 Objectives: Workshop objectives and flow 1) In 2 hour, hands

More information

Geocoding Crashes in Limbo Carol Martell and Daniel Levitt Highway Safety Research Center, Chapel Hill, NC

Geocoding Crashes in Limbo Carol Martell and Daniel Levitt Highway Safety Research Center, Chapel Hill, NC Paper RIV-09 Geocoding Crashes in Limbo Carol Martell and Daniel Levitt Highway Safety Research Center, Chapel Hill, NC ABSTRACT In North Carolina, crash locations are documented only with the road names

More information

Data to App: Web,Tablet and Smart Phone Duane Griffith, Montana State University,

Data to App: Web,Tablet and Smart Phone Duane Griffith, Montana State University, Data to App: Web,Tablet and Smart Phone Duane Griffith, Montana State University, griffith@montana.edu This tutorial is broken into several steps related mostly to the technology applied at each step.

More information

Oracle Spatial Users Conference

Oracle Spatial Users Conference April 2006 April 27, 2006 Tampa Convention Center Tampa, Florida, USA April 2006 Michael Smith Physical Scientist Remote Sensing/GIS Center of Expertise Army Corps of Engineers Engineer Research & Development

More information

GOOGLE EARTH TIMESPAN

GOOGLE EARTH TIMESPAN UCLA DIGITAL HUMANITIES HOW TO USE GOOGLE EARTH TIMESPAN Updated 2013 UCLA E. SULLIVAN INTRODUCTION Often times in Cultural Digital Mapping, the topic of study has associated dates. That is, the 3-D spatial

More information

Partnership for the East Asian-Australasian Flyway. Site Boundaries in Google Earth & Google Maps. Using Google Maps

Partnership for the East Asian-Australasian Flyway. Site Boundaries in Google Earth & Google Maps. Using Google Maps Partnership for the East Asian-Australasian Flyway Site Boundaries in Google Earth & Google Maps It is often easy to draw boundaries in order to standardise site coverage and help monitor the correct area

More information

Google Earth: Significant Places in Your Life Got Maps? Workshop June 17, 2013

Google Earth: Significant Places in Your Life Got Maps? Workshop June 17, 2013 Google Earth: Significant Places in Your Life Got Maps? Workshop June 17, 2013 1. Open Google Earth. 2. Familiarize yourself with Google Earth s navigational features by zooming into Furman s campus, your

More information

CLEARINGHOUSE EXERCISE PARTICIPATION DIRECTIONS: XCHANGECORE CONNECTOR FOR AGOL

CLEARINGHOUSE EXERCISE PARTICIPATION DIRECTIONS: XCHANGECORE CONNECTOR FOR AGOL Ardent Sentry 15 (DOD)/California Capstone 15 (CalOES)/ SoCal Ex 15 (FEMA) CLEARINGHOUSE EXERCISE PARTICIPATION DIRECTIONS: XCHANGECORE CONNECTOR FOR AGOL Rosinski, Anne@conservation.ca.gov WHAT DOES PARTICIPATION

More information

2) Make sure that the georeferencing extension is on by right-clicking in the task bar area and selecting Georeferencing

2) Make sure that the georeferencing extension is on by right-clicking in the task bar area and selecting Georeferencing HGIS Workshop Module 1 Georeferencing Large Scale Scanned Historical Maps Objective: Learn the Principles of Georeferencing 1) In ArcMap, open the project 01 data\arcdata_10_1\arcdata\toronto\georeference.mxd

More information

Guide to Mapping Website (Public) December 2016 GC_236594

Guide to Mapping Website (Public) December 2016 GC_236594 Guide to Mapping Website (Public) December 2016 GC_236594 Table of Contents Guide to Mapping Website (Public)... 1 December 2016... 1 Quick Start... 3 Map Layers... 4 How do I?... 5 Draw on the Map...

More information

Major features Support multi-language Automatically match photo and GPS tracks by time synchronization. Add photo comments.

Major features Support multi-language Automatically match photo and GPS tracks by time synchronization. Add photo comments. Users Manual V1.1 Users Manual Major features Read GPS log from device Add Photo and photo management Auto match photo and waypoints in tracks Shift photo time View in Google earth Save as kmz file GeoTag

More information

Reading and writing files Practical Computing for Biologists

Reading and writing files Practical Computing for Biologists Reading and writing files Practical Computing for Biologists Chapter 10 (2nd half) Peter Brooks Jan 13 2012 Chapter 10 topics illustrated by transforming a text file into a Google Earth.kml file Dive Date

More information

Viewer Features. DataBC Mashup Framework (DMF)

Viewer Features. DataBC Mashup Framework (DMF) Viewer Features DataBC Mashup Framework (DMF) Copyright 2014 Ministry of Labour, Citizens' Services and Open Government All Rights Reserved. Printed in Canada The information contained in this document

More information

Excel To KML - Display Excel files on Google Earth.

Excel To KML - Display Excel files on Google Earth. Page 1 of 6 Earth Point Real Estate Home Introduction Q & A County Records Property Search County GIS Utilities Township & Range Excel To KML Around Town Press Blog About Local Homes, Global View Home

More information

Completing Baseline s Site Survey Request Form

Completing Baseline s Site Survey Request Form Completing Baseline s Site Survey Request Form The first step in successfully implementing a radio network for your irrigation controllers is to identify the proposed locations for each radio. These radios

More information

Google Earth Maps. Creating an Outdoor Location Using Google Earth. Understanding Geographical Coordinates for Google Earth CHAPTER

Google Earth Maps. Creating an Outdoor Location Using Google Earth. Understanding Geographical Coordinates for Google Earth CHAPTER CHAPTER 18 Within Monitor >, you can create an outdoor location, import a file, view Google Earth maps, and specify Google Earth settings. Creating an Outdoor Location Using Google Earth Importing a File

More information

This user guide covers select features of the desktop site. These include:

This user guide covers select features of the desktop site. These include: User Guide myobservatory Topics Covered: Desktop Site, Select Features Date: January 27, 2014 Overview This user guide covers select features of the desktop site. These include: 1. Data Uploads... 2 1.1

More information

Google Earth an introduction

Google Earth an introduction Luana Valentini InternetGIS course - 2011 Google Earth an introduction Google Earth combines the power of Google Search with satellite imagery, maps, terrain and 3D buildings to put the world's geographic

More information

ArcMap and Google Earth

ArcMap and Google Earth ArcMap and Google Earth Prepared by Andrew Hobby CVEN 658 November 25, 2008 Contents: Brief Overview of Google Earth Goals of Exercise Computer and Data Requirements Procedure: 1. Creating a KML File 2.

More information

Working with Google Earth

Working with Google Earth Working with Google Earth The Places panel in Google Earth serves as a repository to bookmark locations that you want easy access to. There are two folders located in Places: My Places and Temporary Places.

More information

Using KML files as encoding standard to explore locations, access and. display data in Google Earth

Using KML files as encoding standard to explore locations, access and. display data in Google Earth Using KML files as encoding standard to explore locations, access and display data in Google Earth A Technical Paper Presented in Partial Fulfillment of the Requirements for the Degree Master of Science

More information

GOSAT Tools Installation and Operation Manual

GOSAT Tools Installation and Operation Manual GOSAT Tools Installation and Operation Manual May 2018 NIES GOSAT Project Table of Contents 1. Introduction... 1 1.1 Overview... 2 1.2 System Requirements... 3 2. Installing... 4 2.1 Location Data of Validation

More information

Overview of the EMF Refresher Webinar Series. EMF Resources

Overview of the EMF Refresher Webinar Series. EMF Resources Overview of the EMF Refresher Webinar Series Introduction to the EMF Working with Data in the EMF viewing & editing Inventory Data Analysis and Reporting 1 EMF User's Guide EMF Resources http://www.cmascenter.org/emf/internal/guide.html

More information

Create Geomark in Google Earth Tutorial

Create Geomark in Google Earth Tutorial Create Geomark in Google Earth Tutorial General business example a potential applicant / user wants to create an area of interest that can be shared electronically to another party eg: another agency,

More information

Lost in Space. Introduction. Step 1: Animating a spaceship. Activity Checklist. You are going to learn how to program your own animation!

Lost in Space. Introduction. Step 1: Animating a spaceship. Activity Checklist. You are going to learn how to program your own animation! Lost in Space Introduction You are going to learn how to program your own animation! Step 1: Animating a spaceship Let s make a spaceship that flies towards the Earth! Activity Checklist Start a new Scratch

More information

Lost in Space. Introduction. Scratch. You are going to learn how to program your own animation! Activity Checklist.

Lost in Space. Introduction. Scratch. You are going to learn how to program your own animation! Activity Checklist. Scratch 1 Lost in Space Introduction You are going to learn how to program your own animation! Activity Checklist Test your Project Save your Project Follow these INSTRUCTIONS one by one Click on the green

More information

Online National Mosquito Surveillance Database. User Guide

Online National Mosquito Surveillance Database. User Guide Online National Mosquito Surveillance Database User Guide Version 4 Updated November 2018 Contents Introduction... 3 Database Operation... 3 Access... 3 Users... 3 New Users... 4 Logging In... 4 Entering

More information

Metview 4 ECMWF s next generation meteorological workstation

Metview 4 ECMWF s next generation meteorological workstation Metview 4 ECMWF s next generation meteorological workstation Iain Russell Graphics Section ECMWF Slide 1 21 st EGOWS, Reading, 1 4 June 2010 1 What is Metview? (1) Working environment for Operational and

More information

Area of Interest (AOI) to KML

Area of Interest (AOI) to KML Area of Interest (AOI) to KML The Integrated Land & Resource Registry (ILRR) offers a bit more functionality for Keyhole Markup Language (KML) creation and usage than Mineral Titles Online (MTO). Both

More information

Using Google Earth Pro

Using Google Earth Pro Using Google Earth Pro (v7.3.2) University of Toronto Mississauga Library Hazel McCallion Academic Learning Centre October 2018 FURTHER ASSISTANCE If you have questions or need assistance contact Tanya

More information

Table JESSICA MILLER WCLS COORDINATOR

Table JESSICA MILLER WCLS COORDINATOR Google Fusion Table JESSICA MILLER WCLS COORDINATOR JMILLER@CITLIB.ORG Purpose Google Fusion Tables is a data management tool that allows you to come to new conclusions about your data by seeing it in

More information

IPligence and Microsoft SQL how-to guide

IPligence and Microsoft SQL how-to guide IPligence and Microsoft SQL how-to guide **IPligence assumes no liability whatsoever for any loss, damage or destruction caused by the use of the information and instructions obtained from this guide.

More information

FastKML Documentation

FastKML Documentation FastKML Documentation Release dev Christian Ledermann & Ian Lee Oct 04, 2017 Contents 1 Rationale 3 1.1 Quickstart................................................ 3 1.2 Installation................................................

More information

Creating Templates For Letterheads, Fax Cover Sheets, and More

Creating Templates For Letterheads, Fax Cover Sheets, and More Creating Templates For Letterheads, Fax Cover Sheets, and More This document provides instructions for creating and using templates in Microsoft Word. Opening Comments A template is a type of document

More information

Instructions: Turning Your Spreadsheet of Information into a Google Earth Layer

Instructions: Turning Your Spreadsheet of Information into a Google Earth Layer Instructions: Turning Your Spreadsheet of Information into a Google Earth Layer 1. Log into your igoogle account. 2. On a separate tab or internet window, open the blog http://fonvillegk12.blogspot.com.

More information

Second Summer School on Digital Tools for Humanists. Instructions for the hands-on tutorial on GIS

Second Summer School on Digital Tools for Humanists. Instructions for the hands-on tutorial on GIS Second Summer School on Digital Tools for Humanists Instructions for the hands-on tutorial on GIS Augusto Ciuffoletti Dipartimento di Informatica - Università di Pisa Pisa - June 2018 Abstract This document

More information

Exposing Manitoba Highway Conditions in Google Earth. ... Shawn Cruise. Manitoba Infrastructure and Transportation.

Exposing Manitoba Highway Conditions in Google Earth. ... Shawn Cruise. Manitoba Infrastructure and Transportation. Exposing Manitoba Highway Conditions in Google Earth................... Shawn Cruise Manitoba Infrastructure and Transportation shawn.cruise@gov.mb.ca About RoadInfo Provides current information to the

More information

Part 2: Build your own Map Tour with ArcGIS Online

Part 2: Build your own Map Tour with ArcGIS Online Part 2: Build your own Map Tour with ArcGIS Online Tutorial Overview In this tutorial, students will create and publish their own Map Tour application, a type of Story Map Web application, through ArcGIS

More information

In this exercise you will display the Geo-tagged Wikipedia Articles Fusion Table in Google Maps.

In this exercise you will display the Geo-tagged Wikipedia Articles Fusion Table in Google Maps. Introduction to the Google Maps API v3 Adding a Fusion Table to Google Maps Fusion Tables, still in the experimental stages of development, is a Google product that allows you to upload and share data

More information

Downloading and Repairing Data

Downloading and Repairing Data Overview In this exercise you will find and download spatial data for the town of Lowville in Lewis County, New York. The general idea of the exercise has changed from one of simply downloading data and

More information

Google FusionTables for Global Health User Manual

Google FusionTables for Global Health User Manual Google FusionTables for Global Health User Manual Version: January 2015 1 1. Introduction... 3 Use Requirements... 3 Video Tutorials... 3 2. Getting started with Google FusionTables... 4 2.1. Setup...

More information

Overview. Setting Up. Geospatial Centre University of Waterloo May 2014

Overview. Setting Up. Geospatial Centre University of Waterloo May 2014 Overview ArcGIS Online is a web-based mapping and app-building site created by Esri, the world leader in GIS software. In an effort to empower users of all levels to create interactive maps and applications

More information

Dataset2: Fleurac. Contents. Using a dataset containing geo-tags Getting familiar with spatial reference systems Advanced features

Dataset2: Fleurac. Contents. Using a dataset containing geo-tags Getting familiar with spatial reference systems Advanced features Dataset2: Fleurac Using a dataset containing geo-tags Getting familiar with spatial reference systems Advanced features Contents 1. Creating a new project... 2 2. Importing your data... 3 3. Checking the

More information

Terratype Umbraco Multi map provider

Terratype Umbraco Multi map provider Terratype Umbraco Multi map provider Installation Installing via Nuget This Umbraco package can be installed via Nuget The first part is the Terratype framework, which coordinates the different map providers,

More information

Software Engineering Large Practical

Software Engineering Large Practical Software Engineering Large Practical Stephen Gilmore (Stephen.Gilmore@ed.ac.uk) School of Informatics September 21, 2016 About The Software Engineering Large Practical is a 20 point Level 9 course which

More information

Code Autocomplete Manual

Code Autocomplete Manual Code Autocomplete Manual Release 2.0.0 Jacques Lucke July 02, 2016 Contents 1 Setup 3 1.1 Installation................................................ 3 1.2 Check the Installation..........................................

More information

Tutorial on Getting Started. Section 1 Getting started All users read this section 2

Tutorial on Getting Started. Section 1 Getting started All users read this section 2 Tutorial on Getting Started Section 1 Getting started All users read this section 2 Section 2 Exploring the database as a GUEST Recommended that all new users read this demonstration section to become

More information

PointMarker for ipad (version 1.2.1)

PointMarker for ipad (version 1.2.1) (version 1.2.1) Last Revision: September 2014 Introduction This tutorial was designed to introduce users to the new ipad app, PointMarker. The app allows users to log and annotate locations of interest.

More information

Introduction to using QGIS for Archaeology and History Workshop by the Empirical Reasoning Center

Introduction to using QGIS for Archaeology and History Workshop by the Empirical Reasoning Center Introduction to using QGIS for Archaeology and History Workshop by the Empirical Reasoning Center In this workshop, we will cover the basics of working with spatial data, as well as its main uses for archaeology.

More information

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University. LAB EXERCISE 1: Basic Mapping in ArcMap

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University. LAB EXERCISE 1: Basic Mapping in ArcMap Harvard University Introduction to ArcMap Geographical Information Systems Institute Center for Geographic Analysis, Harvard University LAB EXERCISE 1: Basic Mapping in ArcMap Individual files (lab instructions,

More information

Homework Project #1. Math 365

Homework Project #1. Math 365 Homework Project # Math 365 For this homework, you are asked to write several files to disk using the function write file. For example, to save an array v to the file mysoln.out, use the command write_file(v,

More information

Barchard Introduction to SPSS Marks

Barchard Introduction to SPSS Marks Barchard Introduction to SPSS 22.0 3 Marks Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data

More information

TUTORIAL TO CREATE AOI POLYGONS IN GOOGLE EARTH PRO

TUTORIAL TO CREATE AOI POLYGONS IN GOOGLE EARTH PRO TUTORIAL TO CREATE AOI POLYGONS IN GOOGLE EARTH PRO 1: You will need GoogleEarth Pro (freeware) to generate your Area of Interest (AOI). You can get a copy of GoogleEarth Pro from the link provided below.

More information

Secure Zoo Strategy Biosecurity Mapping Tool. Instructional Guide

Secure Zoo Strategy Biosecurity Mapping Tool. Instructional Guide Secure Zoo Strategy Biosecurity Mapping Tool Instructional Guide Table of Contents Introduction Acronyms & Abbreviations Materials Section 1: Data Definitions and Symbology o Definitions o Symbology Section

More information

Feature Topics. New Features of

Feature Topics. New Features of New Features of BRITISH COLUMBIA Ministry of Energy, Mines and Petroleum Resources Minerals North April 26, 2006 Feature Topics Digital Geology New MINFILE Online and PC System Image Analysis Tool with

More information

INTRODUCTION TO BLACKBOARD

INTRODUCTION TO BLACKBOARD INTRODUCTION TO BLACKBOARD Working URL - https://www.d11.org Layout of the site MY START BAR CHANNEL BAR HEADER GLOBAL ICONS Logging In Use your email as your username and your network password. SITE MANAGER

More information

Google Maps Manually Place Marker On Click V3 Remove

Google Maps Manually Place Marker On Click V3 Remove Google Maps Manually Place Marker On Click V3 Remove Following is the HTML Markup containing the Google Map implementation. To add markers you will need to click on the map. These markers are added. When

More information

You will create some icons yourself, but some are supplied for you. If you are at ECMWF then you can copy the icons from the command line like this:

You will create some icons yourself, but some are supplied for you. If you are at ECMWF then you can copy the icons from the command line like this: Metview WMS Tutorial This tutorial explains how to use the WMS (Web Map Service) client within Metview. Requirements Please note that this tutorial requires Metview version 4.0.5 or later. Preparations

More information

_Tutorials. Arcmap. Linking additional files outside from Geodata

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

More information

SAP InfiniteInsight 7.0

SAP InfiniteInsight 7.0 End User Documentation Document Version: 1.0-2014-11 SAP InfiniteInsight 7.0 Data Toolkit User Guide CUSTOMER Table of Contents 1 About this Document... 3 2 Common Steps... 4 2.1 Selecting a Data Set...

More information

NAACCR Webinar Exercises. May 6, 2010 Kevin Henry Francis Boscoe

NAACCR Webinar Exercises. May 6, 2010 Kevin Henry Francis Boscoe NAACCR Webinar Exercises May 6, 2010 Kevin Henry Francis Boscoe EXERCISE 1 Google Earth and Geocoding Individual Cases Part 1 Introduction to Google Earth 1 Open Google Earth Click Start Programs Google

More information

Genealogical Searching the World Wide Web. July 2015 Slides at:

Genealogical Searching the World Wide Web. July 2015 Slides at: Genealogical Searching the World Wide Web July 2015 Slides at: http://www.colket.org/genealogy/usf/ Google Earth Overview Use of Google Earth for Genealogy: Get Directions to Research Locations Plan a

More information

GPS Cinema - Locative Storytelling

GPS Cinema - Locative Storytelling GPS Cinema - Locative Storytelling Tell your Story, Anywhere. Described by some users as "Geocaching for Stories", GPS Cinema is a simple SDK for authoring locative media experiences. Create your own audio

More information

Geocoding Reference USA data in ArcMap 9.3

Geocoding Reference USA data in ArcMap 9.3 Tufts GIS Tip Sheet Geocoding Reference USA data in ArcMap 9.3 Written by Barbara Parmenter Revised 3/1/2011 In this exercise, you will map businesses or services for a town in the Boston metropolitan

More information

Terratype Umbraco Multi map provider

Terratype Umbraco Multi map provider Terratype Umbraco Multi map provider Installation Installing via Nuget This Umbraco package can be installed via Nuget The first part is the Terratype framework, which coordinates the different map providers,

More information

WILD 2400 ASSIGNMENT #1: GPS TUTORIAL*

WILD 2400 ASSIGNMENT #1: GPS TUTORIAL* WILD 2400 ASSIGNMENT #1: GPS TUTORIAL* Overview: In this tutorial you will learn how to collect, download, and display data using a Garmin GPSMAP 64 unit, the DNRGPS Application, and Google Earth. For

More information

Waushara County Public Access Land Records Viewer Help

Waushara County Public Access Land Records Viewer Help Waushara County Public Access Land Records Viewer Help Main Screen Layout Overview Zoom Pan Controls Parcel Tools Tools Help and Links Image Layers Transition Tools Search Results from Parcel Search Tool

More information

MAKING MAPS WITH GOOGLE FUSION TABLES. (Data for this tutorial at

MAKING MAPS WITH GOOGLE FUSION TABLES. (Data for this tutorial at MAKING MAPS WITH GOOGLE FUSION TABLES (Data for this tutorial at www.peteraldhous.com/data) Thanks to Google Fusion Tables, creating maps from data and embedding them on a web page is now easy. We re going

More information

Introduction to district compactness using QGIS

Introduction to district compactness using QGIS Introduction to district compactness using QGIS Mira Bernstein, Metric Geometry and Gerrymandering Group Designed for MIT Day of Engagement, April 18, 2017 1) First things first: before the session Download

More information

Aware IM Version 8.2 Aware IM for Mobile Devices

Aware IM Version 8.2 Aware IM for Mobile Devices Aware IM Version 8.2 Copyright 2002-2018 Awaresoft Pty Ltd CONTENTS Introduction... 3 General Approach... 3 Login... 4 Using Visual Perspectives... 4 Startup Perspective... 4 Application Menu... 5 Using

More information

Introduction to Google Earth Tutorial Haiti. 3/15/2011. Tufts GIS Center. Data Exploration

Introduction to Google Earth Tutorial Haiti. 3/15/2011. Tufts GIS Center. Data Exploration Introduction to Google Earth Tutorial Haiti. 3/15/2011. Tufts GIS Center. Data Exploration 1. Open Google Earth 2. On the left you will see a navigation pane with 3 sections: Search, Places and Layers.

More information

Dynamic Database Browsing

Dynamic Database Browsing Dynamic Database Browsing Tutorial #8 Last Revision: February 2007 Introduction This tutorial was designed to introduce users to the new Dynamic Database Browsing (DDB) option for use with PerCon online

More information