commit fe14d30d757816c94dd0dea86fc63cf8cc1cda95
parent 83a8be4dabd90ff17a4dba6dc2e4058935ce93f3
Author: eamoncaddigan <eamon.caddigan@gmail.com>
Date: Thu, 14 Apr 2016 10:23:38 -0400
Initial commit of the mostly-empty package.
Diffstat:
8 files changed, 50 insertions(+), 1 deletion(-)
diff --git a/.Rbuildignore b/.Rbuildignore
@@ -0,0 +1,2 @@
+^.*\.Rproj$
+^\.Rproj\.user$
diff --git a/.gitignore b/.gitignore
@@ -10,6 +10,7 @@
# RStudio files
.Rproj.user/
+flightpathr.Rproj
# produced vignettes
vignettes/*.html
@@ -17,3 +18,4 @@ vignettes/*.pdf
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
.httr-oauth
+.Rproj.user
diff --git a/DESCRIPTION b/DESCRIPTION
@@ -0,0 +1,11 @@
+Package: flightpathr
+Type: Package
+Title: Tools to Analyze Aircraft and Flight Path Data
+Version: 0.1.0
+Author@R: person("Eamon", "Caddigan", email = "eamon.caddigan@tgobrien.com",
+ role = c("aut", "cre"))
+Description: This package provides functions for analyzing flight track and
+ flight path data. Useful for studies of pilot and controller performance.
+License: MIT
+LazyData: TRUE
+RoxygenNote: 5.0.1
diff --git a/LICENSE b/LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2016 Eamon Caddigan
+Copyright (c) 2016 T.G. O'Brien & Associates, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/NAMESPACE b/NAMESPACE
@@ -0,0 +1,2 @@
+# Generated by roxygen2: do not edit by hand
+
diff --git a/R/flightpathr.R b/R/flightpathr.R
@@ -0,0 +1,8 @@
+#' flightpathr: Tools to analyze aircraft and flight path data.
+#'
+#' This package provides functions for analyzing flight track and flight path
+#' data. Useful for studies of pilot and controller performance.
+#'
+#' @docType package
+#' @name flightpathr
+NULL
diff --git a/man/flightpathr.Rd b/man/flightpathr.Rd
@@ -0,0 +1,12 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/flightpathr.R
+\docType{package}
+\name{flightpathr}
+\alias{flightpathr}
+\alias{flightpathr-package}
+\title{flightpathr: Tools to analyze aircraft and flight path data.}
+\description{
+This package provides functions for analyzing flight track and flight path
+data. Useful for studies of pilot and controller performance.
+}
+
diff --git a/man/hello.Rd b/man/hello.Rd
@@ -0,0 +1,12 @@
+\name{hello}
+\alias{hello}
+\title{Hello, World!}
+\usage{
+hello()
+}
+\description{
+Prints 'Hello, world!'.
+}
+\examples{
+hello()
+}