Best for
Deconstruction tasks in Years 9–10 Digital Technologies (Computational Thinking). It bridges traditional mātauranga navigation with digital data representation and data structure planning.
Digital Technologies • Computational Thinking • Years 9–10 • Design & Develop
An interactive worksheet guiding ākonga to re-create the traditional star compass as a digital planning brief. Students decompose the 32 whare, map key stars (whetū), outline their data structures, and draft their code logic. Ready to print on A4.
Traditional Polynesian navigation (whakatere waka) relies on the kāpehu whetū (star compass) held entirely in memory. To represent this knowledge as an interactive digital application, we must first decompose the system into inputs, data structures, and algorithms. Write directly on this sheet.
The horizon is divided into 32 whare (houses) where stars rise and set. Each quadrant has 8 whare.
1. Using your source diagram (the Te Ara compass diagram or the Science Learning Hub kāpehu whetū resource), record the names of the four cardinal whare:
East — where the sun rises out of the ocean: West — where the sun returns to the ocean:
North: South:
2. Calculate the angular size of each of the 32 whare (360 degrees divided by 32):
Each whare covers: degrees.
How will you represent the 32 whare names in your code? E.g., an array or a list.
Write an example array initialization in your chosen language containing the first four whare starting at Whitinga (east) and moving toward Raki: Whitinga, Rā, Kāinga, Ngoi. Check each spelling against your source diagram before you write it — your code labels must match the mātauranga exactly.
const whare = [
];
Using your source diagram, map these key stars to the whare where they rise in the east or set in the west:
Tautoru (Orion's Belt) rises due East: (Bearing: 90°)
Matariki (Pleiades) rises in the North-East: (Bearing: ~60°)
Takurua (Sirius) rises in the South-East: (Bearing: ~105°)
Atutahi (Canopus) is circumpolar in the far South: (Bearing: ~180°)
Sketch how your interactive star compass screen will look. Label where the compass wheel, input bearing text box, and output whare text display will sit.
Before coding, define your tests. Enter the expected output whare for each input bearing.
| Input Bearing | Expected Quadrant | Expected Whare Name |
|---|---|---|
| 90° | East | Whitinga |
| 0° / 360° | ||
| 61° | ||
| 180° |
Describe how you will implement a "Night Mode" that shows which stars are visible on a given night.
What inputs will the algorithm need (e.g. current month/season)? How will it select which stars are drawn?
Ngā kōrero kaiako · Teacher notes — everything below supports the handout; it is not part of the printed worksheet.
This worksheet is ready to print. Through Te Wānanga, your kura can adapt it to focus on local iwi star narratives, map custom celestial paths, or localize it for specific programming tools.
The kāpehu whetū is a sophisticated mental model representing generations of astronomical and maritime knowledge. When students build it digitally, they discover that Māori knowledge is highly structured, mathematical, and algorithmic. Computational thinking is not just about writing code; it is about honouring the logic and precision of a system that guided navigators across Te Moana-nui-a-Kiwa.