Example #1
0
 def __init__(self):
     """This assumes that TRACE jp2 files are calculated locally.  They are
     then copied over to a directory on the main Helioviewer server, from
     which it can be picked up by the ingestion services.  Note that
     a full path is required to specify the location of the data."""
     DataServer.__init__(self, "/home/ireland/incoming/trace_incoming/v0.8/jp2", "TRACE")
     self.pause = datetime.timedelta(minutes=30)
Example #2
0
 def __init__(self):
     """This assumes that KCor jp2 files are calculated locally.  They are 
     then copied over to a directory on the main Helioviewer server, from 
     which it can be picked up by the ingestion services.  Note that
     a full path is required to specify the location of the data."""
     DataServer.__init__(self, "https://download.hao.ucar.edu/jp2/", "kcor")
     self.pause = datetime.timedelta(minutes=30)
Example #3
0
File: soho.py Project: wafels/api
 def __init__(self):
     """This assumes that SOHO jp2 files are calculated locally.  They are 
     then copied over to a directory on the main Helioviewer server, from 
     which it can be picked up by the ingestion services.  Note that
     a full path is required to specify the location of the data."""
     DataServer.__init__(self, "/home/ireland/incoming/soho_incoming/v0.8/jp2", "SOHO")
     self.pause = datetime.timedelta(minutes=30)
Example #4
0
File: stereo.py Project: wafels/api
 def __init__(self):
     """This assumes that STEREO jp2 files are calculated locally.  They are 
     then copied over to a directory on the main Helioviewer server, from 
     which it can be picked up by the ingestion services.  Note that
     a full path is required to specify the location of the data."""
     DataServer.__init__(self, "/home/ireland/incoming/stereo_incoming/v0.8/jp2", "STEREO")
     #self.pause = datetime.timedelta(hours=3)
     # for testing purposes use a pause of 15 minutes - remove after testing
     self.pause = datetime.timedelta(minutes=15)
Example #5
0
 def __init__(self):
     """This assumes that STEREO jp2 files are calculated locally.  They are 
     then copied over to a directory on the main Helioviewer server, from 
     which it can be picked up by the ingestion services.  Note that
     a full path is required to specify the location of the data."""
     DataServer.__init__(self, "/home/ireland/incoming/stereo_incoming/v0.8/jp2", "STEREO")
     # self.pause = datetime.timedelta(hours=3)
     # for testing purposes use a pause of 15 minutes - remove after testing
     self.pause = datetime.timedelta(minutes=15)
Example #6
0
 def __init__(self):
     """Defines the root directory of where the data is kept at XRT."""
     DataServer.__init__(self, "http://xrt.cfa.harvard.edu/jp2", "XRT")
     self.pause = datetime.timedelta(minutes=60)
Example #7
0
File: xrt.py Project: wafels/api
 def __init__(self):
     """Defines the root directory of where the data is kept at XRT."""
     DataServer.__init__(self, "http://xrt.cfa.harvard.edu/jp2", "XRT")
     self.pause = datetime.timedelta(minutes=15)
Example #8
0
File: rob.py Project: wafels/hvtest
 def __init__(self):
     """Defines the root directory of where the data is kept at ROB."""
     DataServer.__init__(self, "http://proba2.sidc.be/swap/data/qlk", "ROB")
     self.pause = datetime.timedelta(minutes=15)
Example #9
0
 def __init__(self):
     """Defines the root directory of where the data is kept at LMSAL."""
     DataServer.__init__(
         self, "http://sdowww.lmsal.com/sdomedia/hv_jp2kwrite/v0.8/jp2/",
         "LMSAL")
Example #10
0
 def __init__(self):
     """Defines the root directory of where the data is kept at ROB."""
     DataServer.__init__(self, "http://proba2.sidc.be/swap/data/qlk", "ROB")
     self.pause = datetime.timedelta(minutes=15)
Example #11
0
 def __init__(self):
     """Defines the root directory of where the data is kept at the JSOC."""
     DataServer.__init__(self, "http://jsoc.stanford.edu/data/aia/images", "JSOC")
Example #12
0
 def __init__(self):
     """Defines the root directory of where the data is kept at UIO."""
     DataServer.__init__(self, "http://sdc.uio.no/vol/jpeg2000/", "UIO")
     self.pause = datetime.timedelta(minutes=15)
Example #13
0
File: uio.py Project: wafels/api
 def __init__(self):
     """Defines the root directory of where the data is kept at UIO."""
     DataServer.__init__(self, "http://sdc.uio.no/vol/jpeg2000/", "UIO")
     self.pause = datetime.timedelta(minutes=15)