Simple Java API parsing project -- 2

Job ID: 35030179

Budget: ₹1,500 – ₹12,500 INR

Part 1: URL Reader test

Download this example program: URLReader_Sat.javaDownload URLReader_Sat.java

Modify the program to do the following:

Print a list of the names and catalog numbers of all Geosynchronous satellites in high (> 45 degrees) orbits.

Also print a count of how many such satellites were found.

Use the Geosynchronous satellite data from the website https://celestrak.org/NORAD/elements/Links to an external site.



Part 2: Satellite Objects

Create a Satellite class following the outline here: Sat_Class_Notes.javaDownload Sat_Class_Notes.java

Note: The above file IS NOT a working Java program, it is an outline to use as a guide.

You can use the following as a guide to creating classes: FeetInchesTest.javaDownload FeetInchesTest.java

Repeat part 1, but now read the url and store the satellites in an ArrayList and write a for loop to go through the ArrayList and print the same output as Part 1.