Skip to content

Commit

Permalink
Initial kriging commit
Browse files Browse the repository at this point in the history
This is the first step toward implementing the full kriging workflow in
one of the GSTools core packages (which is the Rust one in this case,
obviously). For now, only simple kriging on isotropic fields is
implemented. This commit also includes a few early pieces for the
CovModel implemented in the core package.
  • Loading branch information
LSchueler committed Aug 26, 2024
1 parent e4c89bd commit 162f2ec
Show file tree
Hide file tree
Showing 10 changed files with 1,686 additions and 145 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Install Dependencies
run: sudo apt-get install -y build-essentials gfortran
- uses: actions-rs/cargo@v1
name: fmt
with:
Expand All @@ -50,7 +52,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: "3.10"
architecture: x64
- name: Build Wheels
uses: messense/maturin-action@v1
Expand Down Expand Up @@ -78,7 +80,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: "3.10"
architecture: ${{ matrix.target }}
- name: Install Rust Toolchain
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -110,7 +112,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: "3.10"
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -152,7 +154,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: "3.10"
architecture: x64
- name: Install dependencies
run: |
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
debug/
target/
*.png
Loading

0 comments on commit 162f2ec

Please sign in to comment.