Package geoplot. February 15, 2013

Size: px
Start display at page:

Download "Package geoplot. February 15, 2013"

Transcription

1 Type Package Package geoplot February 15, 2013 Title Geocodes street or ip addresses and plots them on a map. Version 2.1 Date Author Maintainer <> Depends R(>= ), rjson, RgoogleMaps There are 4 primary functions and RgoogleMaps and rjson are dependencies. This package resolves street address to point and bo coordinates, resolves ip address to point coordinates, plot resolved points on specified Google maps and determine distance between 2 points in km or mi using haversine formula. License GPL-2 LazyLoad yes Repository CRAN Date/Publication :18:55 NeedsCompilation no R topics documented: geoplot-package addrlistlookup degrees2radians geoaddress geoip geoplot haversine iplistlookup Inde 11 1

2 2 geoplot-package geoplot-package Geocodes street address or ip address, plots on Google map, determines distance between 2 points. There are 4 primary functions: 1) Resolve street address to point and bo coordinates. 2) Resolve ip address to point coordinates. 3) Plot resolved points on specified Google map. 4) Determine distance between 2 points in km or mi using haversine formula. Details Package: geoplot Type: Package Version: 2.1 Date: License: GPL-2 INSTRUCTIONS: To resolve (geocode) a single address to coordinates: <- geoaddress(c("001","202 South Central Avenue","Flagler Beach","FL","32136","US")) Plot the address on a map: geoplot() To geocode and plot a data frame of addresses: (see geoaddr for format) addr <- load( ListOfAddresses.rda ) geoaddr <- addrlistlookup(addr) geoplot(geoaddr) To geocode a single ip address: <- geoip(" ") Plot on the map: geoplot() To geocode and plot a data frame of ips: (see geoip for format) ips <- load( ListOfIPs.rda ) geoips <- iplistlookup(ips) geoplot(geoips)

3 addrlistlookup 3 To determine the distance between 2 points: haversine(" "," "," "," ") To determine the distance between 2 points resolved above: haversine(geoaddr[1,3],geoaddr[1,4],geoaddr[2,3],geoaddr[2,4]) haversine(geoips[1,3],geoips[1,4],geoips[2,3],geoips[2,4]) <> References Eamples <- geoaddress(c("001","202 South Central Avenue","Flagler Beach","FL","32136","US")) geoplot() y <- geoip(" ") geoplot(y) haversine( , , , ) addrlistlookup addrlistlookup This function runs a list through the geoaddress function for geocoding. addrlistlookup() A data frame containing: id, address, city, state/province, postal and country. The id is simply an identifier. The remaining address elements do not have to be universally populated. A concatenation of the vector elements occurs but the input specification is only rigid in that id and 4 elements are needed.

4 4 degrees2radians Value The returned value is a data frame containing the elements: id, address, latitude (point coordinate), longitude (point coordinate), north bo coordinate, south bo coordinate, east bo coordinate, west bo coordinate. id address latitude longitude bo_north bo_south bo_east bo_west User defined identifier. This can be arbitrary Concatenated address data. Point coordinate - latitude. Point coordinate - longitude. Bo coordinate - North. Bo coordinate - South. Bo coordinate - East. Bo coordinate - West. geoaddress, geoplot Eamples id <- c( , , , , ) address <- c( 537 LINDEN AVENUE, 4163 KENWOOD PLACE, 4670 POINTE LANE, 4077 MARIGOLD LANE, 193 MULBERRY LANE ) city <- c( ORLANDO, JUPITER, POMPANO BEACH, MIAMI, JUPITER ) stateprov <- c( FL, FL, FL, FL, FL ) postal <- c( 32805, 33478, 33060, 33179, ) country <- c( US, US, US, US, US ) <- data.frame(id,address,city,stateprov,postal,country) addrlistlookup() degrees2radians degrees2radians This is a conversion from degrees to radians for the haversine function. This is not intended to be used independently. degrees2radians()

5 geoaddress 5 Degrees measure. geoaddress geoaddress Implements a lookup using the Google Maps API to determine point and bo coordinates for a given address. geoaddress() is a list or data frame containing: id, address, city, state/province, postal & country. The id is simply an identifier field and the remaining address elements do not have to be universally populated. A concatenation of the vector elements occurs but the input specification is only rigid in that id and 4 elements are needed. Details Value The GoogleMaps API is interfaced by rendering an address via URL in the following format: PATTERN: The output is a web page containing the XML document with the data fields which are then ingested. The returned value is a list containing the elements: id, address, latitude (point coordinate), longitude (point coordinate), north bo coordinate, south bo coordinate, east bo coordinate, west bo coordinate. id address latitude longitude bo_north User defined identifier. Concatenated address data. Point coordinate - latitude. Point coordinate - longitude. Bo coordinate - North.

6 6 geoip bo_south bo_east bo_west Bo coordinate - South. Bo coordinate - East. Bo coordinate - West. addrlistlookup, geoplot Eamples <- c("001","202 South Central Avenue","Flagler Beach","FL","32136","US") geoaddress() geoip iplistlookup Implements a lookup using the InfoDB API to determine point coordinates for a given ip address. There is a package dependency here for rjson and you must have this. Also, you should get your own API code and supplement it for the one used here. See Details Section. geoip() is the ip address in ipv4 format Details The lookup here is performed by using the InfoDB ip lookup page at via API call to http which is structured as follows: PATTERN: You can get your own API key, (yes, it s free), and supplement it into the code for the geoip function at The data will be returned in a JSON document on a page which is ingested.

7 geoplot 7 Value A list is returned containing the following elements: ipaddress statuscode latitude longitude statusmessage countrycode countryname regionname cityname zipcode timezone Input ip address. Returned status code from lookup. Point coordinate - latitude. Point coordinate - longitude. Returned status message from lookup. Country code from ip lookup. Country name from ip lookup. State/region/province from ip lookup. City from ip lookup. Postal code from ip lookup. Timezone from ip lookup. References iplistlookup, geoplot Eamples <- " " geoip() geoplot geoplot This function plots either a single or list of latitude/longitude coordinates on a Google Map. The RgoogleMaps package is a dependency. geoplot(,zoom,maptype,color)

8 8 haversine zoom maptype color is a data frame with latitude and longitude in the 3rd and 4th column respectively. This aligns with the oupput of geoaddress and geoip. This is the zoom level of the map. Default is 6, play around to see what works best. This is the type of map. Options are: roadmap, mobile, satellite, terrain, hybrid, mapmaker-roadmap, mapmaker-hybrid. See package RgoogleMaps for descriptions. This is the color for the plotted points. The default is red. geoaddress, geoip, addrlistlookup, iplistlookup Eamples <- geoaddress(c("001","202 South Central Avenue","Flagler Beach","FL","32136","US")) geoplot(,zoom=6,maptype="mobile",color= "red") haversine haversine This is the haversine formula for determining distance between coordinated on a globe. haversine(lat, Lon, ylat, ylon) Lat Lon ylat ylon Position 1 latitude. Position 1 longitude. Position 2 latitude. Position 2 longitude.

9 iplistlookup 9 Value The output is a list with the coordinates, distance in kilometers and miles. Lat Lon ylat ylon distkm distmi Position 1 latitude. Position 1 longitude. Position 2 latitude. Position 2 longitude. Distance between points in kilometers. Distance between points in miles. Note There is some variation between computations due to the measurement used for the Earth s radius. This implementation uses the mean radius measurement of 6371 km versus the equitorial radius of Feel free to adjust if your opinion differs! References degrees2radians, geoaddress, geoip Eamples haversine(" "," "," "," ") iplistlookup iplistlookup This function geocodes a list of ip addresses. iplistlookup()

10 10 iplistlookup is a list containing ip addresses. Value A data frame is returned containing the following elements: ipaddress statuscode latitude longitude statusmessage countrycode countryname regionname cityname zipcode timezone Input ip address. Returned status code from lookup. Point coordinate - latitude. Point coordinate - longitude. Returned status message from lookup. Country code from ip lookup. Country name from ip lookup. State/region/province from ip lookup. City from ip lookup. Postal code from ip lookup. Timezone from ip lookup. geoip, geoplot Eamples ips <- c( , , , , ) <- data.frame(ips) iplistlookup()

11 Inde Topic address addrlistlookup, 3 geoaddress, 5 Topic distance haversine, 8 Topic geoaddress addrlistlookup, 3 geoaddress, 5 Topic geocode geoaddress, 5 Topic geoip geoip, 6 iplistlookup, 9 Topic geoplot geoplot, 7 geoplot-package, 2 Topic haversine degrees2radians, 4 haversine, 8 Topic ipaddress geoip, 6 iplistlookup, 9 Topic radians degrees2radians, 4 addrlistlookup, 3, 6, 8 degrees2radians, 4, 9 geoaddress, 4, 5, 8, 9 geoip, 6, 8 10 geoplot, 4, 6, 7, 7, 10 geoplot-package, 2 haversine, 8 iplistlookup, 7, 8, 9 11

Package Rvoterdistance

Package Rvoterdistance Type Package Package Rvoterdistance March 20, 2017 Title Calculates the Distance Between Voter and Multiple Polling Locations Version 1.1 Date 2017-03-17 Author Loren Collingwood Maintainer Designed to

More information

Address Management User Guide. PowerSchool 8.x Student Information System

Address Management User Guide. PowerSchool 8.x Student Information System PowerSchool 8.x Student Information System Released July 2014 Document Owner: Documentation Services This edition applies to Release 8.0.1 of the PowerSchool software and to all subsequent releases and

More information

Address Management User Guide. PowerSchool 6.0 Student Information System

Address Management User Guide. PowerSchool 6.0 Student Information System User Guide PowerSchool 6.0 Student Information System Released June 2009 Document Owner: Document Services This edition applies to Release 6.0 of the PowerSchool Premier software and to all subsequent

More information

Table of contents. DMXzone Google Maps Manual DMXzone.com

Table of contents. DMXzone Google Maps Manual DMXzone.com Table of contents Table of contents... 1 About DMXzone Google Maps... 2 Features in Detail... 3 The Basics: Insterting DMXzone Google Maps on a Page... 16 Advanced: Creating Dynamic DMXzone Google Maps...

More information

Package RYoudaoTranslate

Package RYoudaoTranslate Package RYoudaoTranslate February 19, 2015 Type Package Title R package provide functions to translate English s into Chinese. Version 1.0 Date 2014-02-23 Author Maintainer You can

More information

The Data Journalist Chapter 7 tutorial Geocoding in ArcGIS Desktop

The Data Journalist Chapter 7 tutorial Geocoding in ArcGIS Desktop The Data Journalist Chapter 7 tutorial Geocoding in ArcGIS Desktop Summary: In many cases, online geocoding services are all you will need to convert addresses and other location data into geographic data.

More information

Package censusr. R topics documented: June 14, Type Package Title Collect Data from the Census API Version 0.0.

Package censusr. R topics documented: June 14, Type Package Title Collect Data from the Census API Version 0.0. Type Package Title Collect Data from the Census API Version 0.0.3 Date 2017-06-13 Package censusr June 14, 2017 Use the US Census API to collect summary data tables for SF1 and ACS datasets at arbitrary

More information

Store Locator for Magento 2. User Guide

Store Locator for Magento 2. User Guide Store Locator for Magento 2 User Guide Table of Contents 1. Store Locator Configuration 1.1. Accessing the Extension Main Setting 1.2. General 1.3. Service API and Comments 1.4. Store Search 2. Store Locator

More information

Help Documentation. Copyright 2007 WebAssist.com Corporation All rights reserved.

Help Documentation. Copyright 2007 WebAssist.com Corporation All rights reserved. Help Documentation Copyright 2007 WebAssist.com Corporation All rights reserved. Using Pro Maps for Google This wizard adds a Pro Map for Google to your web page, allowing you to configure and specify

More information

Where is the Space Station?

Where is the Space Station? Where is the Space Station? Introduction In this project you will use a web service to find out the current location of the International Space Station (ISS) and plot its location on a map. Step 1: Who

More information

Activity 1.1.1: Using Google Earth to View the World

Activity 1.1.1: Using Google Earth to View the World Learning Objectives Upon completion of this activity, you will be able to: Explain the purpose of Google Earth. Explain the different versions of Google Earth. Explain the hardware and software requirements

More information

Getting Started with Pro Maps for Google

Getting Started with Pro Maps for Google Getting Started with Pro Maps for Google This Getting Started Guide shows you how to get up and running with Pro Maps for Google. This Dreamweaver extension allows you to add static and dynamic maps to

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

Google Map & Radius Search Realtyna Inc.

Google Map & Radius Search Realtyna Inc. 1 Google Map & Radius Search Realtyna Inc. Contents of this manual are applicable to the RPL Google Map& Radius Search Add-on version 3.4+. If you have an older version of the membership add-on, sections

More information

Using Crime Statistics to Recommend Police Precinct Locations

Using Crime Statistics to Recommend Police Precinct Locations Using Crime Statistics to Recommend Police Precinct Locations Chuck Cartledge chuck@clc-ent.com John Sinues Some e-mail address October 31, 2017 Contents 1 Introduction 1 2 Problem definition 1 3 Algorithms

More information

Package imgur. R topics documented: December 20, Type Package. Title Share plots using the imgur.com image hosting service. Version 0.1.

Package imgur. R topics documented: December 20, Type Package. Title Share plots using the imgur.com image hosting service. Version 0.1. Package imgur December 20, 2010 Type Package Title Share plots using the imgur.com image hosting service Version 0.1.4 Date 2010-12-18 Author Aaron Statham Maintainer Aaron Statham

More information

Package opencage. January 16, 2018

Package opencage. January 16, 2018 Package opencage January 16, 2018 Type Package Title Interface to the OpenCage API Version 0.1.4 Tool for accessing the OpenCage API, which provides forward geocoding (from placename to longitude and latitude)

More information

Custom Location Extension

Custom Location Extension Custom Location Extension User Guide Version 1.4.9 Custom Location Extension User Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Custom Location

More information

Store Locator Magento 2 USER MANUAL E: P: +1-(248)

Store Locator Magento 2 USER MANUAL E:  P: +1-(248) Store Locator Magento 2 USER MANUAL MAGEDELIGHT.COM SUPPORT E: INFO@MAGEDELIGHT.COM SUPPORT@MAGEDELIGHT.COM P: +1-(248)-275-1202 P: License Key After successfully installing the Store Locator extension

More information

Clustering to Reduce Spatial Data Set Size

Clustering to Reduce Spatial Data Set Size Clustering to Reduce Spatial Data Set Size Geoff Boeing arxiv:1803.08101v1 [cs.lg] 21 Mar 2018 1 Introduction Department of City and Regional Planning University of California, Berkeley March 2018 Traditionally

More information

pygeoip Documentation

pygeoip Documentation pygeoip Documentation Release 0.3.2 Jennifer Ennis, William Tisäter October 29, 2014 Contents 1 Installation 3 2 Issues and Contribution 5 3 Documentation 7 3.1 Getting Started..............................................

More information

Corporation. GeoCode LOS

Corporation. GeoCode LOS Micropath Corporation 2023 Montane Drive East Tel: 303.526-5454 Web: www.micropath.com Golden, Colorado 80401-8099 Fax: 303.526-0202 E-Mail: sales@micropath.com GeoCode LOS GeoCode LOS generates radio

More information

Package wethepeople. March 3, 2013

Package wethepeople. March 3, 2013 Package wethepeople March 3, 2013 Title An R client for interacting with the White House s We The People petition API. Implements an R client for the We The People API. The client supports loading, signatures,

More information

Android Programming Lecture 9: Two New Views 9/30/2011

Android Programming Lecture 9: Two New Views 9/30/2011 Android Programming Lecture 9: Two New Views 9/30/2011 ListView View Using ListViews is very much like using Spinners Build off an array of data Events on the list happen at a particular position ListView

More information

iii Map Intelligence Client User Manual

iii Map Intelligence Client User Manual Map Intelligence Client User Manual iii TM Map Intelligence Client User Manual ii CONTENTS INTRODUCTION... 5 Purpose... 5 Audience... 5 Conventions... 6 Prerequisites... 6 CONCEPTS... 7 What is Map Intelligence?...

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

Package rnrfa. April 13, 2018

Package rnrfa. April 13, 2018 Package rnrfa April 13, 2018 Title UK National River Flow Archive Data from R Version 1.4.0 Maintainer Claudia Vitolo URL http://cvitolo.github.io/rnrfa/ BugReports https://github.com/cvitolo/rnrfa/issues

More information

How to Relay Information About Where You Are

How to Relay Information About Where You Are How to Relay Information About Where You Are 2017 12 18 Gary Ataman Five Winds Backcountry Ski Club President Where Are You? When you are in the backcountry keep track of where you are. When incidents

More information

iii Map Intelligence Client User Manual

iii Map Intelligence Client User Manual Map Intelligence Client User Manual iii Map Intelligence Client User Manual ii CONTENTS INTRODUCTION... 5 Purpose... 5 Audience... 5 Conventions... 6 Prerequisites... 6 CONCEPTS... 7 What is Map Intelligence?...

More information

Table of contents. DMXzone Google Maps 2 DMXzone

Table of contents. DMXzone Google Maps 2 DMXzone Table of contents Table of contents... 1 About... 2 Features in Detail... 3 The Basics: Inserting Google Maps on a Page... 20 Advanced: Control Google Maps with Behaviors... 27 Advanced: Track Your Current

More information

Google Map for Magento 2

Google Map for Magento 2 Last update: 2018/03/16 11:06 magento_2:google_map https://amasty.com/docs/doku.php?id=magento_2:google_map For more details see the Google Map extension page. Google Map for Magento 2 Provide customers

More information

Package skm. January 23, 2017

Package skm. January 23, 2017 Type Package Title Selective k-means Version 0.1.5.4 Author Guang Yang Maintainer Guang Yang Package skm January 23, 2017 Algorithms for solving selective k-means problem, which is

More information

Assignment 2 Arrays and Functions

Assignment 2 Arrays and Functions Assignment 2 Arrays and Functions Assigned TA: Yohai Mandabi. Publication date: 17.11.13. Introduction The geographic coordinate system is a grid allowing the specification of any location on Earth. The

More information

Django Map Widgets Documentation

Django Map Widgets Documentation Django Map Widgets Documentation Release 0.1.9 Erdem Ozkol Oct 26, 2017 Contents 1 Achievements 3 1.1 Index................................................... 3 2 Indices and tables 13 i ii Configurable,

More information

Package SPIn. R topics documented: February 19, Type Package

Package SPIn. R topics documented: February 19, Type Package Type Package Package SPIn February 19, 2015 Title Simulation-efficient Shortest Probability Intervals Version 1.1 Date 2013-04-02 Author Ying Liu Maintainer Ying Liu Depends R

More information

Database Systems Lab. 19. Google Maps API 충남대학교컴퓨터공학과 데이타베이스시스템연구실

Database Systems Lab. 19. Google Maps API 충남대학교컴퓨터공학과 데이타베이스시스템연구실 데이타베이스시스템연구실 Database Systems Lab. 19. Google Maps API 충남대학교컴퓨터공학과 데이타베이스시스템연구실 Google Maps API Tutorial What is Google Maps? Allows you to display maps on your web site Google Maps API Google Maps API

More information

Package nlgeocoder. October 8, 2018

Package nlgeocoder. October 8, 2018 Title Geocoding for the Netherlands Version 0.1.3 Package nlgeocoder October 8, 2018 R interface to the open location server API of 'Publieke Diensten Op de Kaart' (). It offers geocoding,

More information

Configuring and Monitoring the GeoDB

Configuring and Monitoring the GeoDB CHAPTER 8 This chapter describes how to implement the GeoIP database (GeoDB) proximity computation mechanism in GSS. From the latitudinal and longitudinal information in the GeoDB, GSS decides the proximity,

More information

Leverage custom geographical polygons in SAS Visual Analytics

Leverage custom geographical polygons in SAS Visual Analytics ABSTRACT Paper SAS1732-2018 Leverage custom geographical polygons in SAS Visual Analytics Falko Schulz, SAS Institute Inc., Brisbane, Australia Discover how you can explore geographical maps using your

More information

Package SmarterPoland

Package SmarterPoland Package SmarterPoland August 29, 2013 Type Package Title A set of tools developed by the Foundation SmarterPoland.pl Version 1.2 Date 2013-03-16 Author (Foundation SmarterPoland.pl) Maintainer

More information

Package Storm. February 19, 2015

Package Storm. February 19, 2015 Package Storm February 19, 2015 Type Package Version 1.2 Date 2014-12-25 Title Write Storm Bolts in R using the Storm Multi-Language Protocol. Author Allen Day Maintainer Allen Day

More information

Django Map Widgets Documentation

Django Map Widgets Documentation Django Map Widgets Documentation Release 0.1.8 Erdem Ozkol Mar 06, 2017 Contents 1 Achievements 3 1.1 Index................................................... 3 2 Indices and tables 11 i ii Configurable,

More information

STORE LOCATOR For Magento 2

STORE LOCATOR For Magento 2 1 STORE LOCATOR For Magento 2 PREFACE Store locator also known as store finder empowers user to add unlimited stores with functionality of adding tags to differentiate them. It allows user to locate nearby

More information

Spatial SIG. Oracle Geocoder versus the World. Jon Scarbrough Where2GetIt

Spatial SIG. Oracle Geocoder versus the World. Jon Scarbrough Where2GetIt Spatial SIG Oracle Geocoder versus the World Jon Scarbrough Where2GetIt Spatial SIG Agenda Company background Oracle geocoder implementation Oracle geocoder benefits Geocoder comparisons Who We Are What

More information

GLN Bulk Fixed Length Text Return File Layout (All Fields*, Fixed Length Text Format)

GLN Bulk Fixed Length Text Return File Layout (All Fields*, Fixed Length Text Format) The following fields are the values of fields contained in the corresponding submission record and are intended to allow the subscriber to easily match the return file record with the corresponding submission

More information

Package grec. R topics documented: August 13, Type Package

Package grec. R topics documented: August 13, Type Package Type Package Package grec August 13, 2017 Title GRadient-Based RECognition of Spatial Patterns in Environmental Data Version 1.1.1 Date 2017-08-13 URL https://github.com/luislaum/grec BugReports https://github.com/luislaum/grec/issues

More information

iii Map Intelligence Client User Manual

iii Map Intelligence Client User Manual Map Intelligence Client User Manual iii TM Map Intelligence Client User Manual ii CONTENTS INTRODUCTION... 5 Purpose... 5 Audience... 5 Conventions... 6 Prerequisites... 6 CONCEPTS... 7 What is Map Intelligence?...

More information

How to determine latitude and longitude values for an address that is not found

How to determine latitude and longitude values for an address that is not found How to determine latitude and longitude values for an address that is not found There are a number of maps in MemoryMiner. In order to see our places on these maps, they need latitude and longitude numbers.

More information

Project #2: A 3-Tiered Airport Lookup Service Using RPC

Project #2: A 3-Tiered Airport Lookup Service Using RPC Project #2: A 3-Tiered Airport Lookup Service Using RPC 1. Objective Your assignment is to write a 3-tiered client-server program. The program will consist of three components: a client, a places server,

More information

Sage Documentation. Release 2.0. Ash Islam

Sage Documentation. Release 2.0. Ash Islam Sage Documentation Release 2.0 Ash Islam December 19, 2013 Contents i ii The SAGE API exposes methods for geocoding, address correction, and district assignment given addresses or geocoordinates as input.

More information

STORE LOCATOR USER GUIDE Extension version: 1.0 Magento Compatibility: CE 2.0

STORE LOCATOR USER GUIDE Extension version: 1.0 Magento Compatibility: CE 2.0 support@magestore.com sales@magestore.com Phone: +1-606-657-0768 STORE LOCATOR USER GUIDE Extension version: 1.0 Magento Compatibility: CE 2.0 Table of Contents 1. INTRODUCTION 3 Outstanding Features...3

More information

Quick Google Maps. This document is published under the Open Content License available from

Quick Google Maps. This document is published under the Open Content License available from Quick Google Maps - cbgooglemaps Quick Google Maps Quick Google Maps Extension Key: cbgooglemaps Language: en Keywords: foradmins, forbeginners Copyright 2000-2016, Christian Brinkert,

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

USER MANUAL. Quick Maps TABLE OF CONTENTS. Version: 2.1

USER MANUAL. Quick Maps TABLE OF CONTENTS. Version: 2.1 USER MANUAL Quick Maps Version: 2.1 Compatibility: Microsoft Dynamics CRM 2016(v8.0) and above TABLE OF CONTENTS Introduction... 2 Benefits of Quick Maps... 2 Prerequisites... 2 Installation & Configuration...

More information

Package murl. June 13, 2017

Package murl. June 13, 2017 Type Package Title Mailmerge using R, LaTeX, and the Web Version 0.1-11 Date 2017-06-12 Package murl June 13, 2017 Author Ryan T. Moore and Andrew Reeves Maintainer

More information

SES 123 Global and Regional Energy Lab Worksheet

SES 123 Global and Regional Energy Lab Worksheet SES 123 Global and Regional Energy Lab Worksheet Introduction An important aspect to understand about our planet is global temperatures, including spatial variations, such as between oceans and continents

More information

Package GeoRange. June 15, 2017

Package GeoRange. June 15, 2017 Type Package Package GeoRange June 15, 2017 Title Calculating Geographic Range from Occurrence Data Version 0.1.0 Calculates and analyzes six measures of geographic range from a set of longitudinal and

More information

Insert Background Image For DriveTest Release 22 and above

Insert Background Image For DriveTest Release 22 and above UPDATE Insert Background Image For DriveTest Release 22 and above Starting with Release 22 of DriveTest a new toolbar button has been added to the Plot Tab that allows the user to insert a background Image.

More information

Package plotgooglemaps

Package plotgooglemaps Package plotgooglemaps February 15, 2013 Type Package Title Plot SP data as HTML map mashup over Google Maps Version 1.3 Date 2012-07-06 Author Milan Kilibarda Maintainer Milan Kilibarda

More information

Store Pickup M2 USER MANUAL E: P: +1-(248)

Store Pickup M2 USER MANUAL E:  P: +1-(248) Store Pickup M2 USER MANUAL MAGEDELIGHT.COM SUPPORT E: INFO@MAGEDELIGHT.COM SUPPORT@MAGEDELIGHT.COM P: +1-(248)-275-1202 P: License Key After successfully installing the Store Pickup extension on your

More information

Real Estate Sales, New York NY, 2014

Real Estate Sales, New York NY, 2014 Page 1 of 6 Metadata format: ISO 19139 Real Estate Sales, New York NY, 2014 ISO 19139 metadata content Resource Identification Information Spatial Representation Information Reference System Information

More information

GLN Bulk CSV Text Return File Layout (All Fields*, CSV Format)

GLN Bulk CSV Text Return File Layout (All Fields*, CSV Format) GLN Bulk CSV Text Return File Layout (All Fields*, CSV Format) Field Max Length Position Definition The following fields are the values of fields contained in the corresponding submission record and are

More information

SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question.

SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. Review for Test 2 MATH 116 SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. Solve the right triangle. If two sides are given, give angles in degrees and

More information

SES 123 Global and Regional Energy Lab Procedures

SES 123 Global and Regional Energy Lab Procedures SES 123 Global and Regional Energy Lab Procedures Introduction An important aspect to understand about our planet is global temperatures, including spatial variations, such as between oceans and continents

More information

Package geojsonsf. R topics documented: January 11, Type Package Title GeoJSON to Simple Feature Converter Version 1.3.

Package geojsonsf. R topics documented: January 11, Type Package Title GeoJSON to Simple Feature Converter Version 1.3. Type Package Title GeoJSON to Simple Feature Converter Version 1.3.0 Date 2019-01-11 Package geojsonsf January 11, 2019 Converts Between GeoJSON and simple feature objects. License GPL-3 Encoding UTF-8

More information

The GEOCODE Procedure and SAS Visual Analytics

The GEOCODE Procedure and SAS Visual Analytics ABSTRACT SAS3480-2016 The GEOCODE Procedure and SAS Visual Analytics Darrell Massengill, SAS Institute Inc., Cary, NC SAS Visual Analytics can display maps with your location information. However, you

More information

MapInfo Stratus. Version 41. MapInfo Stratus Administration Guide

MapInfo Stratus. Version 41. MapInfo Stratus Administration Guide MapInfo Stratus Version 41 MapInfo Stratus Administration Guide Contents Chapter 1: Getting Started...7 Signing In and Out...8 Home...8 Version Number and Build Number...9 Using MapInfo Stratus Administration

More information

Los Angeles Cancer Surveillance Program. Links and Slides google Rich Pinder USC.

Los Angeles Cancer Surveillance Program. Links and Slides google Rich Pinder USC. Rich Pinder Los Angeles Cancer Surveillance Program Links and Slides google Rich Pinder USC rpinder@usc.edu NAACCR Annual Meeting Incorporating realtime geocoding systems into data entry routines Presented

More information

Opencagegeo: Stata Module for Geocoding

Opencagegeo: Stata Module for Geocoding Opencagegeo: Stata Module for Geocoding Lars Zeigermann Düsseldorf Insitute for Competition Economics (DICE) & Monopolies Commission Germany lars.zeigermann@monopolkommission.bund.de Abstract. This article

More information

GeoBase 4.40 Release Notes

GeoBase 4.40 Release Notes GeoBase 4.40 Release Notes Changes made from version 4.39 to 4.40: Updated the behavior of the Autocomplete Geocoder to interpret unit identifiers as street numbers for queries that contain a unit identifier

More information

Tutorial for PGIS in Accra, Ghana

Tutorial for PGIS in Accra, Ghana Tutorial for PGIS in Accra, Ghana Chung-Rui Lee 1, Ick Hoi Kim 2, and Jayesh Patel 3 Welcome to Participatory GIS (PGIS) in Accra, Ghana (access to the PGIS website). This project is funded by NICHD Grant

More information

Distance in mm from nearest latitude line to location x 150 = seconds of latitude Distance in mm between latitude 2.5 tick marks (along the sides)

Distance in mm from nearest latitude line to location x 150 = seconds of latitude Distance in mm between latitude 2.5 tick marks (along the sides) LATITUDE FORMULA FOR 1:24000 SCALE WITH 2.5 TICK MARKS Distance in mm from nearest latitude line to location x 150 = seconds of latitude Distance in mm between latitude 2.5 tick marks (along the sides)

More information

Package SEMrushR. November 3, 2018

Package SEMrushR. November 3, 2018 Type Package Title R Interface to Access the 'SEMrush' API Version 0.1.0 Package SEMrushR November 3, 2018 Implements methods for querying SEO (Search Engine Optimization) and SEM (Search Engine Marketing)

More information

Package gsalib. R topics documented: February 20, Type Package. Title Utility Functions For GATK. Version 2.1.

Package gsalib. R topics documented: February 20, Type Package. Title Utility Functions For GATK. Version 2.1. Package gsalib February 20, 2015 Type Package Title Utility Functions For GATK Version 2.1 Date 2014-12-09 Author Maintainer Geraldine Van der Auwera This package contains

More information

Distance in mm from nearest latitude line to location x 150 = seconds of latitude Distance in mm between latitude 2.5 tick marks (along the sides)

Distance in mm from nearest latitude line to location x 150 = seconds of latitude Distance in mm between latitude 2.5 tick marks (along the sides) LATITUDE FORMULA FOR 1:24000 SCALE WITH 2.5 TICK MARKS Distance in mm from nearest latitude line to location x 150 = seconds of latitude Distance in mm between latitude 2.5 tick marks (along the sides)

More information

LIFE N TOUCH KYLE DOBITZ JEREMY MUEHLBAUER. Team Winner 05/01/08

LIFE N TOUCH KYLE DOBITZ JEREMY MUEHLBAUER. Team Winner 05/01/08 LIFE N TOUCH KYLE DOBITZ JEREMY MUEHLBAUER Team Winner 05/01/08 Questions Problem: Information is readily available but requires a translation to reality Solution: To create a platform from which applications

More information

USER GUIDE PowerMap CRM

USER GUIDE PowerMap CRM USER GUIDE PowerMap CRM 2013 2015 Contents Configuring PowerMap Setting up Entities for Geocoding Geocoding Existing Records Advanced Settings Bing Maps Credentials Initial Latitude Initial Longitude Initial

More information

Mississippi Public Schools 2015

Mississippi Public Schools 2015 Mississippi Public Schools 2015 Shapefile and geodatabase Tags education, administrative, schools, public, K-12 Summary To add to the state data clearinghouse the Mississippi public schools point feature.

More information

Caspio Map Mashup v7 Developer Reference

Caspio Map Mashup v7 Developer Reference 1. DataPage Setup Caspio Map Mashup v7 Developer Reference Configure your DataPage and map settings using the DataPage Wizard in Caspio Bridge. 1.1. Enable Parameters On the first screen of the DataPage

More information

Store Pickup Magento2 USER MANUAL MAGEDELIGHT.COM E:

Store Pickup Magento2 USER MANUAL MAGEDELIGHT.COM E: Store Pickup Magento2 USER MANUAL MAGEDELIGHT.COM E: SUPPORT@MAGEDELIGHT.COM License Key After successfully installing the Store Pickup extension on your Magento store, First of all you required to configure

More information

Opencagegeo: Stata Module for Forward and Reverse Geocoding

Opencagegeo: Stata Module for Forward and Reverse Geocoding Opencagegeo: Stata Module for Forward and Reverse Geocoding Lars Zeigermann Düsseldorf Insitute for Competition Economics (DICE) Germany zeigermann@dice.hhu.de Abstract. This article describes opencagegeo

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

Package sspline. R topics documented: February 20, 2015

Package sspline. R topics documented: February 20, 2015 Package sspline February 20, 2015 Version 0.1-6 Date 2013-11-04 Title Smoothing Splines on the Sphere Author Xianhong Xie Maintainer Xianhong Xie Depends R

More information

Zip Code Locator Software Hosted Solution

Zip Code Locator Software Hosted Solution Zip Code Locator Software Hosted Solution USER S GUIDE / Documentation www.geosprawl.com Document Version Control Version Date Change Description 1.0 12/17/2008 Created 2008Reachoutside, LLC. Do not copy

More information

TeMeDa API Portal. APIs Overview. February 1,

TeMeDa API Portal. APIs Overview. February 1, TeMeDa API Portal https://temeda.portal.azure-api.net APIs Overview The TeMeDa API is a set of application programming interfaces (APIs) developed by TeMeDa which allow communication with TeMeDa Services

More information

Smart GIS Course. Developed By. Mohamed Elsayed Elshayal. Elshayal Smart GIS Map Editor and Surface Analysis. First Arabian GIS Software

Smart GIS Course. Developed By. Mohamed Elsayed Elshayal. Elshayal Smart GIS Map Editor and Surface Analysis. First Arabian GIS Software Smart GIS Course Developed By Mohamed Elsayed Elshayal Elshayal Smart GIS Map Editor and Surface Analysis First Arabian GIS Software http://www.freesmartgis.blogspot.com/ http://tech.groups.yahoo.com/group/elshayalsmartgis/

More information

Assignment 3: Processing New York City Open Data Using Linked Lists

Assignment 3: Processing New York City Open Data Using Linked Lists Assignment 3: Processing New York City Open Data Using Linked Lists 1 Summary Due date: October 26, 11:59PM EST. In this assignment, you will use linked lists to manage objects that represent New York

More information

Package rmapzen. October 7, 2018

Package rmapzen. October 7, 2018 Package rmapzen October 7, 2018 Type Package Title Client for 'Mapzen' and Related Map APIs Version 0.4.1 Maintainer Tarak Shah Provides an interface to 'Mapzen'-based APIs (including

More information

Subset Extract File Layout (All Fields*, Fixed Length Text Format)

Subset Extract File Layout (All Fields*, Fixed Length Text Format) Subscriber Identifier Type Code 1 1 1 Subscriber Identifier Value 2 31 30 Subset Extract File Layout (All Fields*, Fixed Length Format) As supplied by the subscriber in the submission file, a code paired

More information

Technical Brief: Dynamic Number Insertion

Technical Brief: Dynamic Number Insertion Technical Brief: Dynamic Number Insertion Feature Definition Dynamic Number Insertion (DNI) by Convirza allows users to display a different call tracking phone number on their website in one of three methods:

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

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

Package mapr. April 11, 2017

Package mapr. April 11, 2017 Title Visualize Species Occurrence Data Package mapr April 11, 2017 Utilities for visualizing species occurrence data. Includes functions to visualize occurrence data from 'spocc', 'rgbif', and other packages.

More information

Package c14bazaar. October 28, Title Download and Prepare C14 Dates from Different Source Databases Version 1.0.2

Package c14bazaar. October 28, Title Download and Prepare C14 Dates from Different Source Databases Version 1.0.2 Package c14bazaar October 28, 2018 Title Download and Prepare C14 Dates from Different Source Databases Version 1.0.2 URL https://github.com/isaakiel/c14bazaar Date 2018-09-19 Query different C14 date

More information

Introduction to MATLAB

Introduction to MATLAB GLOBAL EDITION Introduction to MATLAB THIRD EDITION Delores M. Etter 3.3 Trigonometric Functions 77 tan(x) asin(x) sinh(x) Computes the tangent of x, where x is in radians. tan(pi) -1.2246e-16 Computes

More information

Subscriber Registration Instructions. Updated 8/31/16

Subscriber Registration Instructions. Updated 8/31/16 Subscriber Registration Instructions Updated 8/31/16 WHAT IS SCHUYLKILL ALERT? When situations arise in Schuylkill County that may affect you and your family, Schuylkill Alert lets local officials notify

More information

Package scrubr. August 29, 2016

Package scrubr. August 29, 2016 Type Package Title Clean Biological Occurrence Records Package scrubr August 29, 2016 Clean biological occurrence records. Includes functionality for cleaning based on various aspects of spatial coordinates,

More information

Package Combine. R topics documented: September 4, Type Package Title Game-Theoretic Probability Combination Version 1.

Package Combine. R topics documented: September 4, Type Package Title Game-Theoretic Probability Combination Version 1. Type Package Title Game-Theoretic Probability Combination Version 1.0 Date 2015-08-30 Package Combine September 4, 2015 Author Alaa Ali, Marta Padilla and David R. Bickel Maintainer M. Padilla

More information

+ Make it from the satellite images in sale, (Easier & Faster, but not always available) (It does cost much. An astronomical number!

+ Make it from the satellite images in sale, (Easier & Faster, but not always available) (It does cost much. An astronomical number! BaseMap: + Look for it among the existent digital maps, (Easiest & Fastest because no processing required) (Therefore, the most desirable, but not always available) (It can cost much) + Make it from the

More information

Package horizon. R topics documented: July 3, Type Package Title Horizon Search Algorithm Version 1.2 Date Author Jasper Van doninck

Package horizon. R topics documented: July 3, Type Package Title Horizon Search Algorithm Version 1.2 Date Author Jasper Van doninck Type Package Title Horizon Search Algorithm Version 1.2 Date 2018-07-03 Author Jasper Van doninck Package horizon July 3, 2018 Maintainer Jasper Van doninck Calculates horizon

More information