AIRCentre / SARProcessing.jl

MIT License
29 stars 3 forks source link

Use Geodesy.jl for coordinate transforms #68

Open lupemba opened 1 year ago

lupemba commented 1 year ago

We can probably use this for geodetic and ecef coordinates

visr commented 1 year ago

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)
lupemba commented 1 year ago

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