Skip to content

Commit

Permalink
adding tables correctly into paper.md
Browse files Browse the repository at this point in the history
  • Loading branch information
lilyclements committed Apr 30, 2024
1 parent f05f81e commit fe64920
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions paper.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ tags:
- environmental strategies
authors:
- name: Lily Clements
orcid: 0000-0001-8864-0552
equal-contrib: true
affiliation: "1"
- orcid: 0000-0001-8864-0552
- equal-contrib: true
- affiliation: "1"
affiliations:
- name: IDEMS International
index: 1
Expand Down Expand Up @@ -52,18 +52,18 @@ library(carbonr)
```{r, message = FALSE, warning = FALSE, eval=FALSE, include=TRUE}
airport_finder(name = "heathrow")
```
```{r, message = FALSE, warning = FALSE, echo = FALSE}
library(magrittr)
airport_finder(name = "heathrow") %>%
knitr::kable()
```
| Name | City | Country | IATA |
|-------------------------:|:-------:|---------------:|------|
| London Heathrow Airport | London | United Kingdom | LHR |

```{r, message = FALSE, warning = FALSE, eval=FALSE, include=TRUE}
airport_finder(city = "nairobi")
```
```{r, message = FALSE, warning = FALSE, echo = FALSE}
airport_finder(city = "nairobi") %>%
knitr::kable()
```
| Name | City | Country | IATA |
|-----------------------------------:|:-------:|---------------:|------|
|Nairobi Wilson Airport | Nairobi | Kenya | WIL |
|Moi Air Base | Nairobi | Kenya | \\N |
|Jomo Kenyatta International Airport | Nairobi | Kenya | NBO |

These codes can then be used to calculate the airplane emissions:

Expand Down

0 comments on commit fe64920

Please sign in to comment.