Proj.jl icon indicating copy to clipboard operation
Proj.jl copied to clipboard

Julia wrapper for the PROJ cartographic projections library

Results 11 Proj.jl issues
Sort by recently updated
recently updated
newest added

Now to setup a pipeline, we need to handle the C API: ```julia julia> pipe = Proj.proj_create("+proj=pipeline +step +proj=unitconvert +xy_in=deg +z_in=m +xy_out=rad +z_out=m +step +inv +proj=longlat +a=6378136.3 +rf=298.257 +e=0.08181922146 +step...

When this package was still called Proj4.jl the geodesic functions were offered in a higher level interface: [proj_geodesic.jl](https://github.com/JuliaGeo/Proj4.jl/blob/9a63d757cf77a839bee336f398efd21928a4975f/src/proj_geodesic.jl). It might be nice to restore such an interface. The geodesic ccall...

enhancement

Hello, I'm using Proj in some code where I'm trying to avoid allocations and dynamic dispatches for performance. To assist with this, I'm using the [AllocCheck.jl](https://github.com/JuliaLang/AllocCheck.jl) packages, which finds allocations...

The definition of the function Proj.geod_inverse() in geod.jl is as follows. ``` function geod_inverse(g::geod_geodesic, lat1::Real, lon1::Real, lat2::Real, lon2::Real) s12 = Ref{Cdouble}(NaN) azi1 = Ref{Cdouble}(NaN) azi2 = Ref{Cdouble}(NaN) geod_inverse(Ref(g), lat1, lat2,...

I thought, that ProjString objects should work similar to plain strings with the proj information, but here it works with strings but fails with ProjString: ```julia julia> equi7_eu_projstring = "+proj=aeqd...

Edit: see post below about the only_best option that is new in PROJ 9.2. PROJ 9.2.1 is already picked up by this package through [PROJ_jll v900.200.100](https://github.com/JuliaBinaryWrappers/PROJ_jll.jl/releases/tag/PROJ-v900.200.100%2B0). - [x] update tests...

enhancement

Based on the discussion in https://github.com/JuliaGeo/Proj.jl/issues/75 and my troubles to get the CI working for `PROJ_NETWORK` in https://github.com/evetion/GeoArrays.jl/pull/126, we should try to document how downstream packages can make sure the...

I recently issued a [pull request](https://github.com/JuliaGeo/Geodesy.jl/pull/80) to add geoid function to Geodesy.jl because the geoid conversion in Proj.jl is very slow for large numbers of points [~>500] relative to reading...

enhancement
question