Skip to content

Commit b0417aa

Browse files
authored
Initial page setup and get started tutorials (#1)
1 parent 9d4ed70 commit b0417aa

File tree

64 files changed

+10272
-2
lines changed

Some content is hidden

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

64 files changed

+10272
-2
lines changed

.github/workflows/publish.yml

Whitespace-only changes.

.gitignore

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# OS generated files
29+
.DS_Store
30+
31+
# PyInstaller
32+
# Usually these files are written by a python script from a template
33+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
34+
*.manifest
35+
*.spec
36+
37+
# Installer logs
38+
pip-log.txt
39+
pip-delete-this-directory.txt
40+
41+
# Unit test / coverage reports
42+
htmlcov/
43+
.tox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
.hypothesis/
51+
.pytest_cache/
52+
53+
# Translations
54+
*.mo
55+
*.pot
56+
57+
# Django stuff:
58+
*.log
59+
local_settings.py
60+
61+
# Flask stuff:
62+
instance/
63+
.webassets-cache
64+
65+
# Scrapy stuff:
66+
.scrapy
67+
68+
# Sphinx documentation
69+
docs/_build/
70+
docs/cdp_data.*rst
71+
docs/modules.rst
72+
73+
# PyBuilder
74+
target/
75+
76+
# Jupyter Notebook
77+
.ipynb_checkpoints
78+
79+
# pyenv
80+
.python-version
81+
82+
# celery beat schedule file
83+
celerybeat-schedule
84+
85+
# Dask
86+
dask-worker-space
87+
88+
# SageMath parsed files
89+
*.sage.py
90+
91+
# dotenv
92+
.env
93+
94+
# virtualenv
95+
.venv
96+
venv/
97+
ENV/
98+
99+
# Spyder project settings
100+
.spyderproject
101+
.spyproject
102+
103+
# Rope project settings
104+
.ropeproject
105+
106+
# mkdocs documentation
107+
/site
108+
109+
# mypy
110+
.mypy_cache/
111+
112+
# VSCode
113+
.vscode
114+
115+
# Quarto generated
116+
_build/
117+
.quarto/
118+
/.quarto/
119+
index.ipynb
120+
index.md
121+
index_files/
122+
index.tex

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GFDL-1.2-or-later OR CC-BY-SA-4.0

README.md

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,36 @@
1-
# grass-tutorials
2-
GRASS GIS Tutorials Repository
1+
# Learn GRASS GIS
2+
3+
Welcome to the Learn GRASS GIS repository that hosts a Quarto-powered website
4+
with a collection of tutorials and learning materials for [GRASS
5+
GIS](https://grass.osgeo.org), an open-source platform for geospatial analysis
6+
and modeling. The tutorials cover a variety of topics and is designed to help
7+
users at different skill levels.
8+
9+
## Contributing
10+
11+
We welcome all contributions, including fixes, suggestions and complete tutorials.
12+
If you're unsure where to start, feel free to open an issue to discuss your ideas.
13+
14+
To contribute changes, use a "fork and pull request" workflow. This workflow is
15+
explained in the [GitHub
16+
guide](https://github.com/OSGeo/grass/blob/main/doc/development/github_guide.md)
17+
written for OSGeo/grass repository, so just adjust it for this repository.
18+
19+
20+
## License
21+
22+
The content in this repository is dual-licensed under the
23+
[GNU Free Documentation License v1.2 or later](https://www.gnu.org/licenses/fdl-1.2.html)
24+
(GFDL-1.2-or-later) and the
25+
[Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/)
26+
(CC-BY-SA-4.0).
27+
28+
## Acknowledgments
29+
30+
The initial content of this website was supported by funding from the
31+
U.S. National Science Foundation [award 2303651](https://www.nsf.gov/awardsearch/showAward?AWD_ID=2303651).
32+
33+
## Contact
34+
35+
For questions or suggestions, feel free to open an issue or reach out to the
36+
maintainers through the [GRASS GIS community channels](https://grass.osgeo.org/community/).
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
title: Font Awesome support
2+
author: Carlos Scheidegger
3+
version: 1.1.0
4+
quarto-required: ">=1.2.269"
5+
contributes:
6+
shortcodes:
7+
- fontawesome.lua

0 commit comments

Comments
 (0)