Skip to content

Commit

Permalink
syllabus and week2
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshMerfeld committed Sep 23, 2024
1 parent 3a015f2 commit aaa2b0e
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 35 deletions.
Binary file modified syllabus.doc
Binary file not shown.
Binary file modified syllabus.pdf
Binary file not shown.
99 changes: 65 additions & 34 deletions week2.html

Large diffs are not rendered by default.

22 changes: 21 additions & 1 deletion week2.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,12 @@ kdisgray <- "#A7A9AC"
- Shapefiles are a common format for geospatial data
- They are a form of `vector` data

- Shapefiles are made up of _at least_ four files:
- Shapefiles are made up of _at least_ three files:
- `.shp` - the shape itself
- `.shx` - the index
- `.dbf` - the attributes
- `.prj` - the projection
- This one is not technically necessary! But it's common to have.
- What these all mean isn't important for now, just make sure they are there! Check the `week2files` folder on github.


Expand Down Expand Up @@ -1619,6 +1620,25 @@ plot_grid(g1, g2) +
- Plot them side by side using `cowplot`





## Returning to the files

- Shapefiles are made up of _at least_ four files:
- `.shp` - the shape itself
- The geometry
- `.shx` - the index
- The "index". You can actual recover the .shx file from the .shp file
- `.dbf` - the attributes
- The attributes for each features. Could be names, population values, etc.
- `.prj` - the projection
- The projection information, which we just discussed

- There are often more files, but these are the main ones
- You **must** have the first three. The fourth is optional, but common.





Expand Down

0 comments on commit aaa2b0e

Please sign in to comment.