Skip to content

Commit

Permalink
Some debugging, bump to v6.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
natgeo-wong committed Aug 23, 2024
1 parent 1d341dc commit 261ff64
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "GeoRegions"
uuid = "b001f823-fa75-4bff-bf55-6610c8f3688a"
authors = ["natgeo-wong <[email protected]>"]
version = "6.0.1"
version = "6.0.2"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down
2 changes: 1 addition & 1 deletion src/georegions/read.jl
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function TiltRegion(
name = replace(name," "=>"")
name = replace(name,"-"=>" ")

N,S,E,W = getTiltShape(X,Y,ΔX,ΔY,θ)
N,S,E,W = getTiltBounds(X,Y,ΔX,ΔY,θ)
is180,is360 = checkbounds(N,S,E,W)

return TiltRegion{ST,FT}(
Expand Down
6 changes: 3 additions & 3 deletions src/landsea/landsea.jl
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ function getLandSea(
tW = geo.W - (ceil(σlon*20*mulf)+1); if tW < -180; tW = -180 end
if (tE - tW) > 360; tW = 0; tE = 360 end
geo = RectRegion(
"TMP", "GLB", "Temporary GeoRegion",
[tN,tS,tE,tW], savegeo = false
"", "", "",
[tN,tS,tE,tW], save = false
)
end

Expand Down Expand Up @@ -178,7 +178,7 @@ function getLandSea(
if (tE - tW) > 360; tW = 0; tE = 360 end
geo = RectRegion(
"TMP", "GLB", "Temporary GeoRegion",
[tN,tS,tE,tW], savegeo = false
[tN,tS,tE,tW], save = false
)
end

Expand Down

2 comments on commit 261ff64

@natgeo-wong
Copy link
Member Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release Notes:

  • Debugging the reading of a TiltRegion
  • Debugging the smoothing of landsea

@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/113703

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 v6.0.2 -m "<description of version>" 261ff6461df63e102588835f88159ac74435afa4
git push origin v6.0.2

Please sign in to comment.