Skip to content

Commit

Permalink
More debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
natgeo-wong committed Aug 8, 2024
1 parent 3933da4 commit 1d341dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/georegions/query.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ function coordGeoRegion(
lon = zeros(npnt)
lat = zeros(npnt)
for ipnt = 1 : npnt
lon[ipnt] .= shape[ipnt][1]
lat[ipnt] .= shape[ipnt][2]
lon[ipnt] = shape[ipnt][1]
lat[ipnt] = shape[ipnt][2]
end
end

Expand Down

2 comments on commit 1d341dc

@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 GeoRegions from an external file

@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 updated: JuliaRegistries/General/112633

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.1 -m "<description of version>" 1d341dcf937a2eb4e80bc2d2d5e407cd06b7213b
git push origin v6.0.1

Please sign in to comment.