From 26c58ad111166b1a03c9f4e20ef8ec42df237afb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BAlio=20Hoffimann?= Date: Wed, 10 Jul 2024 07:37:13 -0300 Subject: [PATCH] Bump version --- Project.toml | 4 ++-- docs/src/resources/education.md | 6 ++++++ docs/src/transforms.md | 4 ++-- docs/src/variography/theoretical.md | 3 ++- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Project.toml b/Project.toml index 72beec57..37876088 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "GeoStats" uuid = "dcc97b0b-8ce5-5539-9008-bb190f959ef6" author = "Júlio Hoffimann " -version = "0.61.0" +version = "0.61.1" [deps] CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597" @@ -42,7 +42,7 @@ GeoStatsModels = "0.4" GeoStatsProcesses = "0.6" GeoStatsTransforms = "0.7" GeoStatsValidation = "0.3" -GeoTables = "1.21" +GeoTables = "1.22" LossFunctions = "0.11" Meshes = "0.46" Reexport = "1.0" diff --git a/docs/src/resources/education.md b/docs/src/resources/education.md index 67c59af4..07030f26 100644 --- a/docs/src/resources/education.md +++ b/docs/src/resources/education.md @@ -41,6 +41,12 @@ We recommend the following educational resources. ### Workshop material +- [UFMG 2024](https://github.com/Arpeggeo/UFMG2024) + [Portuguese] - Geociência de Dados na Mineração, UFMG 2024 + +- [JuliaEO 2024](https://github.com/Arpeggeo/JuliaEO2024) + [English] - Global Workshop on Earth Observation, AIRCentre 2024 + - [UFMG 2023](https://github.com/Arpeggeo/UFMG2023) [Portuguese] - Geociência de Dados na Mineração, UFMG 2023 diff --git a/docs/src/transforms.md b/docs/src/transforms.md index 212b89ca..0134d99e 100644 --- a/docs/src/transforms.md +++ b/docs/src/transforms.md @@ -147,8 +147,8 @@ UniqueCoords ```@example transforms # point set with repeated points -X = rand(2, 50) -Ω = georef((Z=rand(100),), [X X]) +p = rand(Point{2}, 50) +Ω = georef((Z=rand(100),), [p; p]) ``` ```@example transforms diff --git a/docs/src/variography/theoretical.md b/docs/src/variography/theoretical.md index 9ae7857c..1a17a649 100644 --- a/docs/src/variography/theoretical.md +++ b/docs/src/variography/theoretical.md @@ -210,7 +210,8 @@ To illustrate the concept, consider the following 2D data set: using Random # hide Random.seed!(2000) # hide -geotable = georef((Z=rand(50),), 100rand(2, 50)) +points = rand(Point{2}, 50) |> Scale(100) +geotable = georef((Z=rand(50),), points) viz(geotable.geometry, color = geotable.Z) ```