Skip to content

Commit 0e28b4c

Browse files
committed
rebuild website
1 parent 1fea7a6 commit 0e28b4c

19 files changed

+493
-17
lines changed

02_choropleth.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ mapviewOptions(legend.pos = "bottomright")
127127
mapviewOptions(leafletWidth = 800)
128128
#mapviewOptions()
129129
#mapviewOptions(default = TRUE)
130-
mapview(poopulation, zcol = "estimate", native.crs = TRUE, crs = 5070)
130+
mapview(population, zcol = "estimate", native.crs = TRUE, crs = 5070)
131131
```
132132

133133

docs/01_georeference.html

Lines changed: 7 additions & 4 deletions
Large diffs are not rendered by default.

docs/01_ggmap_georef.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,9 @@
452452
<li>
453453
<a href="next.html">Next Steps</a>
454454
</li>
455+
<li>
456+
<a href="resources.html">Resources</a>
457+
</li>
455458
</ul>
456459
</li>
457460
<li>

docs/02_choropleth.html

Lines changed: 11 additions & 8 deletions
Large diffs are not rendered by default.

docs/030_thematic_sf.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,9 @@
387387
<li>
388388
<a href="next.html">Next Steps</a>
389389
</li>
390+
<li>
391+
<a href="resources.html">Resources</a>
392+
</li>
390393
</ul>
391394
</li>
392395
<li>
@@ -478,7 +481,7 @@ <h2>Simple Features</h2>
478481
<p>The <code>sf</code> simple features package affords the R coder an easy and familiar method of <strong>storing data</strong> vectors and <strong>shapefile</strong> polygons in a <strong>tidy data frame</strong>.</p>
479482
</blockquote>
480483
<p>In these <em>Thematic Mapping with Simple Features</em> sections, we introduce the <code>tmap</code> package first. Through the the <code>tmap</code> package you will learn an easy-to-use package for building spatial distributions on geographic maps. These maps are typically <code>.png</code> image files. (.png files are easy to produce and share.) In this section we’ll also use the <code>tigris</code> package – to gather Census shapefiles – and store those shape objects in the Simple Features data structure. (In the <a href="02_choropleth.html"><em>Chropleth</em> module</a> we used <code>tidycensus</code> to gather census Geography shape objects, as well as to gather census data variables.) <code>tigris</code> simply gathers the shapefile polygons. Later we will join the polygon object to a data frame using <code>tmaptools</code>.</p>
481-
<p>Next, we’ll use the <code>ggplot::geom_sf</code> function to create our mapping visualiations using the widely adopted ggplot2 syntax.</p>
484+
<p>Next, we’ll use the <code>ggplot::geom_sf</code> function to create our mapping visualizations using the widely adopted ggplot2 syntax.</p>
482485
<p>Later, in the <em>interactive thematic mapping</em> section, you will make a different interactive choropleth using <code>leaflet</code>. This section is largely a repeat of the earlier choropleth module. The level of interactivity is sparse, but functional. Interactivity demonstrates how you can generate maps which move beyond traditional 2D map-on-a-page images. Just know that this zoom-in/zoom-out interactivity feature is possible because we use <code>leaflet</code> to draw the map. By extension, you can add many interactive features, e.g. pop-up windows. This section is a good set-up for the last section which covers how to save maps as files.</p>
483486
<p><a href="01_georeference.html#save_the_map">Saving / sharing ouput files</a>. Even interactive maps can be shared and distributed. You can share maps either on the web, as an HTML file.</p>
484487
</div>

docs/031_thematic_mapping.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,9 @@
452452
<li>
453453
<a href="next.html">Next Steps</a>
454454
</li>
455+
<li>
456+
<a href="resources.html">Resources</a>
457+
</li>
455458
</ul>
456459
</li>
457460
<li>

docs/032_thematic_mapping_geom_sf.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,9 @@
452452
<li>
453453
<a href="next.html">Next Steps</a>
454454
</li>
455+
<li>
456+
<a href="resources.html">Resources</a>
457+
</li>
455458
</ul>
456459
</li>
457460
<li>

docs/033_thematic_leaflet_example.html

Lines changed: 5 additions & 2 deletions
Large diffs are not rendered by default.

docs/036_thematic_mapping-outputs-fullwebpage.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,9 @@
452452
<li>
453453
<a href="next.html">Next Steps</a>
454454
</li>
455+
<li>
456+
<a href="resources.html">Resources</a>
457+
</li>
455458
</ul>
456459
</li>
457460
<li>

docs/038_facets_wrap_thematic_mapping.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,9 @@
452452
<li>
453453
<a href="next.html">Next Steps</a>
454454
</li>
455+
<li>
456+
<a href="resources.html">Resources</a>
457+
</li>
455458
</ul>
456459
</li>
457460
<li>

0 commit comments

Comments
 (0)