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...

Knot 9-31

Knot 9-31 A knot is mathematics is defined as a closed, non-self-intersecting curve that is placed in three dimensions and cannot be the "unknot". The main difference between a knot in the real world and a known in mathematics is that a knot in mathematics does not contain any extra strands. The example following will help visualize this. Today, I have specifically chosen knot 9-31 from the Knot Atlas. This knot is very unique and contains some very interesting properties that we are going to look into. The Crossing Number For my knot today, I chose knot 9-31 from the Knot Atlas. This knot contains 9 crossings! The Unknotting Number The unknotting number is exactly what is sounds like. This is the minimum number of times the knot must be passed through itself to untie it. Luckily, the Knot Atlas is super useful and provides the unknotting number for us, but I still...

Do Over: Integration for Over Regions in the Plane

Introduction Earlier in the semester, we visited the topic of integration for over region regions in the plane. This was our first experience with taking integration in the third dimension. To do this, we had to use double integrals to calculate the volume of a region between two surfaces. This topic seems relatively straightforward and anyone who has taken a higher calculus class knows of double integrals. Today, we are going to revisit this topic for a couple of reasons. Why Double Integrals Again? As mentioned before, I am revisiting this topic for a couple of reasons. One of the main reasons is due to how the 3D print turned out. Due to the function, I chose, the final rectangular prism was stand alone. When printing, this resulted in a sloppy prism that lacked structural integrity. The image below is a reference to my original design that includes the prism that had the issue. The main cause of ...