Skip to content
Snippets Groups Projects
Select Git revision
  • 3c73b3c07cc54fb8282a7930649021c215102a50
  • main default protected
  • 1.8.5
  • 1.8.4
  • 1.8.3
  • 1.8.2
  • 1.8.1
  • 1.8.0
  • 1.7.14
  • 1.7.13
  • 1.7.12
  • 1.7.11
  • 1.7.10
  • 1.7.9
  • 1.7.8
  • 1.7.7
  • 1.7.6
  • 1.7.5
  • 1.7.4
  • 1.7.3
  • 1.7.2
  • 1.7.1
22 results

Cutout.java

Blame
  • Cutout.java 614 B
    
    
    import java.io.OutputStream;
    import java.io.InputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    /* Jdl */
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.time.Instant;//Timestamp in cut-filename
    
    public interface Cutout
    {
    
       public void doStream(String relPathname, int hdunum, Pos pos, Band band, Time time, Pol pol,
            OutputStream outputStream) throws IOException, InterruptedException;
    
    
       public CutResult doFile(String relPathname, int hdunum, Pos pos, Band band, Time time, Pol pol,
             boolean countNullValues, FitsCard[] extraCards);
    
    }