ssapy_toolkit.Orbital_Mechanics.launch_pads

ssapy_toolkit.Orbital_Mechanics.launch_pads = {'Baikonur Cosmodrome Site 1/5': {'latitude': 45.9203, 'longitude': 63.3422, 'typical_trajectory': {'azimuth_range': '50°-65°', 'description': 'Northeast for LEO'}}, 'Cape Canaveral SLC-40': {'latitude': 28.562, 'longitude': -80.5772, 'typical_trajectory': {'azimuth_range': '40°-90°', 'description': 'Northeast to East for LEO/GTO'}}, 'Guiana Space Centre (Kourou) ELA-3': {'latitude': 5.2378, 'longitude': -52.7753, 'typical_trajectory': {'azimuth_range': '0°-90°', 'description': 'North to East for GTO/LEO'}}, 'Jiuquan Launch Center LC-43/91': {'latitude': 40.9675, 'longitude': 100.2911, 'typical_trajectory': {'azimuth_range': '0°-45°', 'description': 'Northward for polar orbits'}}, 'Kennedy Space Center LC-39A': {'latitude': 28.6082, 'longitude': -80.6041, 'typical_trajectory': {'azimuth_range': '40°-55°', 'description': 'Northeast over Atlantic for LEO/GTO'}}, 'Kennedy Space Center LC-39B': {'latitude': 28.6272, 'longitude': -80.6209, 'typical_trajectory': {'azimuth_range': '40°-55°', 'description': 'Northeast over Atlantic for LEO/GTO'}}, 'Plesetsk Cosmodrome Site 43/4': {'latitude': 62.9278, 'longitude': 40.4572, 'typical_trajectory': {'azimuth_range': '0°-45°', 'description': 'Northward for polar orbits'}}, 'Rocket Lab Launch Complex 1 (New Zealand)': {'latitude': -39.262, 'longitude': 177.8648, 'typical_trajectory': {'azimuth_range': '135°-180°', 'description': 'Southeast for sun-synchronous'}}, 'Satish Dhawan Space Centre SLP': {'latitude': 13.7199, 'longitude': 80.2304, 'typical_trajectory': {'azimuth_range': '90°-105°', 'description': 'Eastward for GTO/polar'}}, 'SpaceX South Texas (Boca Chica)': {'latitude': 25.9972, 'longitude': -97.1561, 'typical_trajectory': {'azimuth_range': '90°-135°', 'description': 'Eastward for LEO/GTO'}}, 'Taiyuan Launch Center LC-9': {'latitude': 38.8493, 'longitude': 111.6081, 'typical_trajectory': {'azimuth_range': '0°-45°', 'description': 'Northward for polar orbits'}}, 'Tanegashima Space Center LP-1': {'latitude': 30.4, 'longitude': 130.975, 'typical_trajectory': {'azimuth_range': '90°-135°', 'description': 'Eastward for GTO/LEO'}}, 'Vandenberg SLC-4E': {'latitude': 34.632, 'longitude': -120.6107, 'typical_trajectory': {'azimuth_range': '180°-210°', 'description': 'Southward for polar orbits'}}, 'Vostochny Cosmodrome Site 1S': {'latitude': 51.8846, 'longitude': 128.3347, 'typical_trajectory': {'azimuth_range': '50°-65°', 'description': 'Northeast for LEO'}}, 'Wallops Flight Facility Pad 0A': {'latitude': 37.8338, 'longitude': -75.4881, 'typical_trajectory': {'azimuth_range': '90°-135°', 'description': 'Eastward for LEO/suborbital'}}, 'Xichang Launch Center LC-2': {'latitude': 28.246, 'longitude': 102.0267, 'typical_trajectory': {'azimuth_range': '90°-120°', 'description': 'Eastward for GTO/LEO'}}}

dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object’s

(key, value) pairs

dict(iterable) -> new dictionary initialized as if via:

d = {} for k, v in iterable:

d[k] = v

dict(**kwargs) -> new dictionary initialized with the name=value pairs

in the keyword argument list. For example: dict(one=1, two=2)