mountainMath / canpumf

Import StatCan PUMF data into R
Other
5 stars 1 forks source link

April 2022 issue #4

Closed a-m-on closed 2 years ago

a-m-on commented 2 years ago

Hello again,

An issue came up when trying to download April 2022 data - here is the code and corresponding error message:

> download_lfs_pumf(
+   version = "2022-04",
+   destination_dir = here("Data"))

Error in download_lfs_pumf(version = "2022-04", destination_dir = here("Data")) : 
  LFS version 2022-04 is not available, check available LFS PUMF versions via `list_available_lfs_pumf_versions()`

When I ran the list of versions, April showed up as March:

> list_available_lfs_pumf_versions()
# A tibble: 16 x 3
   Date           version url                                                                     
   <chr>          <chr>   <chr>                                                                   
 1 March 2022     2022-03 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2022-04-CSV.zip    
 2 March 2022     2022-03 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2022-03-CSV.zip    
 3 February 2022  2022-02 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2022-02-CSV.zip    
 4 January 2022   2022-01 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2022-01-CSV.zip    
 5 December 2021  2021-12 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2021-12-CSV.zip    
 6 November 2021  2021-11 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2021-11-CSV.zip    
 7 October 2021   2021-10 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2021-10-CSV.zip    
 8 September 2021 2021-09 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2021-09-CSV.zip    
 9 August 2021    2021-08 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2021-08-CSV.zip    
10 July 2021      2021-07 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2021-07-CSV.zip    
11 June 2021      2021-06 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2021-06-CSV.zip    
12 May 2021       2021-05 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2021-05-CSV.zip    
13 April 2021     2021-04 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2021-04-CSV-eng.zip
14 March 2021     2021-03 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2021-03-CSV-eng.zip
15 February 2021  2021-02 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2021-02-CSV-eng.zip
16 January 2021   2021-01 https://www150.statcan.gc.ca/n1/pub/71m0001x/2021001/2021-01-CSV-eng.zip

Thanks for looking into this!

mountainMath commented 2 years ago

Ack, StatCan messed up the tooltip content for the link which is what I use to figure out where to download the data from.

image

I pushed a fix that tries to double-check for consistencies and corrects this type of mess-up. Should work now if you reinstall.

a-m-on commented 2 years ago

Thanks - it works now!