lrgs.archive.XmitWindow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opendcs Show documentation
Show all versions of opendcs Show documentation
A collection of software for aggregatting and processing environmental data such as from NOAA GOES satellites.
The newest version!
/**
*
*/
package lrgs.archive;
/**
* Data structure that encapsulates information about a transmit window
* for a self-timed GOES message.
* @author mjmaloney
*/
public class XmitWindow
{
/** Second-of-day for 1st xmit */
public int firstXmitSecOfDay;
/** Window length in seconds */
public int windowLengthSec;
/** Transmit interval in seconds */
public int xmitInterval;
/** Start sec-of-day for this specific window */
public int thisWindowStart;
public XmitWindow(int firstXmitSecOfDay, int windowLengthSec,
int xmitInterval, int thisWindowStart)
{
this.firstXmitSecOfDay = firstXmitSecOfDay;
this.windowLengthSec = windowLengthSec;
this.xmitInterval = xmitInterval;
this.thisWindowStart = thisWindowStart;
}
}