07 Aug Project report
The report should include the project's background and motivation and a brief overview of related and similar work, with at least 3 references. This formal report will be a culmination of previous reports submitted and should include a detailed description of the implemented system, including what it does, how it works, and how it is used. The report should address all the feedback provided in previous submissions. The report should also detail the group’s accomplishments and reflect on their experience.
Final Report Outline:
- Introduction – Brief summary of your project, context and motivation
- Process Overview – brief description of your approach, tools and artifacts used, including summary of individual contributions
- Requirements Specification – summary of functional and non-functional requirements
- Project Design – architecture and implementation of your project and how it works
- Project Evaluation: Testing strategy, Test Plan and Results, Validation
- Design and Alternate Designs – changes made to the source code due to testing results
- Development History: Project timeline
- Discussion: Lessons learned, design strengths, limitations and suggestions for future improvement
- Conclusion
- Acknowledgement (optional)
- References
- Appendix
- System specification: technical specifications, minimum hardware requirements of the project implemented
- User Guide
- Other appendices (optional)
Guidelines for the format and submission of the paper are as follows:
- The paper should be 15-20 pages in length. (This minimum and maximum length should not include the title page, appendix, separate figures and tables, or the list of references);
- The paper should include a cover page containing the project's title and the names of project team members. All team members should submit the same document to the assignment submission area.
- Careful attention should be given to source citations, and a proper listing of references.
- The paper should be well formatted and well organized with proper formatting of all graphs, images, tables etc.
weather_app/pom.xml
4.0.0 org.springframework.boot spring-boot-starter-parent 3.3.1 com.service weather 0.0.1-SNAPSHOT weather Weather website 17 org.springframework.boot spring-boot-starter-web com.h2database h2 runtime org.springframework.boot spring-boot-starter-test test jakarta.persistence jakarta.persistence-api 3.1.0 org.mockito mockito-core test org.mockito mockito-junit-jupiter test org.springframework.boot spring-boot-starter-data-jpa org.springframework.boot spring-boot-maven-plugin
weather_app/src/main/java/com/service/weather/controller/WeatherController.java
weather_app/src/main/java/com/service/weather/controller/WeatherController.java
package com . service . weather . controller ;
import com . service . weather . model . WeatherRecord ;
import com . service . weather . service . WeatherService ;
import org . springframework . beans . factory . annotation . Autowired ;
import org . springframework . web . bind . annotation . * ;
/**
* The WeatherController class handles HTTP requests related to weather data.
* It provides an endpoint to fetch weather information based on a given zip code.
*/
@ RestController
@ RequestMapping ( "/api/weather" )
public class WeatherController {
@ Autowired
private WeatherService weatherService ;
@ GetMapping
public WeatherRecord getWeatherByZipCode ( @ RequestParam String zipCode ) {
return weatherService . getWeatherByZipCode ( zipCode );
}
}
weather_app/src/main/java/com/service/weather/controller/ZipCodeController.java
weather_app/src/main/java/com/service/weather/controller/ZipCodeController.java
package com . service . weather . controller ;
import com . service . weather . model . ZipCode ;
import com . service . weather . service . ZipCodeService ;
import org . springframework . beans . factory . annotation . Autowired ;
import org . springframework . web . bind . annotation . * ;
import java . util . List ;
/**
* The ZipCodeController class handles HTTP requests related to zip codes.
* It provides endpoints to fetch all zip codes, add a new zip code, and remove an existing zip code.
*/
@ RestController
@ RequestMapping ( "/api/zipcodes" )
public class ZipCodeController {
@ Autowired
private ZipCodeService zipCodeService ;
@ GetMapping
public List < ZipCode > getAllZipCodes () {
return zipCodeService . getAllZipCodes ();
}
@ PostMapping
public ZipCode addZipCode ( @ RequestBody ZipCode zipCode ) {
return zipCodeService . addZipCode ( zipCode );
}
@ DeleteMapping ( "/{id}" )
public void removeZipCode ( @ PathVariable Long id ) {
zipCodeService . removeZipCode ( id );
}
}
weather_app/src/main/java/com/service/weather/model/OpenWeatherMapResponse.java
weather_app/src/main/java/com/service/weather/model/OpenWeatherMapResponse.java
package com . service . weather . model ;
import com . fasterxml . jackson . annotation . JsonIgnoreProperties ;
import com . fasterxml . jackson . annotation . JsonProperty ;
import java . util . List ;
/**
* The OpenWeatherMapResponse class represents the response structure from the OpenWeatherMap API.
*/
@ JsonIgnoreProperties ( ignoreUnknown = true )
public class OpenWeatherMapResponse {
private Main main ;
private Wind wind ;
private List < Weather > weather ;
private String name ;
public Main getMain () {
return main ;
}
public void setMain ( Main main ) {
this . main = main ;
}
public Wind getWind () {
return wind ;
}
public void setWind ( Wind wind ) {
this . wind = wind ;
}
public List < Weather > getWeather () {
return weather ;
}
public void setWeather ( List < Weather > weather ) {
this . weather = weather ;
}
public String getName () {
return name ;
}
public void setName ( String name ) {
this . name = name ;
}
@ JsonIgnoreProperties ( ignoreUnknown = true )
public static class Main {
private double temp ;
@ JsonProperty ( "feels_like" )
private double feels_like ;
private double temp_min ;
private double temp_max ;
private int humidity ;
public double getTemp () {
return temp ;
}
public void setTemp ( double temp ) {
this . temp = temp ;
}
public double getFeels_like () {
return feels_like ;
}
public void setFeels_like ( double feelsLike ) {
this . feels_like =</span
Our website has a team of professional writers who can help you write any of your homework. They will write your papers from scratch. We also have a team of editors just to make sure all papers are of HIGH QUALITY & PLAGIARISM FREE. To make an Order you only need to click Ask A Question and we will direct you to our Order Page at WriteDemy. Then fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline.
Fill in all the assignment paper details that are required in the order form with the standard information being the page count, deadline, academic level and type of paper. It is advisable to have this information at hand so that you can quickly fill in the necessary information needed in the form for the essay writer to be immediately assigned to your writing project. Make payment for the custom essay order to enable us to assign a suitable writer to your order. Payments are made through Paypal on a secured billing page. Finally, sit back and relax.