Skip to content
Snippets Groups Projects
Select Git revision
  • 6902131012d54f5fb0f68dbd489a79f6f6bfba06
  • main default protected
  • Kelvinrr-patch-5
  • Kelvinrr-patch-4
  • Kelvinrr-patch-3
  • update_release_doc
  • Kelvinrr-patch-2
  • Kelvinrr-patch-1
  • spice_docs
  • ale_testing
  • changelog_docs
  • 1.0.1
  • 1.0.0
13 results

locating-and-ingesting-image-data.md

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;
    }