Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Explore geographic data #1

Open
jmhernan opened this issue Jun 23, 2021 · 1 comment
Open

Explore geographic data #1

jmhernan opened this issue Jun 23, 2021 · 1 comment
Labels
question Further information is requested
Projects

Comments

@jmhernan
Copy link
Collaborator

We can begin looking at WA state census geographical area data. We can access these files here

I wouldn't download these files directly to your machines, I wrote a simple script to begin exploring these while grabbing them directly from the web-site and storing them in temporary storage. See full script here.

# create a couple temp files
temp <- tempfile()
temp2 <- tempfile()

# download the zip folder from the internet save to 'temp'
download.file(
  "https://ofm.wa.gov/sites/default/files/public/legacy/pop/geographic/tiger10/tract10.zip",
  temp)

If we were to use tracts as our geographic aggregation, how would we measure distances between them? (e.g midpoint)

@jmhernan jmhernan added the question Further information is requested label Jun 23, 2021
@jmhernan jmhernan added this to To do in DSSG R&D Jun 23, 2021
@jmhernan
Copy link
Collaborator Author

this is the package that i'm using for this:
https://r-spatial.github.io/sf/
Super cool!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
Development

No branches or pull requests

1 participant