Skip to content

Commit d326702

Browse files
authored
Merge pull request #24 from ktyle/main
Initial Cartopy work
2 parents 6d3c41f + 6109559 commit d326702

File tree

8 files changed

+608
-5
lines changed

8 files changed

+608
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,3 +135,4 @@ content/pages/communications.md
135135
content/pages/contributing.md
136136
content/pages/code_of_conduct.md
137137
content/notebooks_gallery/
138+
.jupyter_cache/

.jupyter_cache/global.db

28 KB
Binary file not shown.

_config.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ title: Project Pythia Foundations
55
author: The Project Pythia community
66
logo: images/ProjectPythia_Logo_Final-01-Blue.png
77

8-
# Force re-execution of notebooks on each build.
9-
# See https://jupyterbook.org/content/execute.html
108
execute:
11-
execute_notebooks: force
9+
# See https://jupyterbook.org/content/execute.html
10+
execute_notebooks: cache
11+
# "auto" should only execute those notebooks that don't have output in all cells.
12+
# "force" : force execution of all notebooks
13+
# "cache": Cache output of notebooks on each build.
14+
timeout: 600
15+
# Do not abort notebook execution for errors, since they may be intentional.
16+
allow_errors: True
1217

1318
# Define the name of the latex output file for PDF builds
1419
latex:

_toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636
- file: core/numpy
3737
- file: core/matplotlib
3838
- file: core/cartopy
39+
sections:
40+
- file: core/cartopy/01_Cartopy_Intro
3941
- file: core/datetime
4042
- file: core/pandas
4143
- file: core/data-formats

core/cartopy.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,19 @@
44
This content is under construction!
55
```
66

7-
This section will contain tutorials on plotting map with [cartopy](https://scitools.org.uk/cartopy/docs/latest/). It will be cross-referenced with tutorials on [xarray](xarray) and [matplotlib](matplotlib).
7+
This section contains tutorials on plotting maps with [cartopy](https://scitools.org.uk/cartopy/docs/latest/).
8+
It will be cross-referenced with tutorials on [xarray](xarray) and [matplotlib](matplotlib).
9+
10+
---
11+
12+
From the [Cartopy website](https://scitools.org.uk/cartopy/docs/latest):
13+
Cartopy is a Python package designed for geospatial data processing in order to
14+
produce maps and other geospatial data analyses.
15+
16+
Cartopy makes use of the powerful PROJ.4, NumPy and Shapely libraries and includes a programmatic interface
17+
built on top of Matplotlib for the creation of publication quality maps.
18+
19+
You should have a basic familiarity with Matplotlib prior to working through the Cartopy notebooks presented here.
20+
21+
Key features of cartopy are its object-oriented [projection definitions](https://scitools.org.uk/cartopy/docs/latest/crs/projections.html#cartopy-projections),
22+
and its ability to transform points, lines, vectors, polygons and images between those projections.

0 commit comments

Comments
 (0)