1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
// Copyright 2021 - Unistra/CNRS
// The MOC API project is distributed under the terms
// of the GNU General Public License version 3.
//
//This file is part of MOC API java project.
//
// MOC API java project is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 3 of the License.
//
// MOC API java project is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// The GNU General Public License is available in COPYING file
// along with MOC API java project.
//
package cds.moc;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.InputMismatchException;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* The TMoc class implements the methods specific to temporal MOCs.
* It is based on the JD discretization of the time at the s.
* See: IVOA MOC 2.0 standard => https://www.ivoa.net/documents/MOC/
* @author Pierre Fernique [CDS]
* @version 1.0 - April 2021 - creation
*
*/
public class TMoc extends Moc1D {
static public final double DAYMICROSEC = 86400000000.;
static final public int MAXORD_T = 61; // Max order (<=> resolution at 1 s)
static final public int FACT_T = 2; // Factor between two consecutive order
static final public char DIM_T = 't'; // Char signature for TMoc
static final public long NBVAL_T = pow2( MAXORD_T ); // // nb of cells at the deepest order
static final public String SYS_T = "TCB";
/** Return the deepest possible order (ex: 29 for SMoc, 61 for TMoc) */
public final int maxOrder() { return MAXORD_T; }
/** Return the number of bit shifting between two consecutive orders (ex: 2 for SMoc, 1 for TMoc) */
public final int shiftOrder() { return FACT_T/2; }
/** Return the Moc signature character (ex: 's' for SMoc, 't' for TMOC) */
public final char cDim() { return DIM_T; }
/** Return the number of values at the deepest order (ex: 2x2^29x2^29 for SMoc, 2^61 for TMoc) */
public final long maxVal() { return NBVAL_T; }
/** Return the default reference system */
public final String sys() { return SYS_T; }
public TMoc() { super(); }
public TMoc( int mocOrder ) { super( mocOrder ); }
public TMoc( String s ) throws Exception { super(s); }
public TMoc( TMoc moc ) throws Exception { super( moc ); }
public TMoc( InputStream in ) throws Exception { super(in); }
/** Clone Moc (deep copy) */
public TMoc clone() throws CloneNotSupportedException {
TMoc moc = dup();
clone1( moc );
return moc;
}
/** Deep copy. The source is this, the target is the Moc in parameter */
protected void clone1( Moc moc ) throws CloneNotSupportedException {
if( !(moc instanceof TMoc) ) throw new CloneNotSupportedException("Uncompatible type of MOC for clone. Must be TMoc");
super.clone1( moc );
}
/** Create and instance of same class, same sys, but no data nor mocorder */
public TMoc dup() {
TMoc moc = new TMoc();
moc.sys=sys;
return moc;
}
/** Return the number of bytes used for coding each FITS value (8 for long) */
public int sizeOfCoding() { return 8; }
/** Return the number of values to write in FITS serialization */
public int getNbCoding() { return range.sz; }
/** Add directly a TMoc */
public void add(Moc moc) throws Exception {
if( !(moc instanceof TMoc) ) throw new Exception("Uncompatible Moc for adding");
super.add(moc);
}
/** Get the Timesys */
public String getTimeSys() { return SYS_T; }
/************************************ TMoc specifical methods => JD discritization *****************************************/
/** Compute the microsec from JD=0 from a date jd (in JD unit=day decimal) and an offset (in JD unit=day) */
static public long getMicrosec(double jd, long offset) {
long micron = (long)(jd*DAYMICROSEC);
return micron + (offset*86400000000L);
}
/** Add JD range
* @param jdmin start time (in JD - unit=day) - included in the range (NaN for infinity)
* @param jdmax end time (in JD - unit=day) - included in the range (NaN for infinity)
*/
public void add(double jdmin, double jdmax) throws Exception {
long min = Double.isNaN(jdmin) ? 0L : (long)(jdmin*DAYMICROSEC);
long max = Double.isNaN(jdmax) ? NBVAL_T : (long)(jdmax*DAYMICROSEC);
add( MAXORD_T, min,max);
}
/** True if the jd date is in TMOC */
public boolean contains(double jd) {
long val = (long)( jd * DAYMICROSEC );
return range.contains(val);
}
/** Return minimal time in JD - -1 if empty*/
public double getTimeMin() {
if( isEmpty() ) return -1;
return range.begins(0) / DAYMICROSEC;
}
/** Return maximal time in JD - -1 if empty*/
public double getTimeMax() {
if( isEmpty() ) return -1;
return range.ends( range.nranges()-1 ) / DAYMICROSEC;
}
/** Return JD time for a couple order/npix */
public static double getTime(int order, long val) {
int shift = (FACT_T/2)*(MAXORD_T - order);
long t = val<<shift;
return t/DAYMICROSEC;
}
/** Return the duration of a cell for a specifical order (in microsec) */
public static long getDuration(int order) {
int shift =(FACT_T/2)*(MAXORD_T - order);
return 1L<<shift;
}
/** Returns a rangeIterator, which iterates over all individual range
* @param jdStart JD start time
* @param jdStop JD end time
* @return iterator of range in microseconds
*/
public Iterator<long[]> jdIterator(double jdStart, double jdStop) {
if( jdStart>jdStop ) throw new InputMismatchException();
return new JDIterator((long)(jdStart*DAYMICROSEC),(long)(jdStop*DAYMICROSEC));
}
class JDIterator implements Iterator<long[]>{
int pos, endpos;
JDIterator(long start, long end) {
pos = range.indexOf(start)/2;;
if( pos<0 ) pos=0;
endpos = range.indexOf(end)/2+1;
}
public boolean hasNext() { return range.sz>0 && pos<endpos; }
public long [] next() {
if( !hasNext() ) throw new NoSuchElementException();
long ret [] = new long[2];
ret[0] = range.begins(pos);
ret[1] = range.ends(pos);
pos++;
return ret;
}
public void remove() { }
}
/***************************************************** Operations ******************************************/
public boolean isIncluding(Moc moc) throws Exception {
if( moc instanceof STMoc ) moc = ((STMoc)moc).getTimeMoc();
else if( !(moc instanceof TMoc ) ) throw new Exception("Uncompatible Moc type for TMoc isIncluding test");
flush();
return range.contains( ((TMoc)moc).range );
}
public boolean isIntersecting(Moc moc) throws Exception {
if( moc instanceof STMoc ) moc = ((STMoc)moc).getTimeMoc();
else if( !(moc instanceof TMoc ) ) throw new Exception("Uncompatible Moc type for TMoc isIntersecting test");
flush();
return range.overlaps( ((TMoc)moc).range );
}
/** Return the Union with another Moc */
public TMoc union(Moc moc) throws Exception {
if( moc instanceof STMoc ) moc = ((STMoc)moc).getTimeMoc();
else if( !(moc instanceof TMoc ) ) throw new Exception("Uncompatible Moc type for TMoc union");
return (TMoc) super.union(moc);
}
/** Return the Intersection with another Moc */
public TMoc intersection(Moc moc) throws Exception {
if( moc instanceof STMoc ) moc = ((STMoc)moc).getTimeMoc();
else if( !(moc instanceof TMoc ) ) throw new Exception("Uncompatible Moc type for TMoc subtraction");
return (TMoc) super.subtraction(moc);
}
/** Return the subtraction with another Moc */
public TMoc subtraction(Moc moc) throws Exception {
if( moc instanceof STMoc ) moc = ((STMoc)moc).getTimeMoc();
else if( !(moc instanceof TMoc ) ) throw new Exception("Uncompatible Moc type for TMoc subtraction");
return (TMoc) super.subtraction(moc);
}
/** Return the complement */
public TMoc complement() throws Exception { return (TMoc) super.complement(); }
/*************************************************************** I/O *****************************************************/
/** Internal method: read FITS data according to the type of MOC.
* @param in The input stream
* @param naxis1 size of FITS row (in bytes) (generally ==nbyte, but may be 1024 for buffering)
* @param naxis2 number of values
* @param nbyte size of each value (in bytes)
* @param header HDU1 header
* @throws Exception
*/
protected void readSpecificData(InputStream in, int naxis1, int naxis2, int nbyte, HeaderFits header) throws Exception {
boolean protoTMoc=false;
int mocOrder = -1;
try { mocOrder = header.getIntFromHeader("MOCORD_T"); }
catch( Exception e) {}
// Compatibilite avec TMOC protos
if( mocOrder==-1 ) {
try { mocOrder = header.getIntFromHeader("MOCORDER")*2+3; protoTMoc=true; }
catch( Exception e) {}
}
String type = header.getStringFromHeader("ORDERING");
// TMOC 2.0
if( type!=null && type.equals("RANGE") ) readSpecificDataRange(in, naxis1, naxis2, nbyte);
// Compatibility with TMOC protos
else {
byte [] buf = new byte[naxis1*naxis2];
readFully(in,buf);
createMocByUniqUnsorted((naxis1*naxis2)/nbyte,nbyte,buf,protoTMoc);
}
if( mocOrder==-1 ) throw new Exception("Missing MOC order in FITS header (MOCORD_T)");
setMocOrder( mocOrder );
}
/** Write specifical TMoc properties */
protected int writeSpecificFitsProp(OutputStream out) throws Exception {
int n=0;
out.write( getFitsLine("MOCDIM","TIME","Physical dimension") ); n+=80;
out.write( getFitsLine("ORDERING","RANGE","Coding method") ); n+=80;
out.write( getFitsLine("MOCORD_T",""+getMocOrder(),"Time MOC resolution (best order)") ); n+=80;
out.write( getFitsLine("TIMESYS",getTimeSys(),"Time ref system") ); n+=80;
return n;
}
}
|