-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
74 lines (50 loc) · 1.68 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# The `airac` package
<!-- badges: start -->
<!-- badges: end -->
The `airac` package helps with determining the ICAO's AIRAC ID or the relevant
date intervals as used internationally and by the data services of the
European Network Manager.
AIRAC stands for Aeronautical Information Regulation and Control and it indicates
the period used to publish and disseminate changes to [aeronautical data][aip].
[aip]: <https://en.wikipedia.org/wiki/Aeronautical_Information_Publication> "Aeronautical Information Publication"
## Installation
You can install the development version of airac like so:
```{r eval=FALSE}
library(remotes)
install_github("euctrl-pru/pruatlas")
```
## Example
You may be interested to know which period corresponfs to AIRAC '2307'
```{r example}
library(airac)
airac_interval("2307")
```
or which AIRAC number is needed to download data on 1st Feb 2023 from EUROCONTROL's
Network Manager DDR2 repository:
```{r example-nm}
library(airac)
cfmu_airac("2023-02-01")
```
# Development
In order to build the relevant `pkgdown` web pages, execute the following code:
```{r, eval=FALSE}
# How to build the pakgdown from behind proxied Internet
library(withr)
library(pkgdown)
with_options(list(pkgdown.internet = FALSE),
build_site())
```
Note that the pkgdown website is generated automatically via GitHub Actions and published on a separate branch.
it will then be served by GitHub Pages as per repo configuration.