TigerFetch.jl

Download TIGER/Line shapefiles from the US Census Bureau
Log | Files | Refs | README | LICENSE

commit 148e717e35d1ead1f3dd7fb662344aea50f52ce8
parent eb8e584506279dec478e92109c89fad68971d137
Author: Erik Loualiche <eloualic@umn.edu>
Date:   Sat, 24 May 2025 14:22:26 -0500

moving to different org ... need to still upload the artifact

Diffstat:
M.gitignore | 5++---
MArtifacts.toml | 7++++---
MProject.toml | 2+-
MREADME.md | 17++++++++++-------
Mdocs/make.jl | 11+++++------
5 files changed, 22 insertions(+), 20 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -2,7 +2,7 @@ **/Manifest.toml .DS_Store tmp - +setup_readme.md **/sandbox.* assets @@ -13,4 +13,4 @@ assets # doc docs/build/ docs/node_modules -# --------------------------------------------------------------------------------------------------- \ No newline at end of file +# -------------------------------------------------------------------------------------------------- diff --git a/Artifacts.toml b/Artifacts.toml @@ -1,6 +1,7 @@ [fips_state_county_list] git-tree-sha1 = "26354f6cda92c1671ba7569ca2273e3600b1c717" - [[fips_state_county_list.download]] - sha256 = "f00e895f9358863c07e9c6c3b9eedf199cc740aab0583ce25de39e9d7159b565" - url = "https://github.com/eloualiche/TigerFetch.jl/releases/download/0.1.1/fips_state_county_list.tar.gz" +[[fips_state_county_list.download]] +sha256 = "8009d5f86e656b4c57938f941d0dcf8f20859f14ea42fc67a26e71258adeb7a6" +url = "file:///Users/loulou/Desktop/incoming/julia/artifacts/fips_state_county_list.tar.gz" +# url = "https://github.com/louloulibs/TigerFetch.jl/releases/download/0.2.0/fips_state_county_list.tar.gz" diff --git a/Project.toml b/Project.toml @@ -1,7 +1,7 @@ name = "TigerFetch" uuid = "59408d0a-a903-460e-b817-a5586a16527e" authors = ["Erik Loualiche"] -version = "0.1.2" +version = "0.2.0" [deps] Comonicon = "863f3e99-da2a-4334-8734-de3dacbe5542" diff --git a/README.md b/README.md @@ -14,11 +14,14 @@ You can always check what is directly available on the [ftp server.](https://www ## Installation +You can either use the package through the command line (and stay away from julia) or you can use it from within julia. + + #### Command line tool Install the command line tool (you need a julia installation for this) ```bash mkdir -p /.local/share/julia # or some other directory -git clone git@github.com:eloualiche/TigerFetch.jl.git ~/.local/share/julia +git clone git@github.com:louloulibs/TigerFetch.jl.git ~/.local/share/julia cd ~/.local/share/julia && julia --project deps/build.jl install ``` @@ -31,7 +34,7 @@ TigerFetch.jl is not yet a registered package. You can install it from github via ```julia import Pkg -Pkg.add(url="https://github.com/eloualiche/TigerFetch.jl") +Pkg.add(url="https://github.com/louloulibs/TigerFetch.jl") ``` Then install the cli tool with @@ -57,20 +60,20 @@ You can use it #### Julia package -Look at the [doc](https://eloualiche.github.io/TigerFetch.jl/dev/) or at the test suite (specifically `UnitTests/downloads.jl`). +Look at the [doc](https://louloulibs.github.io/TigerFetch.jl/dev/) or at the test suite (specifically `UnitTests/downloads.jl`). This [issue](#4) tracks which geographies have been implemented thus far. -[![CI](https://github.com/eloualiche/TigerFetch.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/eloualiche/TigerFetch.jl/actions/workflows/CI.yml) -[![Lifecycle:Experimental](https://img.shields.io/badge/Lifecycle-Experimental-339999)](https://github.com/eloualiche/Prototypes.jl/actions/workflows/CI.yml) -[![codecov](https://codecov.io/gh/eloualiche/TigerFetch.jl/graph/badge.svg?token=OZRTOQU9H6)](https://codecov.io/gh/eloualiche/TigerFetch.jl) +[![CI](https://github.com/louloulibs/TigerFetch.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/louloulibs/TigerFetch.jl/actions/workflows/CI.yml) +[![Lifecycle:Experimental](https://img.shields.io/badge/Lifecycle-Experimental-339999)](https://github.com/louloulibs/Prototypes.jl/actions/workflows/CI.yml) +[![codecov](https://codecov.io/gh/louloulibs/TigerFetch.jl/graph/badge.svg?token=OZRTOQU9H6)](https://codecov.io/gh/louloulibs/TigerFetch.jl) [![][docs-latest-img]][docs-latest-url] [docs-latest-img]: https://img.shields.io/badge/docs-latest-blue.svg -[docs-latest-url]: https://eloualiche.github.io/TigerFetch.jl/ +[docs-latest-url]: https://louloulibs.github.io/TigerFetch.jl/ diff --git a/docs/make.jl b/docs/make.jl @@ -14,13 +14,13 @@ using TigerFetch using Documenter using DocumenterVitepress -# -- +# -- makedocs( # format = Documenter.HTML(), format = MarkdownVitepress( - repo = "https://github.com/eloualiche/TigerFetch.jl", + repo = "https://github.com/louloulibs/TigerFetch.jl", ), - repo = Remotes.GitHub("eloualiche", "TigerFetch.jl"), + repo = Remotes.GitHub("louloulibs", "TigerFetch.jl"), sitename = "TigerFetch.jl", modules = [TigerFetch], authors = "Erik Loualiche", @@ -42,10 +42,10 @@ makedocs( # -- deploydocs(; - repo = "github.com/eloualiche/TigerFetch.jl", + repo = "github.com/louloulibs/TigerFetch.jl", target = "build", # this is where Vitepress stores its output devbranch = "main", branch = "gh-pages", push_preview = true, ) -# --------------------------------------------------------------------------------------------------- \ No newline at end of file +# --------------------------------------------------------------------------------------------------