1) I cannot get the full circle with the spherical formula:
ParametricPlot3D[ CoordinateTransform["Spherical" -> "Cartesian", { 1, t, 0}], {t, 0, 2 Pi},AxesLabel->{x,y,z}]
produces the same half circle as:
ParametricPlot3D[ CoordinateTransform["Spherical" -> "Cartesian", { 1, t, 0}], {t, 0, Pi},AxesLabel->{x,y,z}]
2) Another problem is with the equator (why only half circle?) :
ParametricPlot3D[ CoordinateTransform["Spherical" -> "Cartesian", { 1, Pi/2, t}], {t, 0, 2 Pi}, AxesLabel->{x,y,z}]
But the following can draw the equator:
ParametricPlot3D[ CoordinateTransform["Spherical" -> "Cartesian", { 1, Pi/2, t}], {t, -Pi, Pi}, AxesLabel->{x,y,z}]