This is an old version of LandSerf. For the latest release please visit www.landserf.org

Chapter 1. Getting Started

By the end of this chapter you will be able to:

1.1 Linking your Java code with the LandSerf Class Libraries

In order to take advantage of the several hundred classes that make up the LandSerf class libraries, you will first need to identify their location in your Java development environment. The libraries are stored in two .jar files in the directory in which you installed LandSerf. landserf220.jar contains LandSerf-specific classes and utils.jar contains a set of more general utility classes.

If you are compiling your own Java code from the command line, you will need to point to these two jar files by using the -classpath option of javac. For example:

javac -classpath .;"c:Program Files\LandSerf\landserf220.jar";"c:Program Files\LandSerf\utils.jar" myClass.java (Windows)

javac -classpath .:~/LandSerf/landserf220.jar:~/LandSerf/utils.jar myClass.java (Unix/Linux/MacOSX)

If you are using an IDE, you will need to make an equivalent link with the two jar files. For example, in Eclipse, create a new project and select Properties->Java Build Path->Libraries and then click the Add External JARs... button.

1.2 Creating A 'Hello World' Raster Map

In time honoured fashion, we will start by writting a simple 'hello world' program that will create a simple LandSerf Raster Map, add some metadata, and save it to disk. Consider the following code:

import jwo.landserf.structure.*;   // For spatial object class.
import jwo.landserf.process.io.*;  // For file saving.

// **********************************************************
/** Creates a simple raster map and with metadata.
  * @author Jo Wood
  * @version 1.0, 20th March, 2004
  */
// **********************************************************
public class HelloWorld
{
    //------------------ Starter Method -----------------
    
    public static void main(String[] args)
    {
        new HelloWorld();
    }

    //------------------- Constructor -------------------

    public HelloWorld()
    {
        // Create a blank raster of 100 x 100 cells.
        RasterMap raster = new RasterMap(100,100);
        
        // Add some simple metadata
        Header header = new Header("My first raster");
        header.setNotes("Hello world");
        raster.setHeader(header);
        raster.setDefaultColours();
        
        // Write new raster to file.
        LandSerfIO.write(raster,"hello.srf");
    }
}

Most of the spatial data structures such as raster maps, vector maps, TINs etc. are represented by classes in the jwo.landserf.structure package. Therefore to use them, this package is imported in the first line of code. Since this first example will save a raster map as a file, we also need to import the jwo.landserf.process.io package that contains most of the file import/export functionality.

The first line of the constructor creates an empty raster map containing 100 rows and 100 columns of data. The RasterMap API documentation provides details of other ways to construct raster maps.

The next four lines of code create some simple metadata to attach to the raster map. Most metadata are stored in the jwo.landserf.structure.Header class. This class, which is attached to all SpatialObjects, allows a title, author, copyright information and supplementary notes to be associated with the raster. In this example, just the title (set via its constructor) and notes are set. Finally, a default ColourTable is attached to the raster map.

The last line of the HelloWorld constructor saves the raster we have just created to disk with the name hello.srf. Most operations for reading and writing LandSerf files are represented as static methods in the classes in the jwo.landserf.process.io package. Methods for reading and writing in the default LandSerf file format are found in the LandSerfIO class in that package.

1.3 Running the 'HelloWorld' Class

To run a compiled class simply call the java interpreter making sure the relevant jar files are linked to your code. This may be achieved directly from with your IDE, by setting your machine's CLASSPATH variable, or by explicitly linking the jar files from the command line:

java -classpath .;"c:Program Files\LandSerf\landserf220.jar" HelloWorld (Windows)

java -classpath .:~/LandSerf/landserf220.jar HelloWorld (Unix/Linux/MacOSX)

The command line options can be used to create a simple .bat (Windows) or .sh (Unix/Linux/MacOS) file that will allow your program to be conveniently run without an IDE.

You can test the output of the program by starting LandSerf and opening the file hello.srf. Selecting Info->Summary Info should produce output similar to the figure below.

Metadata from simple raster displayed in LandSerf Metadata from simple raster displayed in LandSerf.

1.4 Exercises

  1. If you have not done so already, create a HelloWorld project in your favourite Java IDE (or use the command line if you prefer). Create a new class HelloWorld and copy the code above into it.

    After making sure you have linked your code to the landserf220.jar file, compile and run the class. Check that it has behaved as expected by starting LandSerf and loading the new raster file hello.srf.

  2. Using the API documentation as a guide, try adapting the code to add the following metadata to the raster:

    Resolution:50
    Northern Boundary:10000
    Southern Boundary:5000
    Western Boundary:20000
    Eastern Boundary:25000
    Raster type: Other

    Check your results by examining the metadata within LandSerf.