Skip to main content

Stereographic Projection

What is stereographic projection

Stereographic projection maps each point on a sphere onto a plane, which is useful in making a map of the earth’s surface. We can project points \(P\) on the surface of sphere from the sphere's north pole \(N\) to point \(P'\) in a plane tangent to the south pole \(S\), as is shown in the following picture.
(https://mathworld.wolfram.com/StereographicProjection.html)
We can use Cartesian coordinates (x, y, z) on the sphere and (X, Y) on the plane. For the sphere \(\{(x,y,z) \in R^3 | x^2+y^2+z^2=a^2\}\), we can set the point \((0,0,a)\) as the north pole, then project the points on the sphere onto the plane \(z=-a\).
The projection and its inverse are given by the following formulae: \[\begin{aligned} (X, Y)&=\left(\frac{2ax}{a-z},\frac{2ay}{a-z}\right),\\ (x, y, z)&=\left(\frac{4a^2X}{X^2+Y^2+4a^2},\frac{4a^2Y}{X^2+Y^2+4a^2} , \frac{a( X^2+Y^2-4a^2)}{X^2+Y^2+4a^2} \right). \end{aligned}\]

A design of stereographic projection

Let’s consider the unit sphere \(\{(x,y,z) \in R^3 | x^2+y^2+z^2=1\}\), we can set the point \((0,0,1)\) as the north pole, then project the points on the sphere onto the plane \(z=-1\). The projection and its inverse are given by the following formulae: \[\begin{aligned} (X, Y)&=\left(\frac{2x}{1-z},\frac{2y}{1-z}\right),\\ (x, y, z)&=\left(\frac{4X}{X^2+Y^2+4},\frac{4Y}{X^2+Y^2+4} , \frac{X^2+Y^2-4)}{X^2+Y^2+4} \right). \end{aligned}\] Let’s consider a group of circles on the \(X-Y\) plane. The centers of the circles are denoted by \[ (b cos \theta, b sin \theta),\] \[\theta = i*\pi/6, \quad i=0,1,2,3,…,11, \quad b =0, 0.6, 1.2, 1.8, 2.4, 3, 3.6.\] The radii of the circles are set to 0.1.
Basically there are no big challenges in implementing this design, as we can refer to the example OpenSCAD programs for this project. We just need to use the representation of polar coordinates to make the design simple. And the radii of the circles should be small, so that two adjacent circles near the south pole will not intersect with each other.

Why to use this design

This design of the stereographic projection was chosen for the following reasons:
  1. The design shows that the stereographic projection is conformal. In geometry, the stereographic projection is defined on the entire sphere, except at one point: the projection point. Where it is defined, the mapping is smooth and bijective. The stereographic projection has one import feature that it is conformal, i.e. it preserves angles at which curves meet. By using our design of stereographic projection, we can verify that a longitude is projected as a straight line, and a latitude is projected as a circle on the plane. Thus stereographic projection creates an accurate representation in specific circumstances that allow for simple observation and study. A map with stereographic projection works best when looking at the planet from a polar perspective. Maps of the Arctic and Antarctic are particularly excellent when using this approach.
  2. The design shows that the stereographic projection is neither isometric nor area-preserving. The stereographic projection preserves neither distances nor the areas of figures. By using our design of stereographic projection, we can find that the areas of holes on different latitudes are different on the sphere, while the areas of holes projected on the plane are the same. What’s more, the distances between adjacent holes on the sphere vary along a longitude, while the corresponding distances of adjacent holes along the longitude projected on the plane are the same. In the above design, we investigate the properties of stereographic projection. This helps us to better understand the concept of stereographic projection.

Comments

Popular posts from this blog

Do Over: Integration Over a Region in a Plane

Throughout the semester we have covered a variety of topics and how their mathematical orientation applies to real world scenarios. One topic we discussed, and I would like to revisit, is integration over a region in a plane which involves calculating a double integral. Integrating functions of two variables allows us to calculate the volume under the function in a 3D space. You can see a more in depth description and my previous example in my blog post, https://ukyma391.blogspot.com/2021/09/integration-for-over-regions-in-plane_27.html . I want to revisit this topic because in my previous attempt my volume calculations were incorrect, and my print lacked structural stability. I believed this print and calculation was the topic I could most improve on and wanted to give it another chance. What needed Improvement? The function used previously was f(x) = cos(xy) bounded on [-3,3] x [-1,3]. After solving for the estimated and actual volume, it was difficult to represent in a print...

Minimal Surfaces

Minimum surfaces can be described in many equivalent ways. Today, we are going to focus on minimum surfaces by defining it using curvature. A surface is a minimum surface if and only if the mean curvature at every point is zero. This means that every point on the surface is a saddle point with equal and opposite curvature allowing the smallest surface area possible to form. Curvature helps define a minimal surface by looking at the normal vector. For a surface in R 3 , there is a tangent plane at each point. At each point in the surface, there is a normal vector perpendicular to the tangent plane. Then, we can intersect any plane that contains the normal vector with the surface to get a curve. Therefore, the mean curvature of a surface is defined by the following equation. Where theta is an angle from a starting plane that contains the normal vector. For this week’s project, we will be demonstrating minimum surfaces with a frame and soap bubbles! How It Works Minimum surfac...

Do Over: Ruled Surfaces

Why to choose this project to repeat For the do over project, I would like to choose the ruled surfaces. I don't think my last project was creative, and the 3D printed effect was not very satisfactory. In the previous attempts, all the lines are connected between a straight line and a circle. This connection structure is relatively uncomplicated. The printed model has too many lines, resulting in too dense line arrangement. The gaps between lines are too small, and the final effect is that all the lines are connected into a curved surface, which is far from the effect I expected. What to be improved In this do over project, I would like to improve in two aspects. Firstly, a different ruled surface is chosen. In the previous model, one curve is a unit circle on the \(x-y\) plane, and the ruled surface is a right circular conoid. In this do over project, it is replaced by two border lines. Each borderline is in the shape of an isosceles right triangl...