Class CSVPointWriter

java.lang.Object
noaa.coastwatch.gui.nav.NavigationPointWriter
noaa.coastwatch.gui.nav.CSVPointWriter

public class CSVPointWriter extends NavigationPointWriter
The CSVPointWriter class writes navigation point data to an CSV format file. Each navigation point is written as one line with commas separating the columns. The file is prefixed with a column name header.
Since:
3.2.2
Author:
Peter Hollemans
  • Constructor Details

    • CSVPointWriter

      public CSVPointWriter(EarthDataReader reader, List<String> variableList, List<NavigationPoint> pointList) throws IOException
      Creates an CSV point writer.
      Parameters:
      reader - the reader to use for extra data to write with each point.
      variableList - the list of variables from the reader to use for writing variable data at each point.
      pointList - the list of navigation points to write.
      Throws:
      IOException - if an error occurred accessing a data variable from the list.
  • Method Details