Skip to content

Commit dbd80bf

Browse files
committed
update readme links
1 parent 06f09f9 commit dbd80bf

File tree

3 files changed

+24
-23
lines changed

3 files changed

+24
-23
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ This course is divided into seven 2 week modules. Each module consists of 4 lect
9292
| [3 - Data Modeling](https://github.com/ag-informatics/ag-informatics-course/tree/main/module3) | Week 5 & 6 | Quiz 3, Submit Lab 2, Submit Project Part 1 |
9393
| [4 - Web Application](https://github.com/ag-informatics/ag-informatics-course/tree/main/module4) | Week 7 & 8 | Quiz 4, Submit Lab 3 |
9494
| [5 - User Interfaces](https://github.com/ag-informatics/ag-informatics-course/tree/main/module5) | Week 9 & 10 | Quiz 5, Submit Lab 4, Submit Project Part 2 |
95-
| [6 - Geospatial Data] | Week 11 & 12 | Quiz 6, Submit Lab 5 |
95+
| [6 - Geospatial Data](https://github.com/ag-informatics/ag-informatics-course/tree/main/module6) | Week 11 & 12 | Quiz 6, Submit Lab 5 |
9696
| [7 - Future of Ag Tech] | Week 13 & 14 | Quiz 7, Submit Lab 6 |
9797
| [8 - Wrap Up]() | Week 15 & 16 | Submit Lab 7, Present + Submit Project Part 3 |
9898

module6/Lecture6.1.html

+1-22
Original file line numberDiff line numberDiff line change
@@ -777,29 +777,8 @@ <h3>License</h3>
777777
slideNumber: "c/t",
778778
autoAnimateDuration: 0.5,
779779

780-
customcontrols: {
781-
controls: [
782-
{
783-
icon: '<i class="fa fa-pen-square"></i>',
784-
title: "Toggle chalkboard (B)",
785-
action: "RevealChalkboard.toggleChalkboard();",
786-
},
787-
{
788-
icon: '<i class="fa fa-pen"></i>',
789-
title: "Toggle notes canvas (C)",
790-
action: "RevealChalkboard.toggleNotesCanvas();",
791-
},
792-
],
793-
},
794-
795780
// Learn about plugins: https://../revealjs.com/plugins/
796-
plugins: [
797-
RevealMarkdown,
798-
RevealHighlight,
799-
RevealNotes,
800-
RevealChalkboard,
801-
RevealCustomControls,
802-
],
781+
plugins: [RevealMarkdown, RevealHighlight, RevealNotes],
803782
});
804783
</script>
805784
</body>

module6/live-demo.ipynb

+22
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,28 @@
256256
"source": [
257257
"In practical, you will more likely to see a collection of geometry: MultiPoint, MultiLineString, and especially MultiPolygon. These collection data types are just lists of geometry shapes. You can access properties or utilize their functions in the same way as you do with one geometry object. "
258258
]
259+
},
260+
{
261+
"cell_type": "code",
262+
"execution_count": 77,
263+
"metadata": {},
264+
"outputs": [],
265+
"source": [
266+
"import geopandas as gpd\n",
267+
"from pathlib import Path\n",
268+
"\n",
269+
"\n",
270+
"path = Path('D:/temp')\n",
271+
"\n",
272+
"gdf = gpd.read_file(path / 'Census_Tracts_with_Population_Estimates_(by_Age_and_Sex)_2021.geojson')"
273+
]
274+
},
275+
{
276+
"cell_type": "code",
277+
"execution_count": null,
278+
"metadata": {},
279+
"outputs": [],
280+
"source": []
259281
}
260282
],
261283
"metadata": {

0 commit comments

Comments
 (0)