flightconflicts

Tools to analyze conflicts between aircraft.
git clone https://git.eamoncaddigan.net/flightconflicts.git
Log | Files | Refs | README | LICENSE

commit bd1b8ef6ae287dd528d769dce4f3b91d6e8e365f
parent 355d59d913e453b135e214a6b51f4ed1305fb902
Author: eamoncaddigan <eamon.caddigan@gmail.com>
Date:   Wed, 18 May 2016 09:45:33 -0400

Description and beginning documentation.

Diffstat:
MDESCRIPTION | 12++++++++----
MNAMESPACE | 3++-
AR/flightconflicts.R | 8++++++++
Aman/flightconflicts.Rd | 12++++++++++++
4 files changed, 30 insertions(+), 5 deletions(-)

diff --git a/DESCRIPTION b/DESCRIPTION @@ -1,8 +1,12 @@ Package: flightconflicts -Title: What the Package Does (one line, title case) +Title: Analyze Conflicts Between Aircraft Version: 0.0.0.9000 -Authors@R: person("First", "Last", email = "first.last@example.com", role = c("aut", "cre")) -Description: What the package does (one paragraph). -Depends: R (>= 3.2.3) +Authors@R: person("Eamon", "Caddigan", email = "eamon.caddigan@tgobrien.com", + role = c("aut", "cre")) +Description: This package contains tools to analyze aircraft trajectories and + identify loss of well-clear (LoWC) and near mid-air collisions (NMAC). +Depends: + R (>= 3.2.3) License: What license is it under? LazyData: true +RoxygenNote: 5.0.1 diff --git a/NAMESPACE b/NAMESPACE @@ -1 +1,2 @@ -exportPattern("^[^\\.]") +# Generated by roxygen2: do not edit by hand + diff --git a/R/flightconflicts.R b/R/flightconflicts.R @@ -0,0 +1,8 @@ +#' flightconflicts: Analyze conflicts between aircraft +#' +#' This package contains tools to analyze aircraft trajectories and identify +#' loss of well-clear (LoWC) and near mid-air collisions (NMAC). +#' +#' @docType package +#' @name flightconflicts +NULL diff --git a/man/flightconflicts.Rd b/man/flightconflicts.Rd @@ -0,0 +1,12 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/flightconflicts.R +\docType{package} +\name{flightconflicts} +\alias{flightconflicts} +\alias{flightconflicts-package} +\title{flightconflicts: Analyze conflicts between aircraft} +\description{ +This package contains tools to analyze aircraft trajectories and identify +loss of well-clear (LoWC) and near mid-air collisions (NMAC). +} +