Rotating globe

Part of Maps

Rotating globe preview
ManimCE3DThreeDSceneanimation

A slowly turning wireframe sphere with a lat/lon graticule, six labelled cities as raised markers, and five great-circle arcs bulged off the surface so they read in 3D. Built on ThreeDScene with a real parametric sphere, so the depth sorting is genuine. The same scene provides the transparent poster frame used on the site hero.

manim/globe.py

"""A 3D globe: wireframe sphere, city markers and great-circle routes.

Render:
    manim -pql manim/globe.py Globe      # draft
    manim -pqh manim/globe.py Globe      # final

    # square transparent still, the one the site hero uses
    manim -s -qh -t --resolution 1600,1600 manim/globe.py GlobePoster
"""

import numpy as np
from manim import *

RADIUS = 2.3

OCEAN = "#0D2246"

The full Manim source and the rendered video come with a plan.