Package rlas. June 11, 2018

Size: px
Start display at page:

Download "Package rlas. June 11, 2018"

Transcription

1 Type Package Package rlas June 11, 2018 Title Read and Write 'las' and 'laz' Binary File Formats Used for Remote Sensing Data Version Date Read and write 'las' and 'laz' binary file formats. The LAS file format is a public file format for the interchange of 3-dimensional point cloud data between data users. The LAS specifications are approved by the American Society for Photogrammetry and Remote Sensing < The LAZ file format is an open and lossless compression scheme for binary LAS format versions 1.0 to 1.3 < URL BugReports License GPL-3 Depends R (>= 3.0.0) Imports data.table,rcpp,uuid LazyData true RoxygenNote LinkingTo Rcpp Suggests testthat Encoding UTF-8 NeedsCompilation yes Author Jean-Romain Roussel [aut, cre, cph], Florian De Boissieu [aut, ctb] (Enable the support of.lax file and extra byte attributes), Martin Isenburg [cph] (Is the author of the LASlib and LASzip libraries), David Auty [ctb] (Reviewed the documentation), Pierrick Marie [ctb] (Helped to compile LASlib code in R) Maintainer Jean-Romain Roussel <jean-romain.roussel.1@ulaval.ca> 1

2 2 check_data Repository CRAN Date/Publication :10:52 UTC R topics documented: check_data header_add_extrabytes header_create read.las read.lasheader readlasdata readlasheader write.las writelas writelax Index 12 check_data Check if data and headers are correct las files are normalized files. The check_* functions test whether either the dataset is valid, the header is valid, or if the header is in accordance with the data. check_data(data) check_header(header) check_data_vs_header(header, data,...) data a data.frame or a data.table containing a point cloud header a list containing the header of a las file... internal use only

3 header_add_extrabytes 3 header_add_extrabytes Variable length records tools Functions that update a header to describe variable length records according to the LAS specifications header_add_extrabytes(header, data, name, desc) header_add_extrabytes_manual(header, name, desc, type, offset = NULL, scale = NULL, max = NULL, min = NULL, NA_value = NULL) header data name desc type scale, offset min, max NA_value list vector. Data that must be added in the extrabytes attributes. character. The name of the extrabytes attributes to add in the file. character. The description of the extrabytes attributes to add in the file. integer. The data type of the extrabytes attributes (page 25 of the spec). numeric. The scale and offset of the data. NULL if not relevant. numeric or integer. The minimum and maximum value of the data. NULL if not relevant. numeric or integer. NA is not a valid value. At writing time it will be replaced by this value that will be considered as NA. NULL if not relevant. Examples data = data.frame(x = c( , , ), Y = c( , , ), Z = c( , , ), gpstime = c( , , ), Intensity = c(82l, 54L, 27L), ReturnNumber = c(1l, 1L, 2L), NumberOfReturns = c(1l, 1L, 2L), ScanDirectionFlag = c(1l, 1L, 1L), EdgeOfFlightline = c(1l, 0L, 0L), Classification = c(1l, 1L, 1L), ScanAngle = c(-21l, -21L, -21L), UserData = c(32l, 32L, 32L), PointSourceID = c(17l, 17L, 17L), treeid = c(1l, 1L, 1L)) lasheader = header_create(data)

4 4 header_create lasheader[["variable Length Records"]] lasheader = header_add_extrabytes(lasheader, data$treeid, "treeid", "An id for each tree") lasheader[["variable Length Records"]] header_create Public header block tools Create or update a header for a las file from a dataset. A las file consists of two parts. A header that describes the data and the data itself. These functions make valid headers (public header block only) that can be used in write.las. header_create(data) header_update(header, data) data header data.frame or data.table list. A header Details header_create makes a full header from data. header_update modifies the information that needs to be updated. But most of the original information is not modified, for example point data format is kept as is. A list containing the metadata required to write a las file. Examples lasdata = data.frame(x = c( , , ), Y = c( , , ), Z = c( , , ), gpstime = c( , , ), Intensity = c(82l, 54L, 27L), ReturnNumber = c(1l, 1L, 2L), NumberOfReturns = c(1l, 1L, 2L), ScanDirectionFlag = c(1l, 1L, 1L), EdgeOfFlightline = c(1l, 0L, 0L), Classification = c(1l, 1L, 1L), ScanAngle = c(-21l, -21L, -21L), UserData = c(32l, 32L, 32L),

5 read.las 5 lasheader = header_create(lasdata) PointSourceID = c(17l, 17L, 17L), treeid = c(1l, 1L, 1L)) read.las Read data from a.las or.laz file Reads data from.las or.laz files in format 1 to 4 according to LAS specifications and returns a data.table labeled according to LAS specifications. See the ASPRS documentation for the LAS file format. The optional parameters enable the user to save memory by choosing to load only the fields they need. Moreover, the function provides a streaming filter to load only the points of interest into the memory and hence avoids allocating any superfluous memory. read.las(files, select = "*", filter = "") files select filter array of characters character. select only columns of interest to save memory (see details) character. streaming filters - filter data while reading the file (see details) Details Select: the select argument specifies the data that will actually be loaded. For example, xyzia means that the x, y, and z coordinates, the intensity and the scan angle will be loaded. The supported entries are t - gpstime, a - scan angle, i - intensity, n - number of returns, r - return number, c - classification, s - synthetic flag, k - key-point flag, w - withheld flag, u - user data, p - point source ID, e - edge of flight line flag, d - direction of scan flag, R - red channel of RGB color, G - green channel of RGB color, B - blue channel of RGB color, N - near-infrared channel. Also numbers from 1 to 9 for the extra bytes data numbers 1 to 9. 0 enables all extra bytes to be loaded and * is the wildcard that enables everything to be loaded from the LAS file. Note that x, y, z are implicit and always loaded. xyzia is equivalent to ia. Filter: the filter argument allows filtering of the point cloud while reading files. rlas relies on the well-known LASlib library written by Martin Isenburg to read the binary files. Thus the package inherits the filter commands available in LAStools. To use these filters the user can pass the common commands from LAStools into the parameter 'filter'. Type rlas:::lasfilterusage() to display the LASlib documentation and the available filters. A data.table

6 6 read.lasheader Examples lazfile <- system.file("extdata", "example.laz", package="rlas") lasdata <- read.las(lazfile) lasdata <- read.las(lazfile, filter = "-keep_first") lasdata <- read.las(lazfile, filter = "-drop_intensity_below 80") lasdata <- read.las(lazfile, select = "xyzia") read.lasheader Read header from a.las or.laz file Reads header from.las or.laz files in format 1 to 4 according to LAS specifications and returns a list labeled according to LAS specifications. See the ASPRS documentation for the LAS file format. read.lasheader(file) file filepath character string to the.las or.laz file A list See Also Other rlas: write.las Examples lazfile <- system.file("extdata", "example.laz", package="rlas") lasheader <- read.lasheader(lazfile)

7 readlasdata 7 readlasdata Read data from a.las or.laz file (deprecated) Use read.las readlasdata(files, i = TRUE, r = TRUE, n = TRUE, d = TRUE, e = TRUE, c = TRUE, a = TRUE, u = TRUE, p = TRUE, rgb = TRUE, t = TRUE, filter = "", eb = 0) files i r n d e c a u p rgb t filter eb filepath character string to the.las or.laz files logical. do you want to load the Intensity field? default: TRUE logical. do you want to load the ReturnNumber field? default: TRUE logical. do you want to load the NumberOfReturns field? default: TRUE logical. do you want to load the ScanDirectionFlag field? default: TRUE logical. do you want to load the EdgeOfFlightline field? default: TRUE logical. do you want to load the Classification field? default: TRUE logical. do you want to load the ScanAngle field? default: TRUE logical. do you want to load the UserData field? default: TRUE logical. do you want to load the PointSourceID field? default: TRUE logical. do you want to load R,G and B fields? default: TRUE logical. do you want to load gpstime fields? default: TRUE character. filter data while reading the file (streaming filter) without allocating any useless memory. (see Details). integer vector. which extra byte attributes to load (see LAS file format specs). default is 0 meaning that all extra fields will be loaded. c(1,3,7) to load the first, the third and the seventh extra byte attributes. None is numeric(0) or NULL. A data.table

8 8 write.las readlasheader (deprecated) Read header from a.las or.laz file (deprecated) Use read.lasheader readlasheader(file) file filepath character string to the.las or.laz file A list write.las Write a.las or.laz file Write a.las or.laz file. The user provides a table with the data in columns. Column names must respect the specified allowed names (see details). A correct and complete header must also be provided. This header can optionally be generated with header_create. write.las(file, header, data) file header data character. file path to.las or.laz file list. Can be partially recycled from another file (see read.lasheader) and updated with header_update or generated with header_create. data.frame or data.table that contains the data to write in the file. Column names must respect the imposed nomenclature (see details)

9 writelas 9 Details Allowed names are "X", "Y", "Z", "gpstime", "Intensity", "ReturnNumber", "NumberOfReturns", "ScanDirectionFlag", "EdgeOfFlightline", "Classification", "ScanAngle", "UserData", "PointSourceID", "R", "G", "B", "NIR". All other extra columns will be written in extra bytes attributes only if the header specifically states these data should be saved into extra bytes attributes. To use the full potential of the function write.las it is recommended users read the complete specifications of the LAS file format. Otherwise users can rely on automated procedures that are expected to be sufficient for most usages. void See Also Other rlas: read.lasheader Examples lasdata = data.frame(x = c( , , ), Y = c( , , ), Z = c( , , ), gpstime = c( , , ), Intensity = c(82l, 54L, 27L), ReturnNumber = c(1l, 1L, 2L), NumberOfReturns = c(1l, 1L, 2L), ScanDirectionFlag = c(1l, 1L, 1L), EdgeOfFlightline = c(1l, 0L, 0L), Classification = c(1l, 1L, 1L), ScanAngle = c(-21l, -21L, -21L), UserData = c(32l, 32L, 32L), PointSourceID = c(17l, 17L, 17L)) lasheader = header_create(lasdata) file = file.path(tempdir(), "temp.laz") write.las(file, lasheader, lasdata) writelas (deprecated) Write a.las or.laz file (deprecated) Use write.las writelas(file, header, X, Y, Z, gpstime, Intensity, ReturnNumber, NumberOfReturns, ScanDirectionFlag, EdgeOfFlightline, Classification, ScanAngle, UserData, PointSourceID, R, G, B)

10 10 writelax file header X Y Z gpstime Intensity character. filename of.las or.laz file list of character. The data for the file header properly labelled (see readlasheader) numeric array X data numeric array Y data numeric array Z data numeric array gpstime data integer array intensity data ReturnNumber integer array return number data NumberOfReturns integer array number of returns data ScanDirectionFlag integer array scan direction flag data EdgeOfFlightline integer array edge of flightline data Classification integer array classification data ScanAngle UserData PointSourceID R G B integer array scan angle data integer array user data data integer array point source id data integer array red data integer array green data integer array blue data void writelax Write a.lax file from a.las or.laz file Write a lax file from a las or laz file. A lax file is a tiny file which can come with a las or laz and which spatially index the data to make faster spatial queries. It has been invented by Martin Isenburg in LASlib. rlas support lax file and enable to write a lax file with default settings. For more options, use lasindex from binaries provided by LASlib (for more informations see references) writelax(file)

11 writelax 11 file character. filename of.las or.laz file References

12 Index check_data, 2 check_data_vs_header (check_data), 2 check_header (check_data), 2 header_add_extrabytes, 3 header_add_extrabytes_manual (header_add_extrabytes), 3 header_create, 4, 8 header_update, 8 header_update (header_create), 4 read.las, 5, 7 read.lasheader, 6, 8, 9 readlasdata, 7 readlasheader, 8, 10 write.las, 4, 6, 8, 9 writelas, 9 writelax, 10 12

Package fastdummies. January 8, 2018

Package fastdummies. January 8, 2018 Type Package Package fastdummies January 8, 2018 Title Fast Creation of Dummy (Binary) Columns and Rows from Categorical Variables Version 1.0.0 Description Creates dummy columns from columns that have

More information

Package cattonum. R topics documented: May 2, Type Package Version Title Encode Categorical Features

Package cattonum. R topics documented: May 2, Type Package Version Title Encode Categorical Features Type Package Version 0.0.2 Title Encode Categorical Features Package cattonum May 2, 2018 Functions for dummy encoding, frequency encoding, label encoding, leave-one-out encoding, mean encoding, median

More information

Package bigreadr. R topics documented: August 13, Version Date Title Read Large Text Files

Package bigreadr. R topics documented: August 13, Version Date Title Read Large Text Files Version 0.1.3 Date 2018-08-12 Title Read Large Text Files Package bigreadr August 13, 2018 Read large text s by splitting them in smaller s. License GPL-3 Encoding UTF-8 LazyData true ByteCompile true

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

Package validara. October 19, 2017

Package validara. October 19, 2017 Type Package Title Validate Brazilian Administrative Registers Version 0.1.1 Package validara October 19, 2017 Maintainer Gustavo Coelho Contains functions to validate administrative

More information

Package fst. December 18, 2017

Package fst. December 18, 2017 Type Package Package fst December 18, 2017 Title Lightning Fast Serialization of Data Frames for R Multithreaded serialization of compressed data frames using the 'fst' format. The 'fst' format allows

More information

Package datasets.load

Package datasets.load Title Interface for Loading Datasets Version 0.1.0 Package datasets.load December 14, 2016 Visual interface for loading datasets in RStudio from insted (unloaded) s. Depends R (>= 3.0.0) Imports shiny,

More information

Package ECctmc. May 1, 2018

Package ECctmc. May 1, 2018 Type Package Package ECctmc May 1, 2018 Title Simulation from Endpoint-Conditioned Continuous Time Markov Chains Version 0.2.5 Date 2018-04-30 URL https://github.com/fintzij/ecctmc BugReports https://github.com/fintzij/ecctmc/issues

More information

Package fst. June 7, 2018

Package fst. June 7, 2018 Type Package Package fst June 7, 2018 Title Lightning Fast Serialization of Data Frames for R Multithreaded serialization of compressed data frames using the 'fst' format. The 'fst' format allows for random

More information

ASPRS LiDAR SPRS Data Exchan LiDAR Data Exchange Format Standard LAS ge Format Standard LAS IIT Kanp IIT Kan ur

ASPRS LiDAR SPRS Data Exchan LiDAR Data Exchange Format Standard LAS ge Format Standard LAS IIT Kanp IIT Kan ur ASPRS LiDAR Data Exchange Format Standard LAS IIT Kanpur 1 Definition: Files conforming to the ASPRS LIDAR data exchange format standard are named with a LAS extension. The LAS file is intended to contain

More information

Package farver. November 20, 2018

Package farver. November 20, 2018 Type Package Package farver November 20, 2018 Title Vectorised Colour Conversion and Comparison Version 1.1.0 Date 2018-11-20 Maintainer Thomas Lin Pedersen The encoding of colour

More information

Package geogrid. August 19, 2018

Package geogrid. August 19, 2018 Package geogrid August 19, 2018 Title Turn Geospatial Polygons into Regular or Hexagonal Grids Version 0.1.0.1 Turn irregular polygons (such as geographical regions) into regular or hexagonal grids. This

More information

Package pwrab. R topics documented: June 6, Type Package Title Power Analysis for AB Testing Version 0.1.0

Package pwrab. R topics documented: June 6, Type Package Title Power Analysis for AB Testing Version 0.1.0 Type Package Title Power Analysis for AB Testing Version 0.1.0 Package pwrab June 6, 2017 Maintainer William Cha Power analysis for AB testing. The calculations are based

More information

slash a simple LAS reader library in a single header file

slash a simple LAS reader library in a single header file slash a simple LAS reader library in a single header file Thomas Knudsen, PhD Danish Geodata Agency European Lidar Map Forum, 2013 Outline 1 What? What is it What does it look like? 2 Why? Do we need yet

More information

Package pkgbuild. October 16, 2018

Package pkgbuild. October 16, 2018 Title Find Tools Needed to Build R Packages Version 1.0.2 Package pkgbuild October 16, 2018 Provides functions used to build R packages. Locates compilers needed to build R packages on various platforms

More information

LASzip lossless compression of LiDAR

LASzip lossless compression of LiDAR LASzip lossless compression of LiDAR Martin Isenburg http://lastools.org http://laszip.org Overview Preliminaries Compression The LASzip compressor Performance Results Live Demo Discussion Simple LiDAR

More information

Making LAS an Open Standard (with compression)

Making LAS an Open Standard (with compression) 1 Making LAS an Open Standard (with compression) Martin Isenburg, rapidlasso GmbH 2 No universal Point Standard 3 airborne (and mobile) LiDAR 4 LiDAR Details 5 LiDAR Details 6 LiDAR Details one laser shot

More information

Package readxl. April 18, 2017

Package readxl. April 18, 2017 Title Read Excel Files Version 1.0.0 Package readxl April 18, 2017 Import excel files into R. Supports '.xls' via the embedded 'libxls' C library and '.xlsx'

More information

Package sfc. August 29, 2016

Package sfc. August 29, 2016 Type Package Title Substance Flow Computation Version 0.1.0 Package sfc August 29, 2016 Description Provides a function sfc() to compute the substance flow with the input files --- ``data'' and ``model''.

More information

Package mdftracks. February 6, 2017

Package mdftracks. February 6, 2017 Type Package Title Read and Write 'MTrackJ Data Files' Version 0.2.0 Package mdftracks February 6, 2017 'MTrackJ' is an 'ImageJ' plugin for motion tracking and analysis (see ).

More information

Package tidyimpute. March 5, 2018

Package tidyimpute. March 5, 2018 Title Imputation the Tidyverse Way Version 0.1.0 Date 2018-02-01 Package tidyimpute March 5, 2018 URL https://github.com/decisionpatterns/tidyimpute Functions and methods for imputing missing values (NA)

More information

Package humanize. R topics documented: April 4, Version Title Create Values for Human Consumption

Package humanize. R topics documented: April 4, Version Title Create Values for Human Consumption Version 0.2.0 Title Create s for Human Consumption Package humanize April 4, 2018 An almost direct port of the 'python' 'humanize' package . This package contains utilities

More information

Package nngeo. September 29, 2018

Package nngeo. September 29, 2018 Type Package Title k-nearest Neighbor Join for Spatial Data Version 0.2.2 Package nngeo September 29, 2018 K-nearest neighbor search for projected and non-projected 'sf' spatial layers. Nearest neighbor

More information

Package knitrprogressbar

Package knitrprogressbar Type Package Title Provides Progress Bars in 'knitr' Version 1.1.0 Package knitrprogressbar February 20, 2018 Provides a progress bar similar to 'dplyr' that can write progress out to a variety of locations,

More information

Package tidyselect. October 11, 2018

Package tidyselect. October 11, 2018 Title Select from a Set of Strings Version 0.2.5 Package tidyselect October 11, 2018 A backend for the selecting functions of the 'tidyverse'. It makes it easy to implement select-like functions in your

More information

Package kirby21.base

Package kirby21.base Type Package Package kirby21.base October 11, 2017 Title Example Data from the Multi-Modal MRI 'Reproducibility' Resource Version 1.6.0 Date 2017-10-10 Author John Muschelli Maintainer

More information

Package raker. October 10, 2017

Package raker. October 10, 2017 Title Easy Spatial Microsimulation (Raking) in R Version 0.2.1 Date 2017-10-10 Package raker October 10, 2017 Functions for performing spatial microsimulation ('raking') in R. Depends R (>= 3.4.0) License

More information

Package AhoCorasickTrie

Package AhoCorasickTrie Type Package Package AhoCorasickTrie July 29, 2016 Title Fast Searching for Multiple Keywords in Multiple Texts Version 0.1.0 Description Aho-Corasick is an optimal algorithm for finding many keywords

More information

Package repec. August 31, 2018

Package repec. August 31, 2018 Type Package Title Access RePEc Data Through API Version 0.1.0 Package repec August 31, 2018 Utilities for accessing RePEc (Research Papers in Economics) through a RESTful API. You can request a and get

More information

Package semver. January 6, 2017

Package semver. January 6, 2017 Type Package Title 'Semantic Versioning V2.0.0' Parser Version 0.2.0 Package semver January 6, 2017 Tools and functions for parsing, rendering and operating on semantic version strings. Semantic versioning

More information

Package hyphenatr. August 29, 2016

Package hyphenatr. August 29, 2016 Encoding UTF-8 Package hyphenatr August 29, 2016 Title Tools to Hyphenate Strings Using the 'Hunspell' Hyphenation Library Version 0.3.0 Identifying hyphenation points in strings can be useful for both

More information

Package ecoseries. R topics documented: September 27, 2017

Package ecoseries. R topics documented: September 27, 2017 Package ecoseries September 27, 2017 Title An R Interface to Brazilian Central Bank and Sidra APIs and the IPEA Data Version 0.1.5 Date 2017-09-27 Maintainer Fernando Teixeira

More information

Package deductive. June 2, 2017

Package deductive. June 2, 2017 Package deductive June 2, 2017 Maintainer Mark van der Loo License GPL-3 Title Data Correction and Imputation Using Deductive Methods LazyData no Type Package LazyLoad yes Attempt

More information

Package clipr. June 23, 2018

Package clipr. June 23, 2018 Type Package Title Read and Write from the System Clipboard Version 0.4.1 Package clipr June 23, 2018 Simple utility functions to read from and write to the Windows, OS X, and X11 clipboards. Imports utils

More information

Package tidytransit. March 4, 2019

Package tidytransit. March 4, 2019 Type Package Package tidytransit March 4, 2019 Title Read, Validate, Analyze, and Map Files in the General Transit Feed Specification Version 0.3.8 Read General Transit Feed Specification (GTFS) zipfiles

More information

Package spark. July 21, 2017

Package spark. July 21, 2017 Title 'Sparklines' in the 'R' Terminal Version 2.0.0 Author Gábor Csárdi Package spark July 21, 2017 Maintainer Gábor Csárdi A 'sparkline' is a line chart, without axes and labels.

More information

Package strat. November 23, 2016

Package strat. November 23, 2016 Type Package Package strat November 23, 2016 Title An Implementation of the Stratification Index Version 0.1 An implementation of the stratification index proposed by Zhou (2012) .

More information

Package nmslibr. April 14, 2018

Package nmslibr. April 14, 2018 Type Package Title Non Metric Space (Approximate) Library Version 1.0.1 Date 2018-04-14 Package nmslibr April 14, 2018 Maintainer Lampros Mouselimis BugReports https://github.com/mlampros/nmslibr/issues

More information

Package githubinstall

Package githubinstall Type Package Version 0.2.2 Package githubinstall February 18, 2018 Title A Helpful Way to Install R Packages Hosted on GitHub Provides an helpful way to install packages hosted on GitHub. URL https://github.com/hoxo-m/githubinstall

More information

Package rsppfp. November 20, 2018

Package rsppfp. November 20, 2018 Package rsppfp November 20, 2018 Title R's Shortest Path Problem with Forbidden Subpaths Version 1.0.3 Maintainer Melina Vidoni An implementation of functionalities

More information

An alternate proposal for the LAS 1.4 specification

An alternate proposal for the LAS 1.4 specification August 24th 2011 An alternate proposal for the LAS 1.4 specification This is not an official LAS document! Do not implement! Yes, it would be easy. (-; This is NOT an official LAS document. This document

More information

Package ompr. November 18, 2017

Package ompr. November 18, 2017 Type Package Package ompr November 18, 2017 Title Model and Solve Mixed Integer Linear Programs Version 0.7.0 Model mixed integer linear programs in an algebraic way directly in R. The is solver-independent

More information

Package dotcall64. January 11, 2018

Package dotcall64. January 11, 2018 Type Package Package dotcall64 January 11, 2018 Title Enhanced Foreign Function Interface Supporting Long Vectors Version 0.9-5.2 Date 2018-01-11 Description Provides.C64(), which is an enhanced version

More information

Package triebeard. August 29, 2016

Package triebeard. August 29, 2016 Type Package Title 'Radix' Trees in 'Rcpp' Version 0.3.0 Package beard August 29, 2016 Author Oliver Keyes [aut, cre], Drew Schmidt [aut], Yuuki Takano [cph] Maintainer Oliver Keyes

More information

Package sessioninfo. June 21, 2017

Package sessioninfo. June 21, 2017 Title R Session Information Version 1.0.0 Package sessioninfo June 21, 2017 Author Gábor Csárdi, R core, Hadley Wickham, Winston Chang, Robert M Flight, Kirill Müller Maintainer Gábor Csárdi

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

Package librarian. R topics documented:

Package librarian. R topics documented: Package librarian July 8, 2018 Title Install, Update, Load Packages from CRAN and 'GitHub' in One Step Version 1.3.0 Automatically install, update, and load 'CRAN' and 'GitHub' packages in a single function

More information

Package remotes. December 21, 2017

Package remotes. December 21, 2017 Package remotes December 21, 2017 Title R Package Installation from Remote Repositories, Including 'GitHub' Version 1.1.1 Download and install R packages stored in 'GitHub', 'BitBucket', or plain 'subversion'

More information

Package ggimage. R topics documented: November 1, Title Use Image in 'ggplot2' Version 0.0.7

Package ggimage. R topics documented: November 1, Title Use Image in 'ggplot2' Version 0.0.7 Title Use Image in 'ggplot2' Version 0.0.7 Package ggimage November 1, 2017 Supports image files and graphic objects to be visualized in 'ggplot2' graphic system. Depends R (>= 3.3.0), ggplot2 Imports

More information

Package messaging. May 27, 2018

Package messaging. May 27, 2018 Type Package Package messaging May 27, 2018 Title Conveniently Issue Messages, Warnings, and Errors Version 0.1.0 Description Provides tools for creating and issuing nicely-formatted text within R diagnostic

More information

Package wrswor. R topics documented: February 2, Type Package

Package wrswor. R topics documented: February 2, Type Package Type Package Package wrswor February 2, 2018 Title Weighted Random Sampling without Replacement Version 1.1 Date 2018-02-02 Description A collection of implementations of classical and novel algorithms

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 gggenes. R topics documented: November 7, Title Draw Gene Arrow Maps in 'ggplot2' Version 0.3.2

Package gggenes. R topics documented: November 7, Title Draw Gene Arrow Maps in 'ggplot2' Version 0.3.2 Title Draw Gene Arrow Maps in 'ggplot2' Version 0.3.2 Package gggenes November 7, 2018 Provides a 'ggplot2' geom and helper functions for drawing gene arrow maps. Depends R (>= 3.3.0) Imports grid (>=

More information

Package IATScore. January 10, 2018

Package IATScore. January 10, 2018 Package IATScore January 10, 2018 Type Package Title Scoring Algorithm for the Implicit Association Test (IAT) Version 0.1.1 Author Daniel Storage [aut, cre] Maintainer Daniel Storage

More information

Package fingertipsr. May 25, Type Package Version Title Fingertips Data for Public Health

Package fingertipsr. May 25, Type Package Version Title Fingertips Data for Public Health Type Package Version 0.1.7 Title Fingertips Data for Public Health Package fingertipsr May 25, 2018 Fingertips () contains data for many indicators of public health in England.

More information

Package lvec. May 24, 2018

Package lvec. May 24, 2018 Package lvec May 24, 2018 Type Package Title Out of Memory Vectors Version 0.2.2 Date 2018-05-23 Author Jan van der Laan Maintainer Jan van der Laan Core functionality

More information

Package fastrtext. December 10, 2017

Package fastrtext. December 10, 2017 Type Package Package fastrtext December 10, 2017 Title 'fasttext' Wrapper for Text Classification and Word Representation Version 0.2.4 Date 2017-12-09 Maintainer Michaël Benesty Learning

More information

Package rprojroot. January 3, Title Finding Files in Project Subdirectories Version 1.3-2

Package rprojroot. January 3, Title Finding Files in Project Subdirectories Version 1.3-2 Title Finding Files in Project Subdirectories Version 1.3-2 Package rprojroot January 3, 2018 Robust, reliable and flexible paths to files below a project root. The 'root' of a project is defined as a

More information

Package RPresto. July 13, 2017

Package RPresto. July 13, 2017 Title DBI Connector to Presto Version 1.3.0 Copyright Facebook, Inc. 2015-present. Package RPresto July 13, 2017 Implements a 'DBI' compliant interface to Presto. Presto is an open source distributed SQL

More information

Package SimilaR. June 21, 2018

Package SimilaR. June 21, 2018 Version 1.0.2 Date 2018-06-21 Title R Source Code Similarity Evaluation Package SimilaR June 21, 2018 Description An Implementation of a novel method to determine similarity of R functions based on program

More information

Package projector. February 27, 2018

Package projector. February 27, 2018 Package projector February 27, 2018 Title Project Dense Vectors Representation of Texts on a 2D Plan Version 0.0.2 Date 2018-02-27 Maintainer Michaël Benesty Display dense vector representation

More information

Package ggimage. R topics documented: December 5, Title Use Image in 'ggplot2' Version 0.1.0

Package ggimage. R topics documented: December 5, Title Use Image in 'ggplot2' Version 0.1.0 Title Use Image in 'ggplot2' Version 0.1.0 Package ggimage December 5, 2017 Supports image files and graphic objects to be visualized in 'ggplot2' graphic system. Depends R (>= 3.3.0), ggplot2 Imports

More information

Package available. November 17, 2017

Package available. November 17, 2017 Package available November 17, 2017 Title Check if the Title of a Package is Available, Appropriate and Interesting Version 1.0.0 Check if a given package is available to use. It checks the 's validity.

More information

Package canvasxpress

Package canvasxpress Version 1.18.2 Package canvasxpress Title Visualization Package for CanvasXpress in R January 19, 2018 Enables creation of visualizations using the CanvasXpress framework in R. CanvasXpress is a standalone

More information

Package embed. November 19, 2018

Package embed. November 19, 2018 Version 0.0.2 Package embed November 19, 2018 Title Extra Recipes for Encoding Categorical Predictors Description Factor predictors can be converted to one or more numeric representations using simple

More information

Package virustotal. May 1, 2017

Package virustotal. May 1, 2017 Title R Client for the VirusTotal API Version 0.2.1 Maintainer Gaurav Sood Package virustotal May 1, 2017 Use VirusTotal, a Google service that analyzes files and URLs for viruses,

More information

Package PCADSC. April 19, 2017

Package PCADSC. April 19, 2017 Type Package Package PCADSC April 19, 2017 Title Tools for Principal Component Analysis-Based Data Structure Comparisons Version 0.8.0 A suite of non-parametric, visual tools for assessing differences

More information

Package censusapi. August 19, 2018

Package censusapi. August 19, 2018 Version 0.4.1 Title Retrieve Data from the Census APIs Package censusapi August 19, 2018 A wrapper for the U.S. Census Bureau APIs that returns data frames of Census data and metadata. Available datasets

More information

Package robotstxt. November 12, 2017

Package robotstxt. November 12, 2017 Date 2017-11-12 Type Package Package robotstxt November 12, 2017 Title A 'robots.txt' Parser and 'Webbot'/'Spider'/'Crawler' Permissions Checker Version 0.5.2 Provides functions to download and parse 'robots.txt'

More information

Package rtext. January 23, 2019

Package rtext. January 23, 2019 Title R6 Objects for Text and Data Date 2019-01-21 Version 0.1.21 Package January 23, 2019 For natural language processing and analysis of qualitative text coding structures which provide a way to bind

More information

Package coga. May 8, 2018

Package coga. May 8, 2018 Title Convolution of Gamma Distributions Version 1.0.0 Date 2018-05-08 Package coga May 8, 2018 Evaluation for density and distribution function of convolution of gamma distributions in R. Two related

More information

Package gtrendsr. August 4, 2018

Package gtrendsr. August 4, 2018 Type Package Title Perform and Display Google Trends Queries Version 1.4.2 Date 2018-08-03 Package gtrendsr August 4, 2018 An interface for retrieving and displaying the information returned online by

More information

Package rdryad. June 18, 2018

Package rdryad. June 18, 2018 Type Package Title Access for Dryad Web Services Package rdryad June 18, 2018 Interface to the Dryad ``Solr'' API, their ``OAI-PMH'' service, and fetch datasets. Dryad () is a curated

More information

Package combiter. December 4, 2017

Package combiter. December 4, 2017 Type Package Title Combinatorics Iterators Version 1.0.3 Package combiter December 4, 2017 Provides iterators for combinations, permutations, subsets, and Cartesian product, which allow one to go through

More information

Package readobj. November 2, 2017

Package readobj. November 2, 2017 Type Package Package readobj November 2, 2017 Title Fast Reader for 'Wavefront' OBJ 3D Scene Files Version 0.3 Wraps 'tiny_obj_loader' C++ library for reading the 'Wavefront' OBJ 3D file format including

More information

LAS SPECIFICATION. VERSION 1.4 R12 10 June Approved: November 2011

LAS SPECIFICATION. VERSION 1.4 R12 10 June Approved: November 2011 VERSION 1.4 R12 10 June 2012 Approved: November 2011 Published by: The American Society for Photogrammetry & Remote Sensing 5410 Grosvenor Lane, Suite 210 Bethesda, Maryland 20814-2160 Voice: 301-493-0290

More information

Package timechange. April 26, 2018

Package timechange. April 26, 2018 Title Efficient Changing of Date-Times Version 0.0.1 Package timechange April 26, 2018 Description Efficient routines for manipulation of date-time objects while accounting for time-zones and daylight

More information

Package dkanr. July 12, 2018

Package dkanr. July 12, 2018 Title Client for the 'DKAN' API Version 0.1.2 Package dkanr July 12, 2018 Provides functions to facilitate access to the 'DKAN' API (), including

More information

Package gameofthrones

Package gameofthrones Package gameofthrones December 31, 2018 Type Package Title Palettes Inspired in the TV Show ``Game of Thrones'' Version 1.0.0 Maintainer Alejandro Jimenez Rico Description Implementation

More information

Package tiler. June 9, 2018

Package tiler. June 9, 2018 Version 0.2.0 Package tiler June 9, 2018 Title Create Geographic and Non-Geographic Map Tiles Creates geographic map tiles from geospatial map files or nongeographic map tiles from simple image files.

More information

Package gtrendsr. October 19, 2017

Package gtrendsr. October 19, 2017 Type Package Title Perform and Display Google Trends Queries Version 1.4.0 Date 2017-10-19 Package gtrendsr October 19, 2017 An interface for retrieving and displaying the information returned online by

More information

Package lumberjack. R topics documented: July 20, 2018

Package lumberjack. R topics documented: July 20, 2018 Package lumberjack July 20, 2018 Maintainer Mark van der Loo License GPL-3 Title Track Changes in Data LazyData no Type Package LazyLoad yes A function composition ('pipe') operator

More information

Package pinyin. October 17, 2018

Package pinyin. October 17, 2018 Version 1.1.4 Date 2018-10-14 Package pinyin October 17, 2018 Title Convert Chinese Characters into Pinyin, Sijiao, Wubi or Other Codes Maintainer Peng Zhao Depends R (>= 3.1.0) Imports

More information

Package desc. May 1, 2018

Package desc. May 1, 2018 Title Manipulate DESCRIPTION Files Version 1.2.0 Package desc May 1, 2018 Maintainer Gábor Csárdi Tools to read, write, create, and manipulate DESCRIPTION s. It is intended for

More information

Package fasttextr. May 12, 2017

Package fasttextr. May 12, 2017 Type Package Title An Interface to the 'fasttext' Library Version 1.0 Date 2016-09-22 Author Florian Schwendinger [aut, cre] Package fasttextr May 12, 2017 Maintainer Florian Schwendinger

More information

Package utilsipea. November 13, 2017

Package utilsipea. November 13, 2017 Type Package Title IPEA Common Functions Version 0.0.5 Package utilsipea November 13, 2017 Maintainer Gustavo Coelho The most used functions on IPEA (Instituto de Pesquisa

More information

Package milr. June 8, 2017

Package milr. June 8, 2017 Type Package Package milr June 8, 2017 Title Multiple-Instance Logistic Regression with LASSO Penalty Version 0.3.0 Date 2017-06-05 The multiple instance data set consists of many independent subjects

More information

Package internetarchive

Package internetarchive Type Package Title An API Client for the Internet Archive Package internetarchive December 8, 2016 Search the Internet Archive, retrieve metadata, and download files. Version 0.1.6 Date 2016-12-08 License

More information

Package CatEncoders. March 8, 2017

Package CatEncoders. March 8, 2017 Type Package Title Encoders for Categorical Variables Version 0.1.1 Author nl zhang Package CatEncoders Maintainer nl zhang March 8, 2017 Contains some commonly used categorical

More information

Package bisect. April 16, 2018

Package bisect. April 16, 2018 Package bisect April 16, 2018 Title Estimating Cell Type Composition from Methylation Sequencing Data Version 0.9.0 Maintainer Eyal Fisher Author Eyal Fisher [aut, cre] An implementation

More information

Package postgistools

Package postgistools Type Package Package postgistools March 28, 2018 Title Tools for Interacting with 'PostgreSQL' / 'PostGIS' Databases Functions to convert geometry and 'hstore' data types from 'PostgreSQL' into standard

More information

Package barcoder. October 26, 2018

Package barcoder. October 26, 2018 Package barcoder October 26, 2018 Title Labelling, Tracking, and Collecting Data from Biological Samples Version 0.1.0 Maintainer Robert Colautti Tools to generate unique identifiers

More information

Package rbraries. April 18, 2018

Package rbraries. April 18, 2018 Title Interface to the 'Libraries.io' API Package rbraries April 18, 2018 Interface to the 'Libraries.io' API (). 'Libraries.io' indexes data from 36 different package managers

More information

Package reconstructr

Package reconstructr Type Package Title Session Reconstruction and Analysis Version 2.0.2 Date 2018-07-26 Author Oliver Keyes Package reconstructr July 26, 2018 Maintainer Oliver Keyes Functions to reconstruct

More information

Package bikedata. April 27, 2018

Package bikedata. April 27, 2018 Package bikedata April 27, 2018 Title Download and Aggregate Data from Public Hire Bicycle Systems Version 0.2.0 Download and aggregate data from all public hire bicycle systems which provide open data,

More information

Package wikitaxa. December 21, 2017

Package wikitaxa. December 21, 2017 Title Taxonomic Information from 'Wikipedia' Package wikitaxa December 21, 2017 'Taxonomic' information from 'Wikipedia', 'Wikicommons', 'Wikispecies', and 'Wikidata'. Functions included for getting taxonomic

More information

Package ether. September 22, 2018

Package ether. September 22, 2018 Type Package Title Interaction with the 'Ethereum' Blockchain Version 0.1.5 Package ether September 22, 2018 Interacts with the open-source, public 'Ethereum' blockchain. It

More information

Package editdata. October 7, 2017

Package editdata. October 7, 2017 Type Package Title 'RStudio' Addin for Editing a 'data.frame' Version 0.1.2 Package editdata October 7, 2017 Imports shiny (>= 0.13, miniui (>= 0.1.1, rstudioapi (>= 0.5, DT, tibble An 'RStudio' addin

More information

Package shinyhelper. June 21, 2018

Package shinyhelper. June 21, 2018 Package shinyhelper June 21, 2018 Type Package Title Easily Add Markdown Help Files to 'shiny' App Elements Version 0.3.0 BugReports https://github.com/cwthom/shinyhelper/issues Creates a lightweight way

More information

Package RcppParallel

Package RcppParallel Type Package Title Parallel Programming Tools for 'Rcpp' Version 4.4.1 Package RcppParallel July 19, 2018 High level functions for parallel programming with 'Rcpp'. For example, the 'parallelfor()' function

More information