Skip to content

Commit f25f8ff

Browse files
authored
update according to new specifications of geocr
Updated notebooks to follow GeoCroissant TTL format standards
2 parents 3c8401c + 8002e67 commit f25f8ff

89 files changed

Lines changed: 37069 additions & 71333 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/publish.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Publish Quarto Site
2+
3+
on:
4+
push:
5+
branches: [main, master]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: false
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout repository
22+
uses: actions/checkout@v4
23+
24+
- name: Setup Quarto
25+
uses: quarto-dev/quarto-actions/setup@v2
26+
with:
27+
version: 1.4.549
28+
29+
- name: Render Quarto Project
30+
run: quarto render
31+
32+
- name: Upload artifact
33+
uses: actions/upload-pages-artifact@v3
34+
with:
35+
path: _book
36+
37+
deploy:
38+
environment:
39+
name: github-pages
40+
url: ${{ steps.deployment.outputs.page_url }}
41+
runs-on: ubuntu-latest
42+
needs: build
43+
steps:
44+
- name: Deploy to GitHub Pages
45+
id: deployment
46+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
23+
# Virtual environments
24+
venv/
25+
ENV/
26+
env/
27+
.venv
28+
29+
# IDE
30+
.vscode/
31+
.idea/
32+
*.swp
33+
*.swo
34+
*~
35+
36+
# OS
37+
.DS_Store
38+
Thumbs.db
39+
40+
# Project specific
41+
outputs/*.png
42+
outputs/*.jpg
43+
outputs/*.tif
44+
!outputs/.gitkeep
45+
46+
# Non-Quarto companion files (standalone scripts and data)
47+
*.py
48+
*.json
49+
50+
# Quarto build outputs (deployed via gh-pages branch, not committed to main)
51+
/.quarto/
52+
_book/
53+
docs/
54+
_freeze/
55+
56+
# Jupyter
57+
.ipynb_checkpoints/
58+
*.ipynb_checkpoints

CEDA UK to GeoCroissant Support/CEDA_UK to GeoCrossiant.ipynb

Lines changed: 339 additions & 362 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)