#include #include using namespace std; int yearPrompt (); // Prompts and checks year input string monthPrompt (); // Prompts and checks month input int dayPrompt (string month, int year); // Prompts and checks day input int hourPrompt (); // Prompts and checks hour input int minutePrompt (); // Prompts and checks minute input double dateToHour (string month, int year, int day, int hour, int minute); // Converts full date to hour pair altAndAziPair (); // Creates pair of alitutude and azimuth bool isLeap (int year); // Bool check for leap year vector > viewFinder (pair centerPt); // function that returns the coordinates of the viewing window vector > constellationCoordinates (); // function that stores the coordinates of all the constellations void printConstellation (vector > constellationCoordinates, vector > window); // function to print the constellations string constellationNamer (int index); // funciton to name all the constellations void constellationOutputter (int index); // function to output the images of the constellations