ในส่วนนี้จะเป็นการนำค่า centroid ของจุด Sun spot ที่ได้หามาจากหัวข้อก่อนหน้านี้มาใช้ในการคำนวน

Untitled

โดยได้นำสมการด้านล่างมาใช้ทดลองใช้ใน Python

Untitled

<aside> <img src="/icons/info-alternate_red.svg" alt="/icons/info-alternate_red.svg" width="40px" /> Xc → X centroid Yc → Y centroid refCoordinateX → Reference pixel coordinate in X-axic refCoordinateY → Reference pixel coordinate in Y-axic Px → Pixel pitch in X axic Py → Pixel pitch in Y axic

</aside>

x = (Xc-refCoordinateX)*Px
y = (Yc-refCoordinateY)*Py

Untitled

<aside> <img src="/icons/info-alternate_red.svg" alt="/icons/info-alternate_red.svg" width="40px" /> h → Focal Length

</aside>

alpha = math.atan(x/h)
beta = math.atan(y/h)
def findAngle(self,Xc,Yc,refCoordinateX,refCoordinateY,Px,Py,h):
        x = (Xc-refCoordinateX)*Px
        y = (Yc-refCoordinateY)*Py
        alpha = math.atan(x/h)
        beta = math.atan(y/h)
        return alpha ,beta

Untitled