Skip to content

Commit 81e10d3

Browse files
Feat/cleanup book 2 (#19)
* wip reorganization * update book metadata * update reqs * update reqs * update book * more cleanup * rerun * update * update geoprocessing * more updates to book 2 * clear book2 output * update structure + finish geoprocessing
1 parent 635ee1e commit 81e10d3

10 files changed

Lines changed: 1363 additions & 2333 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ _toc.yml
1010

1111
# MyST build outputs
1212
_build
13+
/node_modules

Tutorials/00_Getting_Started.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 00. A Note on syntax
2+
Throughout this site, you will see code snippets that are formatted in a specific way. This is done to make it easier to read and understand the code. Some examples include:
3+
- `# This is a comment`: This is a comment in Python. Comments are used to explain what the code does and are ignored by the Python interpreter. It is good practice to leave useful notes in the code to help others (and yourself) understand what the code does.
4+
- `[some-reference-here]`: Items in the code surrounded by brackets are cases where you should replace the contents, *including the brackets*, with another value. For example, if you see `[pick-a-name]`, you should replace it with a name of your choice, such as `gis` or `cdp`. The brackets are not part of the code and should not be included in your code.
5+
6+
17
# 01. Setting up your environment
28

39
1. Install [VSCode](https://code.visualstudio.com/)

Tutorials/01_vector_data_apis.ipynb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# 01. Describing and visualizing data"
8+
]
9+
},
310
{
411
"cell_type": "markdown",
512
"metadata": {},

Tutorials/02_geoprocessing.ipynb

Lines changed: 710 additions & 2329 deletions
Large diffs are not rendered by default.

Tutorials/00_Python_Basics.ipynb renamed to Tutorials/Additional_Tutorials/00_Python_Basics.ipynb

File renamed without changes.

Tutorials/01_Clustering.ipynb renamed to Tutorials/Additional_Tutorials/01_Clustering.ipynb

File renamed without changes.

myst.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ site:
3939
favicon: favicon.ico
4040
navbar_title: CDP Mapping Systems # <- This controls the top-left title
4141
footer: "© 2025 CDP Mapping Systems" # <- This replaces the MyST footer text
42+
logo: logo.svg
4243
nav:
43-
- title: CDP Mapping Systems
44-
url: https://mapping-systems.github.io/cdp-mapping-systems/
45-
# logo: site_logo.png
44+
# - title: CDP Mapping Systems
45+
# url: https://mapping-systems.github.io/cdp-mapping-systems/
46+

0 commit comments

Comments
 (0)