Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rafapereirabr committed Dec 4, 2023
1 parent 2466897 commit 50d2cb9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: flightsbr
Title: Download Flight and Airport Data from Brazil
Version: 0.3.0
Version: 0.3.0999
Authors@R:
c(person(given="Rafael H. M.", family="Pereira",
email="[email protected]",
Expand Down
5 changes: 3 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@

* Major changes:
* The functions `read_flights()` and `read_airport_movements()` now have a new parameter `cache`, which indicates whether the function should read cached data downloaded previously. Defaults to `TRUE`. Closed #31.
* The function `read_aircrafts()` now has a `date` parameter, which allows one to download the data on aircrafts registered at ANAC at particular years/monhts. Closed #33.
* The function `read_aircrafts()` now has a `date` parameter, which allows one to download the data on aircrafts registered at ANAC at particular years/months. Closed #33.

* Minor changes:
* All functions now return numeric columns with `numeric` class. Closed #32.

* Bug fixes:
* Fixed bug when unzipping files for `read_flights()` function in Unix systems.
Closed #31.

* Updated link to private airports data changed by ANAC. Closed #34.

# flightsbr v0.3.0

* Major changes:
Expand Down
2 changes: 1 addition & 1 deletion R/read_airports.R
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ if (any(type %in% c('private', 'all'))){
dt_private <- try(silent=T,
data.table::fread(url_private,
skip = 1,
# encoding = 'Latin-1',
encoding = 'Latin-1',
colClasses = 'character',
sep = ';',
showProgress=showProgress))
Expand Down
12 changes: 12 additions & 0 deletions pkgdown/_pkgdown.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
destination: ./docs

development:
mode: auto


repo:
url:
home: https://github.com/ipeaGIT/flightsbr/
source: https://github.com/ipeaGIT/flightsbr/tree/main/


0 comments on commit 50d2cb9

Please sign in to comment.