Submission
Submission via GitHub Pages
Each task is submitted as a rendered Quarto document hosted on GitHub Pages.
Initial Setup
On GitHub:
Create a free organisation with a name of your choice and submit the URL to this organisation via email.
You need to do this only once, the rest of the steps are done for each task.
In this organisation, create a new, blank repository called
vector-deepdive
On your local machine:
Install the CLI tool Quarto
Create a new directory for this week’s task
Initialize a Git repository and link it to your GitHub repo:
git init git remote add origin <URL>Create
_quarto.yml:_quarto.yml
project: output-dir: _docsCreate
index.qmd:index.qmd
# Solution for Vector Deepdive In this document, I solve the tasks for *vector deepdive* of the course *Spatiotemporal Datascience*.Preview locally:
quarto previewPublish:
quarto publish gh-pages
Subsequent Weeks
For each new task week, create a new repository in your organisation and follow the same workflow.