├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── COMPLIANCE.yaml ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── bc_bound.R ├── bcmaps-package.R ├── cache-utils.R ├── cded.R ├── defunct.R ├── download_data.R ├── get-non-catalogue-data.R ├── get_data.R ├── internal.R ├── make_shortcuts.R ├── raster_by_poly.R ├── shortcuts.R ├── sysdata.rda ├── utils.R ├── utm-convert.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── bcmaps.Rproj ├── cran-comments.md ├── data-raw ├── create_internal_data.R ├── layers_df.csv ├── mapsheets_250K │ ├── README.md │ └── process_mapsheet_250K.R ├── utm-zone-lookup.R └── utm-zone-lookup.csv ├── inst ├── WORDLIST └── sticker │ ├── bcmaps.png │ ├── bcmaps.svg │ └── create_sticker.R ├── man ├── airzones.Rd ├── available_layers.Rd ├── bc_area.Rd ├── bc_bbox.Rd ├── bc_bound.Rd ├── bc_bound_hres.Rd ├── bc_cities.Rd ├── bc_neighbours.Rd ├── bcmaps-package.Rd ├── bec.Rd ├── bec_colours.Rd ├── cded.Rd ├── cded_raster.Rd ├── cded_stars.Rd ├── cded_terra.Rd ├── census_dissemination_area.Rd ├── census_dissemination_block.Rd ├── census_division.Rd ├── census_economic.Rd ├── census_metropolitan_area.Rd ├── census_subdivision.Rd ├── census_tract.Rd ├── combine_nr_rd.Rd ├── delete_cache.Rd ├── ecoprovinces.Rd ├── ecoregions.Rd ├── ecosections.Rd ├── figures │ ├── lifecycle-archived.svg │ ├── lifecycle-defunct.svg │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-maturing.svg │ ├── lifecycle-questioning.svg │ ├── lifecycle-stable.svg │ ├── lifecycle-superseded.svg │ ├── logo.png │ └── unnamed-chunk-6-1.png ├── fix_geo_problems.Rd ├── fsa.Rd ├── get_layer.Rd ├── get_poly_attribute.Rd ├── gw_aquifers.Rd ├── health_chsa.Rd ├── health_ha.Rd ├── health_hsda.Rd ├── health_lha.Rd ├── hydrozones.Rd ├── mapsheets_250K.Rd ├── mapsheets_50K.Rd ├── municipalities.Rd ├── nr_areas.Rd ├── nr_districts.Rd ├── nr_regions.Rd ├── raster_by_poly.Rd ├── regional_districts.Rd ├── self_union.Rd ├── summarize_raster_list.Rd ├── transform_bc_albers.Rd ├── tsa.Rd ├── utm_convert.Rd ├── vrt_files.Rd ├── vrt_info.Rd ├── water_districts.Rd ├── water_precincts.Rd ├── watercourses_15M.Rd ├── watercourses_5M.Rd └── wsc_drainages.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── failures.md └── problems.md ├── tests ├── testthat.R └── testthat │ ├── helper.R │ ├── setup.R │ ├── teardown.R │ ├── test-cache-utils.R │ ├── test-cded.R │ ├── test-data_functions.R │ ├── test-raster_by_poly.R │ ├── test-utils.R │ └── test-utm-convert.R ├── tools └── readme │ ├── bc_neighbours-1.png │ ├── bcmaps-sticker.png │ ├── bec-1.png │ ├── cded-1.png │ ├── plot-maps-1.png │ ├── unnamed-chunk-5-1.png │ ├── unnamed-chunk-6-1.png │ ├── unnamed-chunk-7-1.png │ ├── unnamed-chunk-8-1.png │ └── watercourses-1.png └── vignettes ├── .gitignore ├── add_points.Rmd ├── add_points.Rmd.orig ├── bcmaps.Rmd ├── bcmaps.Rmd.orig ├── precompile.R ├── vignette-fig-bc_neighbours-1.png ├── vignette-fig-bec-1.png ├── vignette-fig-cded-1.png ├── vignette-fig-convert-1.png ├── vignette-fig-overlay-1.png ├── vignette-fig-plot-maps-1.png └── vignette-fig-unnamed-chunk-3-1.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COMPLIANCE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/COMPLIANCE.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/bc_bound.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/bc_bound.R -------------------------------------------------------------------------------- /R/bcmaps-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/bcmaps-package.R -------------------------------------------------------------------------------- /R/cache-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/cache-utils.R -------------------------------------------------------------------------------- /R/cded.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/cded.R -------------------------------------------------------------------------------- /R/defunct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/defunct.R -------------------------------------------------------------------------------- /R/download_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/download_data.R -------------------------------------------------------------------------------- /R/get-non-catalogue-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/get-non-catalogue-data.R -------------------------------------------------------------------------------- /R/get_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/get_data.R -------------------------------------------------------------------------------- /R/internal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/internal.R -------------------------------------------------------------------------------- /R/make_shortcuts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/make_shortcuts.R -------------------------------------------------------------------------------- /R/raster_by_poly.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/raster_by_poly.R -------------------------------------------------------------------------------- /R/shortcuts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/shortcuts.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/utm-convert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/utm-convert.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /bcmaps.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/bcmaps.Rproj -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/create_internal_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/data-raw/create_internal_data.R -------------------------------------------------------------------------------- /data-raw/layers_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/data-raw/layers_df.csv -------------------------------------------------------------------------------- /data-raw/mapsheets_250K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/data-raw/mapsheets_250K/README.md -------------------------------------------------------------------------------- /data-raw/mapsheets_250K/process_mapsheet_250K.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/data-raw/mapsheets_250K/process_mapsheet_250K.R -------------------------------------------------------------------------------- /data-raw/utm-zone-lookup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/data-raw/utm-zone-lookup.R -------------------------------------------------------------------------------- /data-raw/utm-zone-lookup.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/data-raw/utm-zone-lookup.csv -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/sticker/bcmaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/inst/sticker/bcmaps.png -------------------------------------------------------------------------------- /inst/sticker/bcmaps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/inst/sticker/bcmaps.svg -------------------------------------------------------------------------------- /inst/sticker/create_sticker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/inst/sticker/create_sticker.R -------------------------------------------------------------------------------- /man/airzones.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/airzones.Rd -------------------------------------------------------------------------------- /man/available_layers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/available_layers.Rd -------------------------------------------------------------------------------- /man/bc_area.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/bc_area.Rd -------------------------------------------------------------------------------- /man/bc_bbox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/bc_bbox.Rd -------------------------------------------------------------------------------- /man/bc_bound.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/bc_bound.Rd -------------------------------------------------------------------------------- /man/bc_bound_hres.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/bc_bound_hres.Rd -------------------------------------------------------------------------------- /man/bc_cities.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/bc_cities.Rd -------------------------------------------------------------------------------- /man/bc_neighbours.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/bc_neighbours.Rd -------------------------------------------------------------------------------- /man/bcmaps-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/bcmaps-package.Rd -------------------------------------------------------------------------------- /man/bec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/bec.Rd -------------------------------------------------------------------------------- /man/bec_colours.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/bec_colours.Rd -------------------------------------------------------------------------------- /man/cded.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/cded.Rd -------------------------------------------------------------------------------- /man/cded_raster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/cded_raster.Rd -------------------------------------------------------------------------------- /man/cded_stars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/cded_stars.Rd -------------------------------------------------------------------------------- /man/cded_terra.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/cded_terra.Rd -------------------------------------------------------------------------------- /man/census_dissemination_area.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/census_dissemination_area.Rd -------------------------------------------------------------------------------- /man/census_dissemination_block.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/census_dissemination_block.Rd -------------------------------------------------------------------------------- /man/census_division.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/census_division.Rd -------------------------------------------------------------------------------- /man/census_economic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/census_economic.Rd -------------------------------------------------------------------------------- /man/census_metropolitan_area.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/census_metropolitan_area.Rd -------------------------------------------------------------------------------- /man/census_subdivision.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/census_subdivision.Rd -------------------------------------------------------------------------------- /man/census_tract.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/census_tract.Rd -------------------------------------------------------------------------------- /man/combine_nr_rd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/combine_nr_rd.Rd -------------------------------------------------------------------------------- /man/delete_cache.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/delete_cache.Rd -------------------------------------------------------------------------------- /man/ecoprovinces.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/ecoprovinces.Rd -------------------------------------------------------------------------------- /man/ecoregions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/ecoregions.Rd -------------------------------------------------------------------------------- /man/ecosections.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/ecosections.Rd -------------------------------------------------------------------------------- /man/figures/lifecycle-archived.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/figures/lifecycle-archived.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-defunct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/figures/lifecycle-defunct.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-maturing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/figures/lifecycle-maturing.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-questioning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/figures/lifecycle-questioning.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/figures/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /man/fix_geo_problems.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/fix_geo_problems.Rd -------------------------------------------------------------------------------- /man/fsa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/fsa.Rd -------------------------------------------------------------------------------- /man/get_layer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/get_layer.Rd -------------------------------------------------------------------------------- /man/get_poly_attribute.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/get_poly_attribute.Rd -------------------------------------------------------------------------------- /man/gw_aquifers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/gw_aquifers.Rd -------------------------------------------------------------------------------- /man/health_chsa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/health_chsa.Rd -------------------------------------------------------------------------------- /man/health_ha.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/health_ha.Rd -------------------------------------------------------------------------------- /man/health_hsda.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/health_hsda.Rd -------------------------------------------------------------------------------- /man/health_lha.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/health_lha.Rd -------------------------------------------------------------------------------- /man/hydrozones.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/hydrozones.Rd -------------------------------------------------------------------------------- /man/mapsheets_250K.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/mapsheets_250K.Rd -------------------------------------------------------------------------------- /man/mapsheets_50K.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/mapsheets_50K.Rd -------------------------------------------------------------------------------- /man/municipalities.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/municipalities.Rd -------------------------------------------------------------------------------- /man/nr_areas.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/nr_areas.Rd -------------------------------------------------------------------------------- /man/nr_districts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/nr_districts.Rd -------------------------------------------------------------------------------- /man/nr_regions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/nr_regions.Rd -------------------------------------------------------------------------------- /man/raster_by_poly.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/raster_by_poly.Rd -------------------------------------------------------------------------------- /man/regional_districts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/regional_districts.Rd -------------------------------------------------------------------------------- /man/self_union.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/self_union.Rd -------------------------------------------------------------------------------- /man/summarize_raster_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/summarize_raster_list.Rd -------------------------------------------------------------------------------- /man/transform_bc_albers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/transform_bc_albers.Rd -------------------------------------------------------------------------------- /man/tsa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/tsa.Rd -------------------------------------------------------------------------------- /man/utm_convert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/utm_convert.Rd -------------------------------------------------------------------------------- /man/vrt_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/vrt_files.Rd -------------------------------------------------------------------------------- /man/vrt_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/vrt_info.Rd -------------------------------------------------------------------------------- /man/water_districts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/water_districts.Rd -------------------------------------------------------------------------------- /man/water_precincts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/water_precincts.Rd -------------------------------------------------------------------------------- /man/watercourses_15M.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/watercourses_15M.Rd -------------------------------------------------------------------------------- /man/watercourses_5M.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/watercourses_5M.Rd -------------------------------------------------------------------------------- /man/wsc_drainages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/man/wsc_drainages.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tests/testthat/helper.R -------------------------------------------------------------------------------- /tests/testthat/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tests/testthat/setup.R -------------------------------------------------------------------------------- /tests/testthat/teardown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tests/testthat/teardown.R -------------------------------------------------------------------------------- /tests/testthat/test-cache-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tests/testthat/test-cache-utils.R -------------------------------------------------------------------------------- /tests/testthat/test-cded.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tests/testthat/test-cded.R -------------------------------------------------------------------------------- /tests/testthat/test-data_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tests/testthat/test-data_functions.R -------------------------------------------------------------------------------- /tests/testthat/test-raster_by_poly.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tests/testthat/test-raster_by_poly.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /tests/testthat/test-utm-convert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tests/testthat/test-utm-convert.R -------------------------------------------------------------------------------- /tools/readme/bc_neighbours-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tools/readme/bc_neighbours-1.png -------------------------------------------------------------------------------- /tools/readme/bcmaps-sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tools/readme/bcmaps-sticker.png -------------------------------------------------------------------------------- /tools/readme/bec-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tools/readme/bec-1.png -------------------------------------------------------------------------------- /tools/readme/cded-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tools/readme/cded-1.png -------------------------------------------------------------------------------- /tools/readme/plot-maps-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tools/readme/plot-maps-1.png -------------------------------------------------------------------------------- /tools/readme/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tools/readme/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /tools/readme/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tools/readme/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /tools/readme/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tools/readme/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /tools/readme/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tools/readme/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /tools/readme/watercourses-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/tools/readme/watercourses-1.png -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/vignettes/.gitignore -------------------------------------------------------------------------------- /vignettes/add_points.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/vignettes/add_points.Rmd -------------------------------------------------------------------------------- /vignettes/add_points.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/vignettes/add_points.Rmd.orig -------------------------------------------------------------------------------- /vignettes/bcmaps.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/vignettes/bcmaps.Rmd -------------------------------------------------------------------------------- /vignettes/bcmaps.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/vignettes/bcmaps.Rmd.orig -------------------------------------------------------------------------------- /vignettes/precompile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/vignettes/precompile.R -------------------------------------------------------------------------------- /vignettes/vignette-fig-bc_neighbours-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/vignettes/vignette-fig-bc_neighbours-1.png -------------------------------------------------------------------------------- /vignettes/vignette-fig-bec-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/vignettes/vignette-fig-bec-1.png -------------------------------------------------------------------------------- /vignettes/vignette-fig-cded-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/vignettes/vignette-fig-cded-1.png -------------------------------------------------------------------------------- /vignettes/vignette-fig-convert-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/vignettes/vignette-fig-convert-1.png -------------------------------------------------------------------------------- /vignettes/vignette-fig-overlay-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/vignettes/vignette-fig-overlay-1.png -------------------------------------------------------------------------------- /vignettes/vignette-fig-plot-maps-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/vignettes/vignette-fig-plot-maps-1.png -------------------------------------------------------------------------------- /vignettes/vignette-fig-unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bcmaps/HEAD/vignettes/vignette-fig-unnamed-chunk-3-1.png --------------------------------------------------------------------------------