White Star Line


Imagine that you are working for the White Star Line shipping company and you want, more from historical paranoia than any real need, to send out an iceberg-towing tug with all your ships. You need an application to find icebergs and assess their tow-ability.

You have satellite radar data, and airborn lidar (LIght Detection and Ranging) data from an area of sea. The radar data can tell you the texture of objects, while the lidar data can tell you their height. You want to combine the two to spot icebergs and assess their mass. You know from experience that if a berg has a mass of greater than 36 million kg you'll never drag it out of the way of anything in time.

In this example you have an area of sea with a single iceberg in it. The area will be 300m by 300m. The radar file has per m2 values of between 0 and 255. A value of 100 or above is ice. The lidar file data covers the same area at the same m2 resolution, with values between 0 and 255. One Lidar unit equals 10cm height (so 255 is 2550cm high).

Build a program to do the following...

  1. Pull in the two data files and convert them into Images.

  2. Build a GUI that displays both the radar and lidar images of the sea.

  3. Assess which areas of the image are ice using the radar data.

  4. Assess the total mass of ice above sea level. The lidar returns a value such that 10 units equals a metre of height. The mass density of ice is 900 kg/m3. You'll need to run through the radar image, work out which pixels contain ice and pull out their equivalent heights from the lidar image. Use these to calculate the total mass of the berg above the water. The water level will be at 0m in the lidar file.

  5. Calculate the total mass of the iceberg, if 10 percent of its mass is above water.

  6. Display the total mass, the total volume and whether you can pull the berg on the GUI.

  7. Save the above information to a file.

Additional marks are awarded for the following.

Making the program read in a file of multiple bergs and highlight in green the ones you can drag and red those you can't. To separate out the bergs you'll have to supply the user with a "drag box" which they can use to select and calculate for one berg at a time.

Files for this project.

2 (300 by 300) raster files representing the radar and lidar images of an area of sea with a single berg in it. The files are laid out at one line per image line, from the top left to bottom right of the raster file.

The same with multiple bergs.