Please use SAS to solve the following question, thank you.
I have a text file geocaching.txt:
Higgensville Hike 40 30.2937446.539
Really Roaring 40 27.4047442.147
Cushetunk Climb 40 37.0247448.014
Uplands Trek 40 30.9907452.794
The data values are arranged as follows:
Please create a temporary SAS data set called Cache using this data file. Use formatted input to read the data values.
Produce a simple report using PROC REPORT and create a PDF document of that report.
In your report, add a title called "Simple Report of Geocaching".
When printing the report, replace each variable name with its description. For example, the 'Name' variable should be displayed as 'Cache name' and so on.
Variable Description Starting Column Ending Column Data Type
Name Cache name 1 20 Char
LongDeg Longitude degrees 21 22 Num
LongMin Longitude minutes 23 28 Num
LatDeg Latitude degrees 29 30 Num
LatMin Latitude minutes 31 36 Num