Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://juliaearth.github.io/geospatial-data-science-with-julia/
Geospatial Data Science with Julia
https://juliaearth.github.io/geospatial-data-science-with-julia/
book computational data geo geometry geospatial geostatistics julia science statistics
Last synced: about 1 month ago
JSON representation
Geospatial Data Science with Julia
- Host: GitHub
- URL: https://juliaearth.github.io/geospatial-data-science-with-julia/
- Owner: JuliaEarth
- Created: 2023-08-10T22:37:10.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-21T17:10:52.000Z (7 months ago)
- Last Synced: 2024-05-22T18:02:12.709Z (7 months ago)
- Topics: book, computational, data, geo, geometry, geospatial, geostatistics, julia, science, statistics
- Language: TeX
- Homepage: https://juliaearth.github.io/geospatial-data-science-with-julia
- Size: 225 MB
- Stars: 78
- Watchers: 8
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- Citation: CITATION.bib
Awesome Lists containing this project
README
# Geospatial Data Science with Julia
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](https://juliaearth.github.io/geospatial-data-science-with-julia)## Build instructions
To build this book, you need:
- Julia v1.10
- IJulia (>= v1.24)
```julia
import Pkg
Pkg.add("IJulia")
```
- Quarto1. Open the Julia REPL and instantiate the environment in this folder:
```julia
import Pkg
Pkg.activate(".")
Pkg.instantiate()
```
2. Go to any `*.qmd` file and run the following in the terminal:```sh
quarto preview index.qmd
```Your web browser will open a tab with the book rendered.
### Optional
If you prefer to work with VSCode, install the Quarto VSCode extension.
Edit the files and press the `render` button.