Spherical to cartesian coordinate transformation

How to convert spherical coordinates points to Cartesian coordinates points?

using Meshes, CoordRefSystems ,GLMakie, LinearAlgebra, Unitful

r =  Float32[1.6, 1.754088, 1.9230156, 2.1082115, 2.311243, 2.5338273, 2.7778475, 3.0453684, 3.3386526, 3.6601818, 4.012676, 4.3991165, 4.8227735, 5.287231, 5.7964177, 6.354642, 6.9666257, 7.637547, 8.373081]
θ =  Float32[0.0, 0.09817477, 0.19634955, 0.2945243, 0.3926991]
ϕ =  Float32[0.0, 0.3926991, 0.7853982, 1.1780972, 1.5707964, 1.9634954, 2.3561945, 2.7488935, 3.1415927, 3.5342917, 3.9269907, 4.3196898, 4.712389, 5.105088, 5.497787, 5.8904862, 6.2831855]

g = RectilinearGrid{𝔼,typeof(Spherical(0,0,0))}(r, θ, ϕ)

I was able to convert points from Spherical to Cartesian coordinates using CoordRefSystems.

vc = coords.(vertices(g))
cvc = convert.(Cartesian, vc)
points = [Point3f(Float32.(ustrip.((c.x, c.y, c.z)))...) for c in cvc]

2 Likes