Skip to content

Commit c267508

Browse files
committed
Bump version
1 parent 273c3f4 commit c267508

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Project.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
name = "GeoStatsModels"
22
uuid = "ad987403-13c5-47b5-afee-0a48f6ac4f12"
33
authors = ["Júlio Hoffimann <julio.hoffimann@gmail.com> and contributors"]
4-
version = "0.2.12"
4+
version = "0.3.0"
55

66
[deps]
77
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
88
Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7"
99
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
10+
GeoStatsFunctions = "6771c435-bc22-4842-b0c3-41852a255103"
1011
GeoTables = "e502b557-6362-48c1-8219-d30d308dcdb0"
1112
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1213
Meshes = "eacbb407-ea5a-433e-ab97-5258b1ca43fa"
1314
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1415
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
1516
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
16-
Variography = "04a0146e-e6df-5636-8d7f-62fa9eb0b20c"
1717

1818
[compat]
1919
Combinatorics = "1.0"
2020
Distances = "0.10"
2121
Distributions = "0.25"
22+
GeoStatsFunctions = "0.1"
2223
GeoTables = "1.7"
2324
LinearAlgebra = "1.9"
2425
Meshes = "0.40"
2526
Statistics = "1.9"
2627
Tables = "1.10"
2728
Unitful = "1.11"
28-
Variography = "0.22"
2929
julia = "1.9"

src/GeoStatsModels.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module GeoStatsModels
66

77
using Meshes
88
using GeoTables
9-
using Variography
9+
using GeoStatsFunctions
1010

1111
using LinearAlgebra
1212
using Distributions

src/krig.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function fit(model::KrigingModel, data)
6262
FLHS = factorize(model, LHS)
6363

6464
# variance type
65-
VARTYPE = Variography.result_type(γ, first(D), first(D))
65+
VARTYPE = GeoStatsFunctions.result_type(γ, first(D), first(D))
6666

6767
# record Kriging state
6868
state = KrigingState(data, FLHS, RHS, VARTYPE)
@@ -83,12 +83,12 @@ function lhs(model::KrigingModel, domain)
8383

8484
# pre-allocate memory for LHS
8585
u = first(domain)
86-
= Variography.result_type(γ, u, u)
86+
= GeoStatsFunctions.result_type(γ, u, u)
8787
m = nobs + ncon
8888
G = Matrix{V²}(undef, m, m)
8989

9090
# set variogram/covariance block
91-
Variography.pairwise!(G, γ, domain)
91+
GeoStatsFunctions.pairwise!(G, γ, domain)
9292
if isstationary(γ)
9393
σ² = sill(γ)
9494
for j in 1:nobs, i in 1:nobs

test/Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[deps]
22
CoDa = "5900dafe-f573-5c72-b367-76665857777b"
3+
GeoStatsFunctions = "6771c435-bc22-4842-b0c3-41852a255103"
34
GeoTables = "e502b557-6362-48c1-8219-d30d308dcdb0"
45
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
56
Meshes = "eacbb407-ea5a-433e-ab97-5258b1ca43fa"
67
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
78
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
89
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
910
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
10-
Variography = "04a0146e-e6df-5636-8d7f-62fa9eb0b20c"
1111

1212
[compat]
1313
CoDa = "1.0"

test/runtests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using GeoStatsModels
22
using Meshes
33
using GeoTables
4-
using Variography
4+
using GeoStatsFunctions
55
using CoDa
66
using Unitful
77
using LinearAlgebra

0 commit comments

Comments
 (0)