Understanding the Concept
* Earth's Shape: The Earth is an oblate spheroid, meaning it's slightly flattened at the poles and bulging at the equator.
* Latitude: Lines of latitude are circles that run parallel to the equator. The radius of a latitude circle decreases as you move away from the equator towards the poles.
Calculation
1. Earth's Equatorial Radius: The Earth's equatorial radius (a) is approximately 6,378.1 km.
2. Earth's Polar Radius: The Earth's polar radius (b) is approximately 6,356.8 km.
3. Latitude (φ): You've provided 70 degrees North.
4. Formula: The radius (r) of a latitude circle is calculated using the following formula:
```
r = b * sqrt( (a^2 * cos^2(φ) + b^2 * sin^2(φ)) / (a^2 * sin^2(φ) + b^2 * cos^2(φ)) )
```
Plugging in the values:
```
r = 6356.8 km * sqrt( (6378.1^2 * cos^2(70°) + 6356.8^2 * sin^2(70°)) / (6378.1^2 * sin^2(70°) + 6356.8^2 * cos^2(70°)) )
```
Solving:
* r ≈ 2244.4 km
Therefore, the radius at 70 degrees North latitude is approximately 2244.4 kilometers.