uk.ac.starlink.fits.ColFitsTableWriter Maven / Gradle / Ivy
Show all versions of stil Show documentation
package uk.ac.starlink.fits;
import java.io.IOException;
import uk.ac.starlink.table.StarTable;
/**
* Handles writing of a StarTable
in a column-oriented
* FITS binary table format.
* The table data is stored in a BINTABLE extension which has a single row;
* each cell in this row contains the data for an entire column of the
* represented table.
*
* This rather specialised format may provide good performance for
* certain operations on very large, especially very wide, tables.
* Although it is FITS and can therefore be used in principle for data
* interchange, in practice most non-STIL processors are unlikely to
* be able to do much useful with it.
*
* @author Mark Taylor
* @since 21 Jun 2006
*/
public class ColFitsTableWriter extends AbstractFitsTableWriter {
/**
* Default constructor.
*/
public ColFitsTableWriter() {
super( "colfits-basic" );
}
/**
* Deprecated custom constructor.
*
* @deprecated allows some configuration options but not others;
* use no-arg constructor and configuration methods instead
*/
@Deprecated
public ColFitsTableWriter( String name, WideFits wide ) {
this();
setFormatName( name );
setWide( wide );
}
public boolean looksLikeFile( String location ) {
return location.endsWith( ".colfits" );
}
protected FitsTableSerializer createSerializer( StarTable table )
throws IOException {
return new ColFitsTableSerializer( getConfig(), table );
}
}