https://github.com/gottacatchenall/bumblebeesdms
https://github.com/gottacatchenall/bumblebeesdms
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gottacatchenall/bumblebeesdms
- Owner: gottacatchenall
- Created: 2023-02-16T20:09:10.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-18T17:00:38.000Z (over 2 years ago)
- Last Synced: 2025-01-29T08:47:35.778Z (5 months ago)
- Language: Julia
- Size: 1.85 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BumblebeeSDMs
This code base is using the [Julia Language](https://julialang.org/) and
[DrWatson](https://juliadynamics.github.io/DrWatson.jl/stable/)
to make a reproducible scientific project named
> BumblebeeSDMsTo (locally) reproduce this project, do the following:
0. Download this code base. Notice that raw data are typically not included in the
git-history and may need to be downloaded independently.
1. Open a Julia console and do:
```
julia> using Pkg
julia> Pkg.add("DrWatson") # install globally, for using `quickactivate`
julia> Pkg.activate("path/to/this/project")
julia> Pkg.instantiate()
```This will install all necessary packages for you to be able to run the scripts and
everything should work out of the box, including correctly finding local paths.You may notice that most scripts start with the commands:
```julia
using DrWatson
@quickactivate "BumblebeeSDMs"
```
which auto-activate the project and enable local path handling from DrWatson.