This repository hosts the source code of the book Geospatial Data Science with Julia.
The book is available online for free at https://juliaearth.github.io/geospatial-data-science-with-julia
To build this book, you need:
- Julia v1.11 (or a later release)
- Quarto
-
Open the Julia REPL and instantiate the environment in this folder:
import Pkg Pkg.activate(".") Pkg.instantiate()
-
Open the terminal, choose any
*.qmdfile (e.g.,index.qmd) and preview it:quarto preview index.qmd
-
Render the entire book to different output formats:
quarto render # default to htmlquarto render --to pdf
If you prefer to work with VSCode, install the Quarto VSCode extension.
Edit the files and press the render button. All changes to the files
are automatically tracked by the extension.