Package dggridr. August 29, 2016

Size: px
Start display at page:

Download "Package dggridr. August 29, 2016"

Transcription

1 Type Package Title Discrete Global Grids for R Version Date Package dggridr August 29, 2016 Author Richard Barnes [aut, cre], Kevin Sahr [ctb], Gerald Evenden [ctb], Angus Johnson [ctb], Frank Warmerdam [ctb] Maintainer Richard Barnes <[email protected]> NeedsCompilation yes Depends R (>= 3.0.0), rgdal (>= 1.1), ggplot2 (>= 2.1), dplyr (>= 0.4) Suggests knitr, rmarkdown, maps, mapproj, R.rsp, testthat License MIT + file LICENCE Spatial analyses involving binning require that every bin have the same area, but this is impossible using a rectangular grid laid over the Earth or over any projection of the Earth. Discrete global grids use hexagons, triangles, and diamonds to overcome this issue, overlaying the Earth with equally-sized bins. This package provides utilities for working with discrete global grids, along with utilities to aid in plotting such data. URL BugReports RoxygenNote VignetteBuilder knitr, R.rsp SystemRequirements C++11 Repository CRAN Date/Publication :50:26 R topics documented: dgcellstogrid dgconstruct

2 2 dgcellstogrid dgearthgrid dggetres dginfo dgmaxcell dgquakes dgrectgrid dgrun dgsetres dgshptogrid dgtransform dgverify dg_closest_res dg_closest_res_to_area dg_closest_res_to_cls dg_closest_res_to_spacing dg_exe_path dg_process_kml dg_shpfname_south_africa Index 17 dgcellstogrid Return boundary coordinates for specified cells Returns the coordinates constituting the boundary of a specified set of cells. Duplicates are eliminated to reduce processing and storage requirements. dgcellstogrid(, cells, frame = TRUE, wrapcells = TRUE, savegrid = FALSE) cells frame wrapcells savegrid A object from dgconstruct() The cells to get the boundaries of If TRUE, return a data frame suitable for ggplot plotting. If FALSE, return an OGR poly object Cells which cross -180/180 degrees can present difficulties for plotting. Setting this TRUE will result in cells with components in both hemispheres to be mapped entirely to positive degrees (the Eastern hemisphere). As a result, such cells will have components in the range [180,360). Only used when frame=true. If savegrid is true then a KML representation of the grid is produced and the filename returned. No other manipulations are done. Setting this true overrides all other commands.

3 dgconstruct 3 Returns a data frame or OGR poly object, as specified by frame. If savegrid=true, returns a filename. data(dgquakes) #Construct a grid with cells about ~1000 miles wide <- dgconstruct(spacing=1000,metric=false) dgquakes$cell <- dgtransform(,dgquakes$lat,dgquakes$lon) #Get grid cells for the earthquakes identified grid <- dgcellstogrid(, dgquakes$cell, frame=true) dgconstruct Construct a discrete global grid system () object Construct a discrete global grid system () object dgconstruct(type = "ISEA3H", res = NA, precision = 7, area = NA, spacing = NA, cls = NA, resround = "nearest", metric = TRUE, show_info = TRUE) type res Type of grid to use. Options are: ISEA3H, ISEA4H, ISEA43H, ISEA4T, ISEA4D, FULLER3H, FULLER4H, FULLER43H, FULLER4T, and FULLER4D. Default: ISEA3H Resolution. Must be in the range [0,30]. Larger values represent finer resolutions. Appropriate resolutions can be found with dg_closest_res_to_area(), dg_closest_res_to_spacing(), and dg_closest_res_to_cls(). Default is 9, which corresponds to a cell area of ~2600 sq km and a cell spacing of ~50 km. Only one of res, area, length, or cls should be used. precision Round output to this number of decimal places. Must be in the range [0,30]. Default: 7. area spacing The desired area of the grid s cells. Only one of res, area, length, or cls should be used. The desired spacing between the center of adjacent cells. Only one of res, area, length, or cls should be used.

4 4 dgearthgrid cls resround metric show_info The desired CLS of the cells. Only one of res, area, length, or cls should be used. What direction to search in. Must be nearest, up, or down. Whether input and output should be in metric (TRUE) or imperial (FALSE) Print the area, spacing, and CLS of the chosen resolution. Returns a object which can be passed to other dggridr functions <- dgconstruct(res=20) <- dgconstruct(area=5,metric=false) dgearthgrid Return the coordinates constituting the boundary of cells for the entire Earth Note: If you have a high-resolution grid this may take a loooooong time to execute. dgearthgrid(, frame = TRUE, wrapcells = TRUE, savegrid = FALSE) frame wrapcells savegrid A object from dgconstruct() If TRUE, return a data frame suitable for ggplot plotting. If FALSE, return an OGR poly object Cells which cross -180/180 degrees can present difficulties for plotting. Setting this TRUE will result in cells with components in both hemispheres to be mapped entirely to positive degrees (the Eastern hemisphere). As a result, such cells will have components in the range [180,360). Only used when frame=true. If savegrid is true then a KML representation of the grid is produced and the filename returned. No other manipulations are done. Setting this true overrides all other arguments. Returns a data frame or OGR poly object, as specified by frame. If savegrid=true, returns a filename.

5 dggetres 5 <- dgconstruct(res=20) res <- dg_closest_res_to_spacing(,spacing=1000,round='down',metric=false) <- dgsetres(,res) gridfilename <- dgearthgrid(,savegrid=true) #Save directly to a file dggetres Get table of grid resolution information Gets a grid s resolution and cell property info as a data frame. dggetres() A object from dgconstruct() A data frame containing the resolution levels, number of cells, area of those cells, intercell spacing, and characteristic length scale of the cells. All values are in kilometres. <- dgconstruct(res=20) dggetres() dginfo Print a buncha info about a object to the screen objects have many settings. This returns all of them, along with info about the grid being specified. dginfo()

6 6 dgmaxcell A object from dgconstruct() No return. All info is printed to the screen. <- dgconstruct(res=20) dginfo() dgmaxcell Get largest cell id for a Cells are labeled 1-N. This function returns N. This is useful if you want to choose cells from the randomly. dgmaxcell(, res = NA) res A object from dgconstruct() If NA, use the resolution specified by the. Otherwise, override the resolution. The maximum cell id. #Choose a set of cells randomly distributed over the Earth <- dgconstruct(spacing=1000, metric=false, resround='down') N <- 100 #Number of cells maxcell <- dgmaxcell() #Get maximum cell id cells <- sample(1:maxcell, N, replace=false) #Choose random cells grid <- dgcellstogrid(,cells,frame=true,wrapcells=true) #Get grid

7 dgquakes 7 dgquakes All earthquakes with magnitude >=3.0 earthquakes for 2015 A data frame with observations on the following 4 variables. time Time of the quake. Example: T23:39:28.940Z lat Latitude of the epicenter. Example: lon Longitude of the epicenter. Example: mag Magnitude of the quake. Example: 3.2 data(dgquakes) Format data frame Source The USGS Earthquake Hazards Program ( dgrectgrid Return the coordinates constituting the boundary of cells within a specified region Note: This may generate odd results for very large rectangles, because putting rectangles on spheres is weird... as you should know, if you re using this package. dgrectgrid(, minlat = -1, minlon = -1, maxlat = -1, maxlon = -1, frame = TRUE, wrapcells = TRUE, savegrid = FALSE)

8 8 dgrun minlat minlon maxlat maxlon frame wrapcells savegrid A object from dgconstruct() Minimum latitude of region of interest Minimum longitude of region of interest Maximum latitude of region of interest Maximum longitude of region of interest If TRUE, return a data frame suitable for ggplot plotting. If FALSE, return an OGR poly object Cells which cross -180/180 degrees can present difficulties for plotting. Setting this TRUE will result in cells with components in both hemispheres to be mapped entirely to positive degrees (the Eastern hemisphere). As a result, such cells will have components in the range [180,360). Only used when frame=true. If savegrid is true then a KML representation of the grid is produced and the filename returned. No other manipulations are done. Setting this true overrides all other arguments. Returns a data frame or OGR poly object, as specified by frame. If savegrid=true, returns a filename. <- dgconstruct(spacing=1000,metric=false,resround='down') #Get grid cells for the conterminous United States grid <- dgrectgrid(, minlat= , minlon= , maxlat= , maxlon= , frame=true) dgrun A generic function for running dggrid and returning values from it A discrete global grid maps lat-long points to particular cells. These cells are uniquely numbered, for a given resolution, from 1 to some maximum number. Cell numbers may be reused from one resolution to the next. dgrun(, clean = TRUE, check = TRUE, has_output_file = TRUE)

9 dgsetres 9 clean check A object from dgconstruct() If TRUE, delete the temporary files used/produced by dggrid. TODO If TRUE, raise a stop signal if dggrid doesn t run successfully. has_output_file If TRUE, look for output file. If FALSE, capture and return stdout and stderr. If has_output_file is TRUE, a data frame is returned. The calling function is responsible for understanding this frame. If has_output_file is FALSE, the stdout and stderr of dggrid are captured and returned as a character vector. dgsetres Set the resolution of a object Set the resolution of a object dgsetres(, res) res A object from dgconstruct(). Resolution. Must be in the range [0,30]. Larger values represent finer resolutions. Appropriate resolutions can be found with dg_closest_res_to_area(), dg_closest_res_to_spacing(), and dg_closest_res_to_cls(). Default is 9, which corresponds to a cell area of ~2600 sq km and a cell spacing of ~50 km. Default: 9. Returns a object which can be passed to other dggridr functions <- dgconstruct(res=20) <- dgsetres(,10)

10 10 dgshptogrid dgshptogrid Return boundary coordinates for cells intersecting a shapefile Returns the coordinates constituting the boundary of a set of cells which intersect or are contained by a polygon (or polygons) specified in a shapefile. Note that grid cells are also generated for holes in the shapefile s polygon(s). Note that coordinates in the shapefile must be rounded to check polygon intersections. Currently this round preserves eight decimal digits of precision. The eighth decimal place is worth up to 1.1 mm of precision: this is good for charting the motions of tectonic plates and the movements of volcanoes. Permanent, corrected, constantly-running GPS base stations might be able to achieve this level of accuracy. In other words: you should be just fine with this level of precision. dgshptogrid(, shpfname, frame = TRUE, wrapcells = TRUE, savegrid = FALSE) shpfname frame wrapcells savegrid A object from dgconstruct() File name of the shapefile. Filename should end with.shp If TRUE, return a data frame suitable for ggplot plotting. If FALSE, return an OGR poly object Cells which cross -180/180 degrees can present difficulties for plotting. Setting this TRUE will result in cells with components in both hemispheres to be mapped entirely to positive degrees (the Eastern hemisphere). As a result, such cells will have components in the range [180,360). Only used when frame=true. If savegrid is true then a KML representation of the grid is produced and the filename returned. No other manipulations are done. Setting this true overrides all other commands. Returns a data frame or OGR poly object, as specified by frame. If savegrid=true, returns a filename. <- dgconstruct(spacing=25, metric=false, resround='nearest') south_africa_grid <- dgshptogrid(,dg_shpfname_south_africa)

11 dgtransform 11 dgtransform Converts lat-long pairs into discrete global grid cell numbers A discrete global grid maps lat-long points to particular cells. These cells are uniquely numbered, for a given resolution, from 1 to some maximum number. Cell numbers may be reused from one resolution to the next. dgtransform(, lat, lon) lat lon A object from dgconstruct(). A vector of latitudes. Same length at the longtiudes A vector of longitudes. Same length as the latitudes. A vector of the same length as latitudes and longitudes containing the cell id numbers of the points cells in the discrete grid. data(dgquakes) #Construct a grid with cells about ~1000 miles wide <- dgconstruct(spacing=1000,metric=false) dgquakes$cell <- dgtransform(,dgquakes$lat,dgquakes$lon) dgverify Verify that a object has appropriate values Verify that a object has appropriate values dgverify()

12 12 dg_closest_res The object to be verified The function has no return value. A stop signal is raised if the object is misspecified <- dgconstruct(res=20) dgverify() dg_closest_res Determine an appropriate grid resolution based on input data. This is a generic function that is used to determine an appropriate resolution given an area, cell spacing, or correlated length scale. It does so by extracting the appropriate length/area column and searching it for a value close to the input. dg_closest_res(, col, val, round = "nearest", show_info = TRUE, metric = TRUE) col val round show_info metric A object from dgconstruct() Column in which to search for a close value. Should be: AreaKm, SpacingKm, or CLSKm. The value to search for What direction to search in. Must be nearest, up, or down. Print the area, spacing, and CLS of the chosen resolution. Whether input and output should be in metric (TRUE) or imperial (FALSE) A number representing the grid resolution

13 dg_closest_res_to_area 13 ## Not run: <- dgconstruct(res=20) res <- dg_closest_res(,'areakm',1) <- dgsetres(,res) ## End(Not run) dg_closest_res_to_area Determine resolution based on desired area Determine an appropriate grid resolution based on a desired cell area. dg_closest_res_to_area(, area, round = "nearest", show_info = TRUE, metric = TRUE) area round show_info metric A object from dgconstruct() The desired area of the grid s cells What direction to search in. Must be nearest, up, or down. Print the area, spacing, and CLS of the chosen resolution. Whether input and output should be in metric (TRUE) or imperial (FALSE) A number representing the grid resolution <- dgconstruct(res=20) res <- dg_closest_res_to_area(,1) <- dgsetres(,res)

14 14 dg_closest_res_to_spacing dg_closest_res_to_cls Determine an appropriate grid resolution based on a desired characteristic length scale of the cells. The characteristic length scale (CLS) is the diameter of a spherical cap of the same area as a cell of the specified resolution. dg_closest_res_to_cls(, cls, round = "nearest", show_info = TRUE, metric = TRUE) cls round show_info metric A object from dgconstruct() The desired CLS of the cells. What direction to search in. Must be nearest, up, or down. Print the area, spacing, and CLS of the chosen resolution. Whether input and output should be in metric (TRUE) or imperial (FALSE) A number representing the grid resolution <- dgconstruct(res=20) res <- dg_closest_res_to_cls(,1) <- dgsetres(,res) dg_closest_res_to_spacing Determine grid resolution from desired spacing. Determine an appropriate grid resolution based on a desired spacing between the center of adjacent cells.

15 dg_exe_path 15 dg_closest_res_to_spacing(, spacing, round = "nearest", show_info = TRUE, metric = TRUE) spacing round show_info metric A object from dgconstruct() The desired spacing between the center of adjacent cells What direction to search in. Must be nearest, up, or down. Print the area, spacing, and CLS of the chosen resolution. Whether input and output should be in metric (TRUE) or imperial (FALSE) A number representing the grid resolution <- dgconstruct(res=20) res <- dg_closest_res_to_spacing(,1) <- dgsetres(,res) dg_exe_path Get path to dggrid executable Returns a path to the dggrid executable. Used for running stuff. dg_exe_path() A string representing the path to the dggrid executable.

16 16 dg_shpfname_south_africa dg_process_kml Load a KML file Clean up and/or convert a KML grid cell boundary file dg_process_kml(kmlfile, frame, wrapcells) kmlfile frame wrapcells A KML file generated by dgrectgrid() or dgearthgrid() If TRUE, return a data frame suitable for ggplot plotting. If FALSE, return an OGR poly object Cells which cross -180/180 degrees can present difficulties for plotting. Setting this TRUE will result in cells with components in both hemispheres to be mapped entirely to positive degrees (the Eastern hemisphere). As a result, such cells will have components in the range [180,360). Only used when frame=true. Returns a data frame or OGR poly object, as specified by frame dg_shpfname_south_africa National border of South Africa This variable points to a shapefile containing the national border of South Africa dg_shpfname_south_africa Format An object of class character of length 1. A filename of a shapefile containing the national border of South Africa

17 Index Topic datasets dg_shpfname_south_africa, 16 dgquakes, 7 dg_closest_res, 12 dg_closest_res_to_area, 13 dg_closest_res_to_cls, 14 dg_closest_res_to_spacing, 14 dg_exe_path, 15 dg_process_kml, 16 dg_shpfname_south_africa, 16 dgcellstogrid, 2 dgconstruct, 3 dgearthgrid, 4 dggetres, 5 dginfo, 5 dgmaxcell, 6 dgquakes, 7 dgrectgrid, 7 dgrun, 8 dgsetres, 9 dgshptogrid, 10 dgtransform, 11 dgverify, 11 17

Package OECD. R topics documented: January 17, 2016. Type Package Title Search and Extract Data from the OECD Version 0.2.

Package OECD. R topics documented: January 17, 2016. Type Package Title Search and Extract Data from the OECD Version 0.2. Type Package Title Search and Extract Data from the OECD Version 0.2.2 Date 2016-01-17 Package OECD January 17, 2016 Search and extract data from the OECD. License CC0 URL https://www.github.com/expersso/oecd

More information

Package uptimerobot. October 22, 2015

Package uptimerobot. October 22, 2015 Type Package Version 1.0.0 Title Access the UptimeRobot Ping API Package uptimerobot October 22, 2015 Provide a set of wrappers to call all the endpoints of UptimeRobot API which includes various kind

More information

Package retrosheet. April 13, 2015

Package retrosheet. April 13, 2015 Type Package Package retrosheet April 13, 2015 Title Import Professional Baseball Data from 'Retrosheet' Version 1.0.2 Date 2015-03-17 Maintainer Richard Scriven A collection of tools

More information

Package ggrepel. February 8, 2016

Package ggrepel. February 8, 2016 Version 0.5 Package ggrepel February 8, 2016 Title Repulsive Text and Label Geoms for 'ggplot2' Description Provides text and label geoms for 'ggplot2' that help to avoid overlapping text labels. Labels

More information

Package LexisPlotR. R topics documented: April 4, 2016. Type Package

Package LexisPlotR. R topics documented: April 4, 2016. Type Package Type Package Package LexisPlotR April 4, 2016 Title Plot Lexis Diagrams for Demographic Purposes Version 0.3 Date 2016-04-04 Author [aut, cre], Marieke Smilde-Becker [ctb] Maintainer

More information

Package searchconsoler

Package searchconsoler Title Google Search Console R Client Version 0.2.0 Package searchconsoler April 3, 2016 Provides an interface with the Google Search Console, formally called Google Webmaster Tools. URL https://github.com/markedmondson1234/searchconsoler

More information

Package urltools. October 11, 2015

Package urltools. October 11, 2015 Type Package Package urltools October 11, 2015 Title Vectorised Tools for URL Handling and Parsing Version 1.3.2 Date 2015-10-09 Author Oliver Keyes [aut, cre], Jay Jacobs [aut, cre], Mark Greenaway [ctb],

More information

Package MBA. February 19, 2015. Index 7. Canopy LIDAR data

Package MBA. February 19, 2015. Index 7. Canopy LIDAR data Version 0.0-8 Date 2014-4-28 Title Multilevel B-spline Approximation Package MBA February 19, 2015 Author Andrew O. Finley , Sudipto Banerjee Maintainer Andrew

More information

Package sendmailr. February 20, 2015

Package sendmailr. February 20, 2015 Version 1.2-1 Title send email using R Package sendmailr February 20, 2015 Package contains a simple SMTP client which provides a portable solution for sending email, including attachment, from within

More information

Package DCG. R topics documented: June 8, 2016. Type Package

Package DCG. R topics documented: June 8, 2016. Type Package Type Package Package DCG June 8, 2016 Title Data Cloud Geometry (DCG): Using Random Walks to Find Community Structure in Social Network Analysis Version 0.9.2 Date 2016-05-09 Depends R (>= 2.14.0) Data

More information

Package optirum. December 31, 2015

Package optirum. December 31, 2015 Title Financial Functions & More Package optirum December 31, 2015 This fills the gaps credit analysts and loan modellers at Optimum Credit identify in the existing R code body. It allows for the production

More information

Package DSsim. September 25, 2015

Package DSsim. September 25, 2015 Package DSsim September 25, 2015 Depends graphics, splancs, mrds, mgcv, shapefiles, methods Suggests testthat, parallel Type Package Title Distance Sampling Simulations Version 1.0.4 Date 2015-09-25 LazyLoad

More information

Package decompr. August 17, 2016

Package decompr. August 17, 2016 Version 4.5.0 Title Global-Value-Chain Decomposition Package decompr August 17, 2016 Two global-value-chain decompositions are implemented. Firstly, the Wang-Wei-Zhu (Wang, Wei, and Zhu, 2013) algorithm

More information

Package tagcloud. R topics documented: July 3, 2015

Package tagcloud. R topics documented: July 3, 2015 Package tagcloud July 3, 2015 Type Package Title Tag Clouds Version 0.6 Date 2015-07-02 Author January Weiner Maintainer January Weiner Description Generating Tag and Word Clouds.

More information

Package SHELF. February 5, 2016

Package SHELF. February 5, 2016 Type Package Package SHELF February 5, 2016 Title Tools to Support the Sheffield Elicitation Framework (SHELF) Version 1.1.0 Date 2016-01-29 Author Jeremy Oakley Maintainer Jeremy Oakley

More information

Package syuzhet. February 22, 2015

Package syuzhet. February 22, 2015 Type Package Package syuzhet February 22, 2015 Title Extracts Sentiment and Sentiment-Derived Plot Arcs from Text Version 0.2.0 Date 2015-01-20 Maintainer Matthew Jockers Extracts

More information

Package sjdbc. R topics documented: February 20, 2015

Package sjdbc. R topics documented: February 20, 2015 Package sjdbc February 20, 2015 Version 1.5.0-71 Title JDBC Driver Interface Author TIBCO Software Inc. Maintainer Stephen Kaluzny Provides a database-independent JDBC interface. License

More information

Guide to Viewing Maps in Google Earth

Guide to Viewing Maps in Google Earth Guide to Viewing Maps in Google Earth The BCT made the decision to provide the GIS (Geographic Information System) resources for Bat Groups in the form of Google Earth maps because they do not require

More information

Contents. The OWRB Floodplain Viewer. Creating Maps... 8. Helpful Tips... 10

Contents. The OWRB Floodplain Viewer. Creating Maps... 8. Helpful Tips... 10 Contents QUICK START GUIDE... 2-5 Add layers...9 Search for Layers...9 COMPREHENSIVE GUIDE... 6 Navigate the map...6 Locate specific places...6 Add layer from file...9 Add layer from web...9 Display pop-up

More information

In mathematics, there are four attainment targets: using and applying mathematics; number and algebra; shape, space and measures, and handling data.

In mathematics, there are four attainment targets: using and applying mathematics; number and algebra; shape, space and measures, and handling data. MATHEMATICS: THE LEVEL DESCRIPTIONS In mathematics, there are four attainment targets: using and applying mathematics; number and algebra; shape, space and measures, and handling data. Attainment target

More information

Exploring plate motion and deformation in California with GPS

Exploring plate motion and deformation in California with GPS Exploring plate motion and deformation in California with GPS Student worksheet Cate Fox-Lent, UNAVCO master teacher; Andy Newman, Georgia Institute of Technology; Shelley Olds, UNAVCO; and revised by

More information

Package TSfame. February 15, 2013

Package TSfame. February 15, 2013 Package TSfame February 15, 2013 Version 2012.8-1 Title TSdbi extensions for fame Description TSfame provides a fame interface for TSdbi. Comprehensive examples of all the TS* packages is provided in the

More information

Package globe. August 29, 2016

Package globe. August 29, 2016 Type Package Package globe August 29, 2016 Title Plot 2D and 3D Views of the Earth, Including Major Coastline Version 1.1-2 Date 2016-01-29 Maintainer Adrian Baddeley Depends

More information

Quick and Easy Web Maps with Google Fusion Tables. SCO Technical Paper

Quick and Easy Web Maps with Google Fusion Tables. SCO Technical Paper Quick and Easy Web Maps with Google Fusion Tables SCO Technical Paper Version History Version Date Notes Author/Contact 1.0 July, 2011 Initial document created. Howard Veregin 1.1 Dec., 2011 Updated to

More information

Ring of Fire. (15 minutes) Earthquakes and volcanoes occur in relationship to each other.

Ring of Fire. (15 minutes) Earthquakes and volcanoes occur in relationship to each other. Ring of Fire Lesson Concept Link Earthquakes and volcanoes occur in relationship to each other. Lesson 6.12 develops concepts about preparation for earthquakes in terms of home or school damage or lack

More information

NEW MEXICO Grade 6 MATHEMATICS STANDARDS

NEW MEXICO Grade 6 MATHEMATICS STANDARDS PROCESS STANDARDS To help New Mexico students achieve the Content Standards enumerated below, teachers are encouraged to base instruction on the following Process Standards: Problem Solving Build new mathematical

More information

Using Google Earth for Environmental Science Research

Using Google Earth for Environmental Science Research Using Google Earth for Environmental Science Research This document is up-to-date as of August 2013. If you have any questions or additions to this material please email [email protected]. Note: this

More information

Package RIGHT. March 30, 2015

Package RIGHT. March 30, 2015 Type Package Title R Interactive Graphics via HTML Version 0.2.0 Date 2015-03-30 Package RIGHT March 30, 2015 Author ChungHa Sung, TaeJoon Song, JongHyun Bae, SangGi Hong, Jae W. Lee, and Junghoon Lee

More information

How to georectify an image in ArcMap 10

How to georectify an image in ArcMap 10 How to georectify an image in ArcMap 10 The University Library has a large collection of historical aerial photos for some North Carolina Counties ( http://www.lib.unc.edu/reference/gis/usda/index.html

More information

Package benford.analysis

Package benford.analysis Type Package Package benford.analysis November 17, 2015 Title Benford Analysis for Data Validation and Forensic Analytics Version 0.1.3 Author Carlos Cinelli Maintainer Carlos Cinelli

More information

Plotting Earthquake Epicenters an activity for seismic discovery

Plotting Earthquake Epicenters an activity for seismic discovery Plotting Earthquake Epicenters an activity for seismic discovery Tammy K Bravo Anne M Ortiz Plotting Activity adapted from: Larry Braile and Sheryl Braile Department of Earth and Atmospheric Sciences Purdue

More information

Detailed information about Gerber, NC Drill and NC Route.

Detailed information about Gerber, NC Drill and NC Route. Title: Product: Summary: Manufacturing Output OrCAD / Allegro PCB Editor Detailed information about Gerber, NC Drill and NC Route. Author/Date: Beate Wilke / 27.05.2009 Table of Contents 1 Gerber... 2

More information

Charlesworth School Year Group Maths Targets

Charlesworth School Year Group Maths Targets Charlesworth School Year Group Maths Targets Year One Maths Target Sheet Key Statement KS1 Maths Targets (Expected) These skills must be secure to move beyond expected. I can compare, describe and solve

More information

Tutorial 8 Raster Data Analysis

Tutorial 8 Raster Data Analysis Objectives Tutorial 8 Raster Data Analysis This tutorial is designed to introduce you to a basic set of raster-based analyses including: 1. Displaying Digital Elevation Model (DEM) 2. Slope calculations

More information

Package packrat. R topics documented: March 28, 2016. Type Package

Package packrat. R topics documented: March 28, 2016. Type Package Type Package Package packrat March 28, 2016 Title A Dependency Management System for Projects and their R Package Dependencies Version 0.4.7-1 Author Kevin Ushey, Jonathan McPherson, Joe Cheng, Aron Atkins,

More information

Lesson 15 - Fill Cells Plugin

Lesson 15 - Fill Cells Plugin 15.1 Lesson 15 - Fill Cells Plugin This lesson presents the functionalities of the Fill Cells plugin. Fill Cells plugin allows the calculation of attribute values of tables associated with cell type layers.

More information

Package jrvfinance. R topics documented: October 6, 2015

Package jrvfinance. R topics documented: October 6, 2015 Package jrvfinance October 6, 2015 Title Basic Finance; NPV/IRR/Annuities/Bond-Pricing; Black Scholes Version 1.03 Implements the basic financial analysis functions similar to (but not identical to) what

More information

Primary Curriculum 2014

Primary Curriculum 2014 Primary Curriculum 2014 Suggested Key Objectives for Mathematics at Key Stages 1 and 2 Year 1 Maths Key Objectives Taken from the National Curriculum 1 Count to and across 100, forwards and backwards,

More information

Package erp.easy. September 26, 2015

Package erp.easy. September 26, 2015 Type Package Package erp.easy September 26, 2015 Title Event-Related Potential (ERP) Data Exploration Made Easy Version 0.6.3 A set of user-friendly functions to aid in organizing, plotting and analyzing

More information

Introduction to GIS. http://libguides.mit.edu/gis

Introduction to GIS. http://libguides.mit.edu/gis Introduction to GIS http://libguides.mit.edu/gis 1 Overview What is GIS? Types of Data and Projections What can I do with GIS? Data Sources and Formats Software Data Management Tips 2 What is GIS? 3 Characteristics

More information

Package hazus. February 20, 2015

Package hazus. February 20, 2015 Package hazus February 20, 2015 Title Damage functions from FEMA's HAZUS software for use in modeling financial losses from natural disasters Damage Functions (DFs), also known as Vulnerability Functions,

More information

Package png. February 20, 2015

Package png. February 20, 2015 Version 0.1-7 Title Read and write PNG images Package png February 20, 2015 Author Simon Urbanek Maintainer Simon Urbanek Depends R (>= 2.9.0)

More information

The following is an overview of lessons included in the tutorial.

The following is an overview of lessons included in the tutorial. Chapter 2 Tutorial Tutorial Introduction This tutorial is designed to introduce you to some of Surfer's basic features. After you have completed the tutorial, you should be able to begin creating your

More information

Where in the World Are All the Earthquakes?

Where in the World Are All the Earthquakes? Curry School of Education, University of Virginia www.teacherlink.org/content/science/ Where in the World Are All the Earthquakes? In this activity, students go to the United States Geological Survey (USGS)

More information

Drawing a histogram using Excel

Drawing a histogram using Excel Drawing a histogram using Excel STEP 1: Examine the data to decide how many class intervals you need and what the class boundaries should be. (In an assignment you may be told what class boundaries to

More information

Package hive. July 3, 2015

Package hive. July 3, 2015 Version 0.2-0 Date 2015-07-02 Title Hadoop InteractiVE Package hive July 3, 2015 Description Hadoop InteractiVE facilitates distributed computing via the MapReduce paradigm through R and Hadoop. An easy

More information

Numeracy Targets. I can count at least 20 objects

Numeracy Targets. I can count at least 20 objects Targets 1c I can read numbers up to 10 I can count up to 10 objects I can say the number names in order up to 20 I can write at least 4 numbers up to 10. When someone gives me a small number of objects

More information

R Graphics Cookbook. Chang O'REILLY. Winston. Tokyo. Beijing Cambridge. Farnham Koln Sebastopol

R Graphics Cookbook. Chang O'REILLY. Winston. Tokyo. Beijing Cambridge. Farnham Koln Sebastopol R Graphics Cookbook Winston Chang Beijing Cambridge Farnham Koln Sebastopol O'REILLY Tokyo Table of Contents Preface ix 1. R Basics 1 1.1. Installing a Package 1 1.2. Loading a Package 2 1.3. Loading a

More information

Package GEOquery. August 18, 2015

Package GEOquery. August 18, 2015 Type Package Package GEOquery August 18, 2015 Title Get data from NCBI Gene Expression Omnibus (GEO) Version 2.34.0 Date 2014-09-28 Author Maintainer BugReports

More information

Package bizdays. March 13, 2015

Package bizdays. March 13, 2015 Title Business Days Calculations and Utilities Package bizdays March 13, 2015 Business days culations based on a list of holidays and nonworking weekdays. Quite useful for fixed income and derivatives

More information

Everyday Mathematics CCSS EDITION CCSS EDITION. Content Strand: Number and Numeration

Everyday Mathematics CCSS EDITION CCSS EDITION. Content Strand: Number and Numeration CCSS EDITION Overview of -6 Grade-Level Goals CCSS EDITION Content Strand: Number and Numeration Program Goal: Understand the Meanings, Uses, and Representations of Numbers Content Thread: Rote Counting

More information

PLOTTING SURVEYING DATA IN GOOGLE EARTH

PLOTTING SURVEYING DATA IN GOOGLE EARTH PLOTTING SURVEYING DATA IN GOOGLE EARTH D M STILLMAN Abstract Detail surveys measured with a total station use local coordinate systems. To make the data obtained from such surveys compatible with Google

More information

Everyday Mathematics GOALS

Everyday Mathematics GOALS Copyright Wright Group/McGraw-Hill GOALS The following tables list the Grade-Level Goals organized by Content Strand and Program Goal. Content Strand: NUMBER AND NUMERATION Program Goal: Understand the

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

Prentice Hall Mathematics: Course 1 2008 Correlated to: Arizona Academic Standards for Mathematics (Grades 6)

Prentice Hall Mathematics: Course 1 2008 Correlated to: Arizona Academic Standards for Mathematics (Grades 6) PO 1. Express fractions as ratios, comparing two whole numbers (e.g., ¾ is equivalent to 3:4 and 3 to 4). Strand 1: Number Sense and Operations Every student should understand and use all concepts and

More information

Cabri Geometry Application User Guide

Cabri Geometry Application User Guide Cabri Geometry Application User Guide Preview of Geometry... 2 Learning the Basics... 3 Managing File Operations... 12 Setting Application Preferences... 14 Selecting and Moving Objects... 17 Deleting

More information

Finding location and velocity data for PBO GPS stations

Finding location and velocity data for PBO GPS stations Finding location and velocity data for PBO GPS stations Original activity by Vince Cronin (Baylor University). Revisions by Beth Pratt-Sitaula (UNAVCO). Analyzing the velocities recorded at different GPS

More information

Vector analysis - introduction Spatial data management operations - Assembling datasets for analysis. Data management operations

Vector analysis - introduction Spatial data management operations - Assembling datasets for analysis. Data management operations Vector analysis - introduction Spatial data management operations - Assembling datasets for analysis Transform (reproject) Merge Append Clip Dissolve The role of topology in GIS analysis Data management

More information

Package plan. R topics documented: February 20, 2015

Package plan. R topics documented: February 20, 2015 Package plan February 20, 2015 Version 0.4-2 Date 2013-09-29 Title Tools for project planning Author Maintainer Depends R (>= 0.99) Supports the creation of burndown

More information

Using Google Earth to Explore Plate Tectonics

Using Google Earth to Explore Plate Tectonics Using Google Earth to Explore Plate Tectonics Laurel Goodell, Department of Geosciences, Princeton University, Princeton, NJ 08544 [email protected] Inspired by, and borrows from, the GIS-based Exploring

More information

Tutorial 6 GPS/Point Shapefile Creation

Tutorial 6 GPS/Point Shapefile Creation Tutorial 6 GPS/Point Shapefile Creation The objectives of this tutorial include: 1. Converting GPS field collected point information into a shapefile 2. Creating a shapefile from a simple x,y coordinate

More information

Everyday Mathematics. Grade 4 Grade-Level Goals CCSS EDITION. Content Strand: Number and Numeration. Program Goal Content Thread Grade-Level Goal

Everyday Mathematics. Grade 4 Grade-Level Goals CCSS EDITION. Content Strand: Number and Numeration. Program Goal Content Thread Grade-Level Goal Content Strand: Number and Numeration Understand the Meanings, Uses, and Representations of Numbers Understand Equivalent Names for Numbers Understand Common Numerical Relations Place value and notation

More information

Three daily lessons. Year 5

Three daily lessons. Year 5 Unit 6 Perimeter, co-ordinates Three daily lessons Year 4 Autumn term Unit Objectives Year 4 Measure and calculate the perimeter of rectangles and other Page 96 simple shapes using standard units. Suggest

More information

Package R4CDISC. September 5, 2015

Package R4CDISC. September 5, 2015 Type Package Title Read CDISC Data Files Version 0.4 Date 2015-9-5 Depends R (>= 3.0.3, XML Author Package R4CDISC September 5, 2015 Maintainer URL https://github.com/i-akiya/r4cdisc

More information

Package pxr. February 20, 2015

Package pxr. February 20, 2015 Type Package Title PC-Axis with R Version 0.40.0 Date 2013-06-11 Encoding UTF-8 Package pxr February 20, 2015 Maintainer Carlos J. Gil Bellosta The pxr package provides a set of

More information

Everyday Mathematics. Grade 4 Grade-Level Goals. 3rd Edition. Content Strand: Number and Numeration. Program Goal Content Thread Grade-Level Goals

Everyday Mathematics. Grade 4 Grade-Level Goals. 3rd Edition. Content Strand: Number and Numeration. Program Goal Content Thread Grade-Level Goals Content Strand: Number and Numeration Understand the Meanings, Uses, and Representations of Numbers Understand Equivalent Names for Numbers Understand Common Numerical Relations Place value and notation

More information

Package tikzdevice. February 20, 2015

Package tikzdevice. February 20, 2015 Encoding UTF-8 Type Package Title R Graphics Output in LaTeX Format Version 0.8.1 Date 2015-01-07 URL https://github.com/yihui/tikzdevice Package tikzdevice February 20, 2015 BugReports https://github.com/yihui/tikzdevice/issues

More information

Package hive. January 10, 2011

Package hive. January 10, 2011 Package hive January 10, 2011 Version 0.1-9 Date 2011-01-09 Title Hadoop InteractiVE Description Hadoop InteractiVE, is an R extension facilitating distributed computing via the MapReduce paradigm. It

More information

Package WikipediR. January 13, 2016

Package WikipediR. January 13, 2016 Type Package Title A MediaWiki API Wrapper Version 1.3.0 Date 2016-01-12 Author Oliver Keyes Package WikipediR January 13, 2016 Maintainer Oliver Keyes A wrapper for the MediaWiki

More information

Package hoarder. June 30, 2015

Package hoarder. June 30, 2015 Type Package Title Information Retrieval for Genetic Datasets Version 0.1 Date 2015-06-29 Author [aut, cre], Anu Sironen [aut] Package hoarder June 30, 2015 Maintainer Depends

More information

EVERY DAY COUNTS CALENDAR MATH 2005 correlated to

EVERY DAY COUNTS CALENDAR MATH 2005 correlated to EVERY DAY COUNTS CALENDAR MATH 2005 correlated to Illinois Mathematics Assessment Framework Grades 3-5 E D U C A T I O N G R O U P A Houghton Mifflin Company YOUR ILLINOIS GREAT SOURCE REPRESENTATIVES:

More information

Lab 3. GIS Data Entry and Editing.

Lab 3. GIS Data Entry and Editing. Lab 3. GIS Data Entry and Editing. The goal: To learn about the vector (arc/node) and raster data types entry and editing. Objective: Create vector and raster datasets and visualize them. Software for

More information

Package wordnet. January 6, 2016

Package wordnet. January 6, 2016 Title WordNet Interface Version 0.1-11 Package wordnet January 6, 2016 An interface to WordNet using the Jawbone Java API to WordNet. WordNet () is a large lexical database

More information

OurPCB Gerber Generation - Altium

OurPCB Gerber Generation - Altium OurPCB Gerber Generation - Altium Summary Each Gerber file corresponds to one layer in the physical board the component overlay, top signal layer, bottom signal layer, the solder masking layers and so

More information

Chapter 4: The Concept of Area

Chapter 4: The Concept of Area Chapter 4: The Concept of Area Defining Area The area of a shape or object can be defined in everyday words as the amount of stuff needed to cover the shape. Common uses of the concept of area are finding

More information

EARTHQUAKES. Compressional Tensional Slip-strike

EARTHQUAKES. Compressional Tensional Slip-strike Earthquakes-page 1 EARTHQUAKES Earthquakes occur along faults, planes of weakness in the crustal rocks. Although earthquakes can occur anywhere, they are most likely along crustal plate boundaries, such

More information

The Keep It Simple, Steel (KISS) Standard

The Keep It Simple, Steel (KISS) Standard The Keep It Simple, Steel (KISS) Standard A standard Electronic Data Interchange (EDI) format for the exchange of Bill of Material (BOM) information within the steel fabrication industry Updated in March

More information

Package tvm. R topics documented: August 21, 2015. Type Package Title Time Value of Money Functions Version 0.3.0 Author Juan Manuel Truppia

Package tvm. R topics documented: August 21, 2015. Type Package Title Time Value of Money Functions Version 0.3.0 Author Juan Manuel Truppia Type Package Title Time Value of Money Functions Version 0.3.0 Author Juan Manuel Truppia Package tvm August 21, 2015 Maintainer Juan Manuel Truppia Functions for managing cashflows

More information

11 Printing Designs. When you have completed this chapter, you will be able to:

11 Printing Designs. When you have completed this chapter, you will be able to: 11 Printing Designs Creating printed documents is the end we have worked towards from the beginning of this course. We have already been introduced to it very briefly with Printing - A First Look on page

More information

Key Stage 2 Mathematics Programme of Study

Key Stage 2 Mathematics Programme of Study Deeloping numerical reasoning Identify processes and connections Represent and communicate Reiew transfer mathematical to a ariety of contexts and eeryday situations identify the appropriate steps and

More information

MATHS LEVEL DESCRIPTORS

MATHS LEVEL DESCRIPTORS MATHS LEVEL DESCRIPTORS Number Level 3 Understand the place value of numbers up to thousands. Order numbers up to 9999. Round numbers to the nearest 10 or 100. Understand the number line below zero, and

More information

Package whoapi. R topics documented: June 26, 2015. Type Package Title A 'Whoapi' API Client Version 0.1.0 Date 2015-06-16 Author Oliver Keyes

Package whoapi. R topics documented: June 26, 2015. Type Package Title A 'Whoapi' API Client Version 0.1.0 Date 2015-06-16 Author Oliver Keyes Type Package Title A 'Whoapi' API Client Version 0.1.0 Date 2015-06-16 Author Oliver Keyes Package whoapi June 26, 2015 Maintainer Oliver Keyes Retrieve data from the 'Whoapi' (https://whoapi.com)

More information

Reading & Writing Spatial Data in R John Lewis. Some material used in these slides are taken from presentations by Roger Bivand and David Rossiter

Reading & Writing Spatial Data in R John Lewis. Some material used in these slides are taken from presentations by Roger Bivand and David Rossiter Reading & Writing Spatial Data in R John Lewis Some material used in these slides are taken from presentations by Roger Bivand and David Rossiter Introduction Having described how spatial data may be represented

More information

Using GPS Data to Learn about Tectonic Plate Movement, Earthquakes, Volcanoes, and Other Applications: Ideas for Teaching

Using GPS Data to Learn about Tectonic Plate Movement, Earthquakes, Volcanoes, and Other Applications: Ideas for Teaching Using GPS Data to Learn about Tectonic Plate Movement, Earthquakes, Volcanoes, and Other Applications: Ideas for Teaching Shelley Olds UNAVCO February 11, 2008 URLs UNAVCO Data for Educators http://www.unavco.org/edu_outreach/data.html

More information

Tutorial Creating a regular grid for point sampling

Tutorial Creating a regular grid for point sampling This tutorial describes how to use the fishnet, clip, and optionally the buffer tools in ArcGIS 10 to generate a regularly-spaced grid of sampling points inside a polygon layer. The steps below should

More information

Chapter 111. Texas Essential Knowledge and Skills for Mathematics. Subchapter A. Elementary

Chapter 111. Texas Essential Knowledge and Skills for Mathematics. Subchapter A. Elementary Elementary 111.A. Chapter 111. Texas Essential Knowledge and Skills for Mathematics Subchapter A. Elementary Statutory Authority: The provisions of this Subchapter A issued under the Texas Education Code,

More information

Step 3: Go to Column C. Use the function AVERAGE to calculate the mean values of n = 5. Column C is the column of the means.

Step 3: Go to Column C. Use the function AVERAGE to calculate the mean values of n = 5. Column C is the column of the means. EXAMPLES - SAMPLING DISTRIBUTION EXCEL INSTRUCTIONS This exercise illustrates the process of the sampling distribution as stated in the Central Limit Theorem. Enter the actual data in Column A in MICROSOFT

More information

1. Download Track using BaseMap if using Oregon (MapSource does not work with Oregon)

1. Download Track using BaseMap if using Oregon (MapSource does not work with Oregon) RegisCad GARMIN TRACKS LAT, LONG --> Y,X 1. Download Track using BaseMap if using Oregon (MapSource does not work with Oregon) 2. Edit unnecessary points in BaseMap 3. Save as.gdb file 4. Bring into Mapsource

More information

Random Map Generator v1.0 User s Guide

Random Map Generator v1.0 User s Guide Random Map Generator v1.0 User s Guide Jonathan Teutenberg 2003 1 Map Generation Overview...4 1.1 Command Line...4 1.2 Operation Flow...4 2 Map Initialisation...5 2.1 Initialisation Parameters...5 -w xxxxxxx...5

More information

CAB TRAVEL TIME PREDICTI - BASED ON HISTORICAL TRIP OBSERVATION

CAB TRAVEL TIME PREDICTI - BASED ON HISTORICAL TRIP OBSERVATION CAB TRAVEL TIME PREDICTI - BASED ON HISTORICAL TRIP OBSERVATION N PROBLEM DEFINITION Opportunity New Booking - Time of Arrival Shortest Route (Distance/Time) Taxi-Passenger Demand Distribution Value Accurate

More information

Tallahassee Community College PERIMETER

Tallahassee Community College PERIMETER Tallahassee Community College 47 PERIMETER The perimeter of a plane figure is the distance around it. Perimeter is measured in linear units because we are finding the total of the lengths of the sides

More information

Object systems available in R. Why use classes? Information hiding. Statistics 771. R Object Systems Managing R Projects Creating R Packages

Object systems available in R. Why use classes? Information hiding. Statistics 771. R Object Systems Managing R Projects Creating R Packages Object systems available in R Statistics 771 R Object Systems Managing R Projects Creating R Packages Douglas Bates R has two object systems available, known informally as the S3 and the S4 systems. S3

More information

Package fimport. February 19, 2015

Package fimport. February 19, 2015 Version 3000.82 Revision 5455 Date 2013-03-15 Package fimport February 19, 2015 Title Rmetrics - Economic and Financial Data Import Author Diethelm Wuertz and many others Depends R (>= 2.13.0), methods,

More information