Skip to content

Commit

Permalink
Merge pull request #62 from GeoscienceAustralia/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
a2ray committed Jan 11, 2024
2 parents 4eb922e + 113422c commit 2517259
Show file tree
Hide file tree
Showing 8 changed files with 4,741 additions and 31 deletions.
2 changes: 1 addition & 1 deletion Project.toml
@@ -1,7 +1,7 @@
name = "HiQGA"
uuid = "01574e87-63b6-4466-925a-334cf7e21b6b"
authors = ["richardt94 <29562583+richardt94@users.noreply.github.com>"]
version = "0.3.14"
version = "0.4.0"

[deps]
Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d"
Expand Down
2 changes: 1 addition & 1 deletion src/AEMnoNuisanceGradientInversionTools.jl
Expand Up @@ -203,7 +203,7 @@ function loopacrossAEMsoundings(soundings::Array{S, 1}, aem_in, σstart, σ0;
@assert nsequentialiters != -1
nparallelsoundings = nworkers()
nsoundings = length(soundings)
zall = zboundarytocenter(aem_in.z[aem_in.nfixed+1:end], fudgelast=true) # needed for sounding compression in write
zall = zboundarytocenter(aem_in.z[aem_in.nfixed+1:end]) # needed for sounding compression in write
for iter = 1:nsequentialiters
if iter<nsequentialiters
ss = (iter-1)*nparallelsoundings+1:iter*nparallelsoundings
Expand Down
2 changes: 1 addition & 1 deletion src/AEMwithNuisanceGradientInversionTools.jl
Expand Up @@ -211,7 +211,7 @@ function loopacrossAEMsoundings(soundings::Array{S, 1}, aem_in, σstart, σ0, nu
@assert nsequentialiters != -1
nparallelsoundings = nworkers()
nsoundings = length(soundings)
zall = zboundarytocenter(aem_in.z[aem_in.nfixed+1:end], fudgelast=true) # needed for sounding compression in write
zall = zboundarytocenter(aem_in.z[aem_in.nfixed+1:end]) # needed for sounding compression in write
for iter = 1:nsequentialiters
if iter<nsequentialiters
ss = (iter-1)*nparallelsoundings+1:iter*nparallelsoundings
Expand Down
2 changes: 2 additions & 0 deletions src/AbstractOperator.jl
Expand Up @@ -38,5 +38,7 @@ function setnuboundsandstartforgradinv end
function plotconvandlast end
# set the nuisance inversion full vector from the few being inverted
function setnuforinvtype end
# for the Line type from LineRegression which is useful
function getsmoothline end
export Operator, Operator1D, Operator2D, Sounding
end

2 comments on commit 2517259

@a2ray
Copy link
Collaborator Author

@a2ray a2ray commented on 2517259 Jan 11, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/98676

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.0 -m "<description of version>" 251725931dac63a885999d558791f8dc5470b721
git push origin v0.4.0

Please sign in to comment.