Esempio n. 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)
Esempio n. 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)
Esempio n. 3
0
File: soho.py Progetto: 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)
Esempio n. 4
0
File: stereo.py Progetto: 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)
Esempio n. 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)
Esempio n. 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)
Esempio n. 7
0
File: xrt.py Progetto: 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)
Esempio n. 8
0
File: rob.py Progetto: 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)
Esempio n. 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")
Esempio n. 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)
Esempio n. 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")
Esempio n. 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)
Esempio n. 13
0
File: uio.py Progetto: 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)