knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "README-"
)

gft

With Google's announcement of the end of Fusion Tabls, gft will not be developed any further

The goal of gft is to provide R functions to access the Google Fusion Table API. Currently the package can
- Get and cache an OAuth token
- List table IDs and table names
- Read tables and table descriptions
- Write dataframes to a new Fusion Table (sfc columns are converted to KML on upload for automatic georeferencing) - Run a query on a table and retreive the results

Installation

Currently gft can be installed using devtools,

devtools::install_github("jpshanno/gft")

or directly from downloaded source files

gft_source <- file.path(tempdir(), "gft-master.zip")
download.file("https://github.com/jpshanno/gft/archive/master.zip",
              gft_source)
unzip(gft_source,
      exdir = dirname(gft_source))
install.packages(sub(".zip$", "", gft_source), 
                 repos = NULL,
                 type = "source")

To Do

These planned features will be added as Issues as the project matures.



jpshanno/gft documentation built on May 24, 2019, 7:34 a.m.