Skip to content

Commit

Permalink
whoops my bad
Browse files Browse the repository at this point in the history
  • Loading branch information
asinghvi17 committed Jan 31, 2020
1 parent 3c4555c commit 0a94bf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/projections.jl
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function Proj4.transform!(src::Projection, dest::Projection, x::Vector{Float64},
position
end

Proj4.transform(src::Projection, dest::Projection, x::Point2f0) = Proj4.transform(src, dest, [x[1], x[2]])
Proj4.transform(src::Projection, dest::Projection, x::Point2f0) = Point2f0(Proj4.transform(src, dest, [x[1], x[2]]))

# Proj4.transform!(src::Projection, dest::Projection, points::T) where T <: StructVector{Point2f0} = Proj4.transform!(src, dest, points.data)

Expand Down

3 comments on commit 0a94bf1

@asinghvi17
Copy link
Member Author

Choose a reason for hiding this comment

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

@asinghvi17
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
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/8730

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 Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.1 -m "<description of version>" 0a94bf10b2497d4dcdc3981f2e3df5a4d0cd252c
git push origin v0.1.1

Please sign in to comment.