Andy Teucher

Results 217 comments of Andy Teucher

A few example cli curl commands for searching: ``` # search for 'forest', with facets: download audience public, format is xls or shp curl https://catalogue.data.gov.bc.ca/api/3/action/package_search?q=forest+download_audience:Public+res_format:\(xls%20OR%20shp\) # search for children AND...

There may be more options with the [search API](https://docs.ckan.org/en/ckan-1.5.1/apiv3.html#search-api) vs `action/package_search`

I think this is failing on GH actions due to the inability to write to the cache directory. Need to detect if on actions, and set option accordingly

Ok, that's great. Though I guess we could also just set the cache dir in the actions yml. Do you know offhand where we can write? I suppose we could...

Need to change memoisation pattern like here: https://github.com/r-lib/memoise/issues/76

Eg. ``` r library(cli) cat("Available", col_green(symbol$tick)) #> Available ✔ cat("Not available", col_red(symbol$cross)) #> Not available ✖ ```

It could then be used in the print methods for bcdc_records and resources.

HI @joburgar - that's a great question. Currently you can authenticate with private *catalogue* records and file resources, [using your BC Data Catalogue API key](https://bcgov.github.io/bcdata/#bcdc-authentication). However this doesn't apply to...

Hi @schckngs, this is a good question! You can set it using lat/long if you specify `crs=st_crs(4326)` in the `coord_sf()` call, but it then reprojects the whole map to lat/long...

I think that would be a different (but welcome) function @boshek - I think it's quite common to just want your plot zoomed in on a particular area by specifying...