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]
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]