Skip to content

Commit df86365

Browse files
committed
Update repo to latest template
1 parent a67a1bf commit df86365

File tree

5 files changed

+40
-29
lines changed

5 files changed

+40
-29
lines changed

CITATION.cff

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
cff-version: 1.2.0
2+
message: "If you use this cookbook, please cite it as below."
3+
authors:
4+
# add additional entries for each author -- see https://github.com/citation-file-format/citation-file-format/blob/main/schema-guide.md
5+
- family-names: Huang
6+
given-names: Andrew
7+
orcid: https://orcid.org/0000-0000-0000-0000 # optional -- this should be updated!
8+
website: https://github.com/ahuang11 # optional
9+
# affiliation: # optional
10+
- name: "Web Map / Feature Services Cookbook contributors" # use the 'name' field to acknowledge organizations
11+
website: "https://github.com/ProjectPythia/web-map-feature-services-cookbook/graphs/contributors"
12+
title: "Web Map / Feature Services Cookbook"
13+
abstract: "A sample cookbook description." # this needs updating!

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
# Web Map / Feature Services Cookbook
44

5-
[![nightly-build](https://github.com/ProjectPythia/cookbook-template/actions/workflows/nightly-build.yaml/badge.svg)](https://github.com/ProjectPythia/cookbook-template/actions/workflows/nightly-build.yaml)
6-
[![Binder](http://binder.mypythia.org/badge_logo.svg)](http://binder.mypythia.org/v2/gh/ProjectPythia/cookbook-template/main?labpath=notebooks)
5+
[![nightly-build](https://github.com/ProjectPythia/web-map-feature-services-cookbook/actions/workflows/nightly-build.yaml/badge.svg)](https://github.com/ProjectPythia/web-map-feature-services-cookbook/actions/workflows/nightly-build.yaml)
6+
[![Binder](https://binder.projectpythia.org/badge_logo.svg)](https://binder.projectpythia.org/v2/gh/ProjectPythia/cookbook-template/main?labpath=notebooks)
7+
[![DOI](https://zenodo.org/badge/653301659.svg)](https://zenodo.org/badge/latestdoi/653301659)
78

89
This Project Pythia Cookbook covers retrieving and using web map / feature services to help provide the necessary spatial context to your data.
910

@@ -23,7 +24,7 @@ By leveraging web map / feature services, users can easily access pre-processed
2324

2425
### Contributors
2526

26-
<a href="https://github.com/ahuang11/web-map-feature-services-cookbook/graphs/contributors">
27+
<a href="https://github.com/ProjectPythia/web-map-feature-services-cookbook/graphs/contributors">
2728
<img src="https://contrib.rocks/image?repo=ProjectPythia/web-map-feature-services-cookbook" />
2829
</a>
2930

@@ -47,7 +48,7 @@ Example workflows include:
4748
### Running on Binder
4849

4950
The simplest way to interact with a Jupyter Notebook is through
50-
[Binder](https://mybinder.org/), which enables the execution of a
51+
[Binder](https://binder.projectpythia.org/), which enables the execution of a
5152
[Jupyter Book](https://jupyterbook.org) in the cloud. The details of how this works are not
5253
important for now. All you need to know is how to launch a Pythia
5354
Cookbooks chapter via Binder. Simply navigate your mouse to
@@ -67,20 +68,20 @@ If you are interested in running this material locally on your computer, you wil
6768

6869
(Replace "cookbook-example" with the title of your cookbooks)
6970

70-
1. Clone the `https://github.com/ProjectPythia/cookbook-example` repository:
71+
1. Clone the `https://github.com/ProjectPythia/web-map-feature-services-cookbook` repository:
7172

7273
```bash
73-
git clone https://github.com/ProjectPythia/cookbook-example.git
74+
git clone https://github.com/ProjectPythia/web-map-feature-services-cookbook.git
7475
```
7576

76-
1. Move into the `cookbook-example` directory
77+
1. Move into the `web-map-feature-services-cookbook` directory
7778
```bash
78-
cd cookbook-example
79+
cd web-map-feature-services-cookbook
7980
```
8081
1. Create and activate your conda environment from the `environment.yml` file
8182
```bash
8283
conda env create -f environment.yml
83-
conda activate cookbook-example
84+
conda activate web-map-feature-services-cookbook-dev
8485
```
8586
1. Move into the `notebooks` directory and start up Jupyterlab
8687
```bash

_config.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,10 @@
11
# Book settings
22
# Learn more at https://jupyterbook.org/customize/config.html
33

4-
title: Project Pythia Cookbook Template
4+
title: Web Map / Feature Services Cookbook
55
author: the <a href="https://projectpythia.org/">Project Pythia</a> Community
66
logo: notebooks/images/logos/pythia_logo-white-rtext.svg
7-
email: projectpythia@ucar.edu
8-
copyright: "2022"
9-
10-
description: A sample cookbook description.
11-
thumbnail: thumbnail.png
12-
tags:
13-
domains:
14-
- sampledomain
15-
packages:
16-
- samplepackage
7+
copyright: "2023"
178

189
execute:
1910
# To execute notebooks via a binder instead, replace 'cache' with 'binder'

_gallery_info.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
thumbnail: thumbnail.png
2+
tags:
3+
domains:
4+
- sampledomain
5+
packages:
6+
- samplepackage

environment.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ channels:
44
dependencies:
55
- jupyter-book
66
- jupyterlab
7-
- jupyter_server<2
7+
- jupyter_server
88
- pip
99
- cartopy
10+
- jupyter_bokeh
11+
- requests
12+
- geoviews
13+
- panel
14+
- geopandas
15+
- hvplot
16+
- owslib
1017
- pip:
11-
- sphinx-pythia-theme
12-
- jupyter_bokeh
13-
- requests
14-
- geoviews
15-
- panel
16-
- geopandas
17-
- hvplot
18-
- owslib
18+
- sphinx-pythia-theme

0 commit comments

Comments
 (0)