Skip to content

Package Internals

TigerFetch Module

TigerFetch.artifact_dir Method

Get the directory containing the artifact files.

source

TigerFetch.comonicon_install Method
julia
comonicon_install(;kwargs...)

Install the CLI manually. This will use the default configuration in Comonicon.toml, if it exists. For more detailed reference, please refer to Comonicon documentation.

source

TigerFetch.comonicon_install_path Method
julia
comonicon_install_path(;[yes=false])

Install the PATH and FPATH to your shell configuration file. You can use comonicon_install_path(;yes=true) to skip interactive prompt. For more detailed reference, please refer to Comonicon documentation.

source

TigerFetch.get_reference_data Method

Get paths to specific reference files.

source

TigerFetch.tigerfetch Function

tigerfetch(type, year)

Download shapefiles for US geography from the Census Tiger ftp server.

Intro

Args

  • type: Geography type (state, county, cousub, tract)

  • year: Data year (default: 2024)

Options

  • --state: State identifier (name, abbreviation, or FIPS)

  • --county: County identifier (name or FIPS, requires –state)

  • --output: Output directory (default: current directory)

  • --force: Override existing files

Examples

tigerfetch state tigerfetch cousub –state IL tigerfetch areawater –state "Minnesota" # 10,000 lakes

source