Skip to content
Snippets Groups Projects
Select Git revision
  • ea31db30b98316d993171cc3ec20c02e8c429f98
  • 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

Vlkb.java

Blame
  • Vlkb.java 1.27 KiB
    
    
    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
    
    import vo.parameter.*;
    
    public interface Vlkb
    {
       public void doFile(String relPathname, int hdunum,
             Pos pos, Band band, Time time, Pol pol,
             String cutAbsPathname)
             throws IOException, InterruptedException;
    
       public void doFile(String relPathname, int hdunum,
             String pixels, String cutAbsPathname)
             throws IOException, InterruptedException;
    
    
    
       public MCutResult doMCutout(String jdlJson, String workDir)
          throws IOException, InterruptedException;
    
    
       public CutResult doMerge(String[] idArr, Coord coord, boolean countNullValues)
          throws FileNotFoundException, IOException;
    
    
    	// misc
    
    	NullValueCount doCountNullValues(String absPathname, int hdunum)
          throws IOException, InterruptedException;
    
    	// deprecated - used only in VlkbAmqp
       public CutResult doFileAmqp(String relPathname, int hdunum,
             Pos pos, Band band, Time time, Pol pol,
             boolean countNullValues, FitsCard[] extraCards,
    			String cutAbsPathname)
             throws IOException, InterruptedException;
    }