Design build prototype weather information processing system

Assignment Help C/C++ Programming
Reference no: EM132211693

Assignment - Aim

The objectives of this assignment includes:
• Learning about procedural programming, control structures, arrays, dynamic memory allocation and handling input/output
• Apply the concepts learnt by developing a Weather Information Processing System

Background

Your software company, Virtual Solutions, has just won a $1m contract to design a build a prototype Weather Information Processing System (WIPS).

For this assignment, you take on the role of a software architect. You are supplied with sample input weather data (kindly provided by the meteorological station), and you need to develop a program that does the following:

1) read in and process a configuration file
2) display city map
3) display cloud coverage map (cloudiness index)
4) display cloud coverage map (LMH symbols)
5) display atmospheric pressure map (pressure index)
6) display atmospheric pressure map (LMH symbols)
7) show weather forecast summary report

The program should be compiled as 'csci251_a1.exe' and run in Ubuntu 14.04 (Linux OS). The next section describes the requirements for the program.

Task Requirements

A) Upon startup, the program should prompt user to enter a 'configuration' filename. The program then proceeds to read the contents (of the entered filename) to further initialize its own program parameters / data structures. Please refer to Appendix A, which provides details on the configuration file and its usage.

B) The meteorological station has adopted a map-grid coordinate system upon which it overlays all other weather data. With regards to display city map option, please refer to Appendix B, which elaborates on this coordinate system, the unit representation, the relative positioning of different cities and its display requirements.

C) For the display requirements of cloud coverage (cloudiness index), AND cloud coverage (LMH symbols) (i.e. options 3) & 4)), please refer to Appendix C, which will discuss about the interpretation of cloud cover input data, its subsequent processing algorithm and output format requirements.
D) For the display requirements of atmospheric pressure (pressure index) AND atmospheric pressure (LMH symbols) (i.e. options 5) & 6)), please refer to Appendix D, which will discuss about the interpretation of pressure input data, its subsequent processing algorithm and output format requirements.

E) For the display requirements of weather forecast summary report, please refer to Appendix E, which will provides details about the kind of summarized weather data to be displayed, processing algorithm to compute the probability of rain and its graphical display format.

F) Refer to Appendix F, for a description of the program's main menu requirements

G) Once the program is completed and tested to be working successfully, you are encouraged to add on "new features" to the program that you feel are relevant to the problem. Additional marks may be awarded subject to the relevancy and correctness of the new functionalities. ( Note : the additional features will only be considered IF the program has correctly fulfilled all the basic requirements elaborated in the earlier sections! )

H) You are not allowed to declare your own C++ classes for this program, as this is a purely procedural (not Object Oriented) programming assignment!

I) You are to use only C++ language to develop your program. There is no restriction on the IDE as long as your source files can be compiled by g++ compiler (that comes installed in Tutor's Ubuntu Linux) and executed in the Ubuntu terminal shell environment.

Attachment:- Assignmt.rar

Reference no: EM132211693

Questions Cloud

Write a program to simulate deterministic finite automaton : Write a program to simulate any deterministic finite automaton. The set of states includes q0, q1, q2, ..., and the set of final states are in the input also.
What is the cost of the marginal bad debts : Parker Tool is considering lengthening its credit period from 30 to 60 days. What is the cost of the marginal bad debts
Write a program segment that computes given data : Write a program segment that computes 1 + 2 + 3 + ... + ( n - 1) + n , where n is a data value. Follow the loop body with an if statement that compares.
What is the fitted model : The file m-3m4608.txt contains two columns. Use the PACF of the squared returns to identify an ARCH model. What is the fitted model
Design build prototype weather information processing system : CSCI251 Advanced Programming - Apply the concepts learnt by developing a Weather Information Processing System - Learning about procedural programming
Calculate the subsidiary net cash payment : Calculate the subsidiary's net cash payment or receipt with the intermediary. At the second pricing, LIBOR equals 5.66 percent
Write a program to simulate a bookstore : Write a program to simulate a bookstore. The bookstore has two types of customers: those who are members of the bookstore and those who buy books from the books
Write a program that will picks out the individual words : Write a program that will take a sentence (a single String), picks out the individual words (substrings), and puts each of them into a String array.
How the grant program matches the funders interests : The appeal section should provide information about how the grant program matches the funder's interests or aligns with their funding priorities.

Reviews

len2211693

1/9/2019 8:48:03 PM

Grading Student’s deliverable will be graded according to the following criteria: (i) Program fulfills all the basic requirements stipulated by the assignment (ii) Successful demonstration of a working program, clarity of explanation / presentation and satisfactory answers provided during Q & A session. (iii) Additional effort (e.g. enhancing the program with relevant features over and above task requirements, impressive, ‘killer’ presentation) (iv) After the submission of deliverables, students will be required undergo a software testing process (to determine the correctness and fulfillment of software requirements.) Further instructions will be given by the Tutor during the subsequent respective labs. Please pay attention as failure to adhere to instructions will result in deduction of marks.

len2211693

1/9/2019 8:47:56 PM

c) A program demo/software testing during lab session. You must be prepared to perform certain tasks / answer any questions posed by the tutor. CSCI251 Advanced Programming 2) IMPT: Please follow closely, to the submission instructions in Appendix G, which contains details about what to submit, file naming conventions, when to submit, where to submit, etc. 3) The software demo / testing will be held during lab session where you are supposed to submit your assignment. Some time will be allocated for you to present / demonstrate your program's capabilities during the session.

len2211693

1/9/2019 8:47:51 PM

1) The deliverables include the following: a) The actual working C++ program (soft copy), with comments on each file, function or block of code to help the tutor understand its purpose. b) A softcopy word document that elaborates on: • (Interpreted) requirements of the program • Diagram / Illustrations of program design • Summary of implementation of each module in your program • Reflections on program development (e.g. assumptions made, difficulties faced, what could have been done better, possible enhancements in future, what have you learnt, etc)

Write a Review

C/C++ Programming Questions & Answers

  Function that returns the maximum value of the array

Arrays are collections of elements of the same type. The elements of the array can be accessed using their position (index) in the array.

  What system or application you wish to develop motivations

A project proposal (1-2 pages) outlines what system or application you wish to develop, the motivations or aims, user requirements or required functions, system structures and a rough plan. What you need to submit is a standalone Word or PDF file...

  Allow single play a simple two dice game of chance against

Write a program that allows a single Player (the user) to play a simple two dice game of chance against

  The authors of the book do a very thorough job explaining

the authors of the book do a very thorough job explaining simpletons operation and encourage you to take a look at what

  Write a function called power that takes a double value for

Raising a number n to a power p is the same as multiplying n by itself p times. Write a function called power () that takes a double value for n and an int value for p and returns the result as double value. Use a default argument of 2for p, so that ..

  Wap that gets two inputs an integer and a character

Write a C++ program that gets two inputs an integer and a character. Use repetition control structures better known as "loops" to output an outline.

  What are the advantages of using variables in a data type

A data type describes the format and size of a data item. However, it does not define the type of operation a data item needs to perform. Do you agree with this statement? Why or why not? What are the advantages of using variables in a data type?

  Develop a simple poker game complete with basic ai

In this assignment, you will develop a simple poker game, complete with basic AI, using the object oriented programming principles discussed in class.

  Write a program to calculate existing angles and do if and

write a program to calculate existing angles and do if and then from this and to place fixed angles at certain position

  Identification of properties of typical supermarket product

ITECH1400 - Assignment 1 – Supermarket Self-Service Checkout - Identification of properties of a typical supermarket Product

  Partial implementation of the overloaded assignment

You have a class called MyBag that contains this partial implementation of the overloaded assignment operator.  The first line is missing.

  Create an activity scheduler program

For this assignment you will create an Activity Scheduler program. The main method creates the scheduler and some activities to be scheduled. Then it invokes the scheduler methods in order to get the activities to run. The scheduler doesn't know a..

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd