Geocomputation with Julia is an open source book project. We are developing it in the open and publishing an up-to-date online version at https://jl.geocompx.org/. Geocomputation with Julia is part of the geocompx series providing geocomputation resources in different languages.
To run the code that is part of the Geocomputation with Julia book requires the following dependencies:
- Julia: To install julia on your machine we recommend to use juliaup which can be installed follwing these installation instructions For now we need to restrict to julia 1.10 because quarto 1.5 does not work with julia 1.11 To restrict the julia version for this project folder run
juliaup override set 1.10
- Quarto, which is used to render the book. This needs quarto 1.5.30 or higher
- Julia Dependencies:
To install the julia dependencies run the following in the main folder of this project:
julia --project -e "using Pkg; Pkg.instantiate()"