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

Use Geodesy.jl for coordinate transforms

Open lupemba opened this issue 3 years ago • 2 comments

We can probably use this for geodetic and ecef coordinates

  • Also potential to find library for conversions
  • Implement GeoInterface

lupemba avatar Jan 12 '23 15:01 lupemba

For the conversion library have a look at https://github.com/JuliaGeo/Geodesy.jl/.

julia> using SARProcessing

julia> SARProcessing.geodetic2ecef([0,0,0])
3-element Vector{Float64}:
 6.378137e6
 0.0
 0.0
julia> using Geodesy

julia> ECEF(LLA(0.0,0.0,0.0), wgs84)
ECEF(6.378137e6, 0.0, 0.0)

visr avatar Jan 13 '23 11:01 visr

@visr Thank you for the tip. I have change the title of the issue

lupemba avatar Jan 18 '23 19:01 lupemba