Exemplo 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)
Exemplo 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)
Exemplo n.º 3
0
Arquivo: soho.py Projeto: 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)
Exemplo n.º 4
0
Arquivo: stereo.py Projeto: 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)
Exemplo 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)
Exemplo 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)
Exemplo n.º 7
0
Arquivo: xrt.py Projeto: 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)
Exemplo n.º 8
0
Arquivo: rob.py Projeto: 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)
Exemplo 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")
Exemplo 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)
Exemplo 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")
Exemplo 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)
Exemplo n.º 13
0
Arquivo: uio.py Projeto: 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)