Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
P
Project 3 Star Gazing
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Eric Walsh
Project 3 Star Gazing
Commits
8ef03f0d
Commit
8ef03f0d
authored
Mar 13, 2019
by
Walterio Montanez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
autosave
parent
a796605f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
5 deletions
+44
-5
Input stuff/Functions.cpp
Input stuff/Functions.cpp
+44
-5
No files found.
Input stuff/Functions.cpp
View file @
8ef03f0d
...
...
@@ -110,16 +110,55 @@ int minutePrompt (int minute) {
}
while
(
true
);
}
string
directionPrompt
(
string
direction
)
{
// prompts user for input and asked for direction (East, West, North, South, Northeast, Northwest, Southeast, Southwest)
pair
<
double
,
double
>
altAndAziPair
(
double
altitude
,
string
Direction
)
{
double
Azi
;
pair
<
double
,
double
>
aziPair
;
}
double
anglePrompt
(
double
angle
)
{
//prompts user for the angle they are looking at (0.0 - 90.0 degrees)
do
{
cout
<<
"Enter the altitude at which you are looking (0-90): "
;
if
(
!
(
cin
>>
altitude
))
{
// validates that numbers were entered and checks input
cerr
<<
"Error! Please enter a valid integer."
<<
endl
;
cin
.
clear
();
cin
.
ignore
(
1000
,
'\n'
);
continue
;
}
else
if
(
altitude
<
0
||
altitude
>=
90
)
{
cout
<<
"Please put in a valid value."
<<
endl
;
}
}
while
(
false
)
do
{
cout
<<
"Enter a cardinal direction (North, South, East, West, Northeast, Southeast, Southwest, or Northwest): "
;
cin
>>
Direction
;
if
(
Direction
!=
"North"
||
Direction
!=
"South"
||
Direction
!=
"East"
||
Direction
!=
"West"
||
Direction
!=
"Northeast"
||
Direction
!=
"Southeast"
||
Direction
!=
"Southwest"
||
Direction
!=
"Northwest"
)
{
cout
<<
"Error! Please input a valid direction"
;
}
}
while
(
Direction
!=
"North"
||
Direction
!=
"South"
||
Direction
!=
"East"
||
Direction
!=
"West"
||
Direction
!=
"Northeast"
||
Direction
!=
"Southeast"
||
Direction
!=
"Southwest"
||
Direction
!=
"Northwest"
)
if
(
Direction
==
"North"
)
{
Azi
=
0
;
}
else
if
(
Direction
==
"South"
)
{
Azi
=
180
;
}
else
if
(
Direction
==
"East"
)
{
Azi
=
90
;
}
else
if
(
Direction
==
"West"
)
{
Azi
=
270
;
}
else
if
(
Direction
==
"Northeast"
)
{
Azi
=
45
;
}
else
if
(
Direction
==
"Southeast"
)
{
Azi
=
135
;
}
else
if
(
Direction
==
"Southwest"
)
{
Azi
=
225
;
}
else
if
(
Direction
==
"Northwest"
)
{
Azi
=
315
;
}
aziPair
=
make_pair
(
altitude
,
Azi
);
return
aziPair
;
}
double
dateToHour
(
string
month
,
int
day
,
int
hour
,
int
minute
)
{
// Converts the date into hours
//variables
double
totHours
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment