This page was created by the IDL library routine mk_html_help2.

Last modified: Wed Dec 6 12:50:16 2017.


Directory Listing of Routines


Routine Descriptions

CONV3D

[Next Routine] [List of Routines]
 PROCEDURE: CONV3D
   conv3d, tvar3d, $
           selparam_idx=selparam_idx, $
           selparam_dat=selparam_dat, $
           newname=newname

 PURPOSE:
   Convert 3D data to 2D or 1D data

 KEYWORDS:
   tvar3d: tplot variables for 3D data
   selparam_idx: a vector with 3 elements to identify the loaded variables
           when converting 3D data to 2D or 1D data.
   selparam_dat: a vector with 3 elements to identify the coordinate.
           when converting 3D data to 2D or 1D data.
   newname: if set, then name of the converted data will be newname.
           This keyword is available only when selparam_idx is set.

 EXAMPLE:
   conv3d, 'kyushugcm_T', selparam_idx=[0,0,1], selparam_dat=[30., 50., 0]
       loads 1D data along z-axis at (x,y)=(30.,50.).

   conv3d, 'kyushugcm_T', selparam_idx=[1,1,0], selparam_dat=[0., 0., 100.]
       loads 2D data on the x-y plane at z=100.

 Written by Y.-M. Tanaka, Dec.24, 2012 (ytanaka at nipr.ac.jp)

(See projects/iugonet/load/conv3d.pro)


FILE_DAILYNAMES_IUG

[Previous Routine] [Next Routine] [List of Routines]
  Procedure:  FILE_DAILYNAMES
  Author: Atsuki Shinbori

(See projects/iugonet/load/file_dailynames_iug.pro)


IUG_LOAD_ASI_NIPR

[Previous Routine] [Next Routine] [List of Routines]
 PROCEDURE: IUG_LOAD_ASI_NIPR
   iug_load_asi_nipr, site = site, $
                     wavelength=wavelength, $
                     trange=trange, $
                     verbose=verbose, $
                     downloadonly=downloadonly, $
                     no_download=no_download

 PURPOSE:
   Loads the all-sky imager data obtained by NIPR.

 KEYWORDS:
   site  = Observatory name, example, iug_load_asi_nipr, site='syo',
           the default is 'all', i.e., load all available stations.
           This can be an array of strings, e.g., ['syo', 'hus']
           or a single string delimited by spaces, e.g., 'syo hus'.
           Available sites as of April, 2013 : syo
   wavelength = Wavelength in Angstrom, i.e., 4278, 5577, 6300, etc.
           The 0000 means white light images taken without filter.
           Only 0000 is available as of October, 2014.
   trange = (Optional) Time range of interest  (2 element array).
   /verbose: set to output some useful info
   /downloadonly: if set, then only download the data, do not load it 
           into variables.
   /no_download: use only files which are online locally.

 EXAMPLE:
   iug_load_asi_nipr, site='hus', wavelength=0000, $
                 trange=['2012-01-22/20:30','2012-01-22/21:00']

 Written by Y.-M. Tanaka, July, 2014 (ytanaka at nipr.ac.jp)

(See projects/iugonet/load/iug_load_asi_nipr.pro)


IUG_LOAD_ASK_NIPR

[Previous Routine] [Next Routine] [List of Routines]
 PROCEDURE: IUG_LOAD_ASK_NIPR
   iug_load_ask_nipr, site = site, $
                     wavelength=wavelength, $
                     trange=trange, $
                     verbose=verbose, $
                     downloadonly=downloadonly, $
                     no_download=no_download

 PURPOSE:
   Loads the keogram of all-sky imager data obtained by NIPR.

 KEYWORDS:
   site  = Observatory name, example, iug_load_ask_nipr, site='syo',
           the default is 'all', i.e., load all available stations.
           This can be an array of strings, e.g., ['syo', 'hus']
           or a single string delimited by spaces, e.g., 'syo hus'.
           Available sites as of April, 2013 : syo
   wavelength = Wavelength in Angstrom, i.e., 4278, 5577, 6300, etc.
           The 0000 means white light images taken without filter.
           Only 0000 is available as of October, 2014.
   trange = (Optional) Time range of interest  (2 element array).
   /verbose: set to output some useful info
   /downloadonly: if set, then only download the data, do not load it 
           into variables.
   /no_download: use only files which are online locally.

 EXAMPLE:
   iug_load_ask_nipr, site='syo', wavelength=0000, $
                 trange=['2012-01-22','2012-01-23']

 Written by Y.-M. Tanaka, August, 2014 (ytanaka at nipr.ac.jp)

(See projects/iugonet/load/iug_load_ask_nipr.pro)


IUG_LOAD_AVON_VLFB

[Previous Routine] [Next Routine] [List of Routines]
 PROCEDURE: iug_load_avon_vlfb

 PURPOSE:
   To load AVON/VLF-B data 

 KEYWORDS:
   site  = Observatory name, example, iug_load_avon, site='TNN',
           This can be an array of strings, e.g., ['tnn', 'srb']
           or a single string delimited by spaces, e.g., 'tnn srb'.
           Sites:  tnn srb ptk lbs
   parameter = Parameter name. 'ch1' and 'ch2' are available.
               ch1 for north-south component, and ch2 for east-west component.
   /downloadonly, if set, then only download the data, do not load it into variables.
   /no_download: use only files which are online locally.
   /verbose : set to output some useful info
   trange = (Optional) Time range of interest  (2 element array).

 EXAMPLE:
   iug_load_avon_vlfb, site='tnn', $
            trange=['2007-12-28/10:20:00','2007-12-28/10:40:00']

 NOTE: See the rules of the road.
       For more information, see http://iugonet02.gp.tohoku.ac.jp/avon/rules.txt

 NAMING CONVENTIONS:
       avon_[site]_vlfb_[parameter]
       ex. avon_tnn_vlfb_ch1

 Written by: M.Yagi, May 14, 2014
             PPARC, Tohoku Univ.

   $LastChangedBy: nikos $
   $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
   $URL:

(See projects/iugonet/load/iug_load_avon_vlfb.pro)


IUG_LOAD_AWS_ID

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_aws_id

PURPOSE:
  Queries the RISH server for the surface meterology data taken by the automatic weather 
  station (AWS) at the Indonesian stations and loads data into tplot format.

SYNTAX:
 iug_load_aws_id, site=site, downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS: 
  SITE = AWS observation site.  
         For example, iug_load_aws_id, site = 'pon'.
         The default is 'all', i.e., load all available observation points.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE: [1,...,5], Get more detailed (higher number) command line output.
  
CODE:
  A. Shinbori, 28/02/2013.
  
MODIFICATIONS:
  A. Shinbori, 08/04/2013.
  A. Shinbori, 24/01/2014.
  A. Shinbori, 08/08/2017.
  A. Shinbori, 29/11/2017.
      
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_aws_id.pro)


IUG_LOAD_AWS_KTB

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_aws_ktb

PURPOSE:
  Queries the RISH server for the surface meterology data taken by the automatic weather 
  station (AWS) at the Kototabang stations and loads data into tplot format.

SYNTAX:
 iug_load_aws_ktb, site=site, downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS:
  SITE = AWS observation site.  
         For example, iug_load_aws_ktb, site = 'ktb'.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE: [1,...,5], Get more detailed (higher number) command line output.
 
CODE:
  A. Shinbori, 28/02/2013.
  
MODIFICATIONS:
  A. Shinbori, 24/01/2014.
   
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_aws_ktb.pro)


IUG_LOAD_AWS_RISH

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_aws_rish

PURPOSE:
  Queries the RISH server for the surface meterology data taken by the automatic weather 
  station (AWS) and loads data into tplot format.

SYNTAX:
 iug_load_aws_rish, site=site, downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS:
  SITE = AWS observation site.  
         For example, iug_load_aws_rish, site = 'bik'.
         The default is 'all', i.e., load all available observation points.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE : [1,...,5], Get more detailed (higher number) command line output.

CODE:
  A. Shinbori, 28/02/2013.
  
MODIFICATIONS:
  A. Shinbori, 08/01/2014.
   
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_aws_rish.pro)


IUG_LOAD_AWS_SGK

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_aws_sgk

PURPOSE:
  Queries the RISH server for the surface meterology data taken by the automatic weather 
  station (AWS) at Shigaraki and loads data into tplot format.

SYNTAX:
 iug_load_aws_sgk, site=site, downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS: 
  SITE = AWS observation site.  
         For example, iug_load_aws_sgk, site = 'sgk'.
         The default is 'all', i.e., load all available observation points.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE: [1,...,5], Get more detailed (higher number) command line output.
 
CODE:
  A. Shinbori, 28/02/2013.
  
MODIFICATIONS:
  A. Shinbori, 24/01/2014.
  A. Shinbori, 08/08/2017. 
  A. Shinbori, 30/11/2017.
  
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_aws_sgk.pro)


IUG_LOAD_BLR_RISH

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_blr_rish

PURPOSE:
  Queries the Kyoto_RISH server for the CSV data (uwnd, vwnd, wwnd, pwr1-5, wdt1-5) 
  of the troposphere taken by the boundary layer radar (BLR) at Kototabang, Shigaraki and Serpong
  and loads data into tplot format.

SYNTAX:
 iug_load_blr_rish, site=site, parameter=parameter, $
                    downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS:
   SITE = BLR observation site.  
          For example, iug_load_blr_rish, site = 'ktb'.
          The default is 'all', i.e., load all available observation points.
  PARAMETER = parameter name of BLR obervation data.  
          For example, iug_load_blr_rish, parameter = 'uwnd'.
          The default is 'all', i.e., load all available parameters.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE: [1,...,5], Get more detailed (higher number) command line output.
 
CODE:
  A. Shinbori, 09/09/2010.
  
MODIFICATIONS:
  A. Shinbori, 03/23/2011.
  A. Shinbori, 12/26/2011.
  A. Shinbori, 31/01/2012.
  A. Shinbori, 10/02/2012.
  A. Shinbori, 17/12/2012.
  A. Shinbori, 27/02/2013.
  A. Shinbori, 24/01/2014.
  A. Shinbori, 08/08/2017.
  A. Shinbori, 30/11/2017.
   
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_blr_rish.pro)


IUG_LOAD_CAMERA_OMTI_ASI

[Previous Routine] [Next Routine] [List of Routines]
 PROCEDURE: iug_load_camera_omti_asi

 PURPOSE:
   To load the OMTI ASI data from the STEL ERG-SC site 

 NOTE: This procedure is a simple alias to "iug_load_camera_omti_asi"
   and calls the original one by just providing the same
   arguments/keywords given.
   Some load procedures for the ground-based observational data
   in the  ERG mission, named "erg_load_???", can be also called
   by "iug_load_???", because these data are related to the both
   ERG and IUGONET projects.
   For more information, see http://www.iugonet.org/en/
                         and http://gemsissc.stelab.nagoya-u.ac.jp/erg/
   See the rules of the road.
   For more information, see http://stdb2.stelab.nagoya-u.ac.jp/omti/

 KEYWORDS:
   site  = Observatory name, example, iug_load_camera_omti_asi, site='sgk'.
           The default is 'all', i.e., load all available stations.
           This can be an array of strings, e.g., ['sgk', 'sta']
           or a single string delimited by spaces, e.g., 'sgk sta'.
           Sites: ith rsb trs ath mgd ptk rik sgk sta yng drw ktb syo
   wavelength = Wavelength in Angstrom, i.e., 5577, 6300, 7200, 7774, 5893, etc.
                The default is 5577. This can be an array of integers, e.g., [5577, 6300]
                or strings, e.g., '5577', '5577 6300', and ['5577', '6300'].
   /downloadonly, if set, then only download the data, do not load it into variables.
   /no_server, use only files which are online locally.
   /no_download, use only files which are online locally. (Identical to no_server keyword.)
   trange = (Optional) Time range of interest  (2 element array).
   /timeclip, if set, then data are clipped to the time range set by timespan

 EXAMPLE:
   iug_load_camera_omti_asi, site='sgk', wavelength=5577, trange=['2012-01-01/00:00:00','2012-01-02/00:00:00']

 Author: Y. Miyashita, Mar 28, 2013
         ERG-Science Center, STEL, Nagoya Univ.
         erg-sc-core at st4a.stelab.nagoya-u.ac.jp

 Written by: Y.-M Tanaka, Feb. 5, 2014 (ytanaka at nipr.ac.jp)

(See projects/iugonet/load/iug_load_camera_omti_asi.pro)


IUG_LOAD_EAR

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_ear

PURPOSE:
  Queries the RISH servers for all the observation data (troposphere and FAI)
  taken by the equatorial atmosphere radar (EAR) and loads data into tplot format.

SYNTAX:
  iug_load_ear [ ,DATATYPE = string ]
                [ ,PARAMETERS = string]
                [ ,TRANGE = [min,max] ]
                [ ,FILENAMES = string scalar or array ]
                [ ,<and data keywords below> ]

KEYWOARDS:
  DATATYPE = The type of data to be loaded. In this load program,
             DATATYPEs are 'troposphere', 'e_region', 'v_region' etc.

  PARAMETERS (I/O):
    Set to wind parameters.  If not set, 'uwnd' is
      assumed.  Returns cleaned input, or shows default.  
  TRANGE (In):
    Pass a time range a la TIME_STRING.PRO.
    
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE (In): [1,...,5], Get more detailed (higher number) command line output.

DATA AVAILABILITY:
  Please check the following homepage of the time schedule of field-aligned irregularity (FAI) observation 
  before you analyze the FAI data using this software. 
  http://www.rish.kyoto-u.ac.jp/ear/data-fai/index.html#data

CODE:
A. Shinbori, 13/05/2010.

MODIFICATIONS:
A. Shinbori, 25/11/2010.
A. Shinbori, 08/11/2011.
A. Shinbori, 11/05/2011.
A. Shinbori, 27/05/2011.
A. Shinbori, 15/06/2011.
A. Shinbori, 25/07/2011.
A. Shinbori, 10/01/2014.
A. Shinbori, 14/05/2017.

ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_ear.pro)


IUG_LOAD_EAR_IONO_EFR_NC

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_ear_iono_efr_nc

PURPOSE:
  Queries the Kyoto_RISH servers for the FAI observation data in the NetCDF format 
  taken by the equatorial atmosphere radar (EAR) and loads data into
  tplot format.

SYNTAX:
 iug_load_ear_iono_efr_nc, parameter=parameter, downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS:
  PARAMETER = first parameter name of EAR FAI obervation data.  
          For example, iug_load_ear_iono_er_nc, parameter = 'efb1p16'.
          The default is 'all', i.e., load all available parameters.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE (In): [1,...,5], Get more detailed (higher number) command line output.

DATA AVAILABILITY:
  Please check the following homepage of the time schedule of field-aligned irregularity (FAI) observation 
  before you analyze the FAI data using this software. 
  http://www.rish.kyoto-u.ac.jp/ear/data-fai/index.html#data

CODE:
 A. Shinbori, 19/09/2010.

MODIFICATIONS:
 A. Shinbori, 24/03/2011.
 A. Shinbori, 09/07/2011.
 A. Shinbori, 31/01/2012.
 A. Shinbori, 17/12/2012.
 A. Shinbori, 08/07/2013.
 A. Shinbori, 19/08/2013.
 A. Shinbori, 24/01/2014.
 A. Shinbori, 08/08/2017.
 A. Shinbori, 30/11/2017.
   
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_ear_iono_efr_nc.pro)


IUG_LOAD_EAR_IONO_EFR_TXT

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_ear_iono_efr_txt

PURPOSE:
  Queries the Kyoto_RISH servers for the FAI observation data in the CSV format 
  taken by the equatorial atmosphere radar (EAR) and loads data into
  tplot format.

SYNTAX:
 iug_load_ear_iono_efr_txt, parameter1=parameter1, parameter2=parameter2 $
                          downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS:
  PARAMETER1 = first parameter name of EAR FAI obervation data.  
          For example, iug_load_ear_iono_efr_txt, parameter1 = 'efb1p16'.
          The default is 'all', i.e., load all available parameters.
  PARAMETER2 = second parameter name of EAR FAI obervation data.  
          For example, iug_load_ear_iono_efr_txt, parameter2 = 'dpl1'.
          The default is 'all', i.e., load all available parameters.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE (In): [1,...,5], Get more detailed (higher number) command line output.


DATA AVAILABILITY:
  Please check the following homepage of the time schedule of field-aligned irregularity (FAI) observation 
  before you analyze the FAI data using this software. 
  http://www.rish.kyoto-u.ac.jp/ear/data-fai/index.html#data

CODE:
 A. Shinbori, 19/09/2010.

MODIFICATIONS:
 A. Shinbori, 24/03/2011.
 A. Shinbori, 06/10/2011.
 A. Shinbori, 31/01/2012.
 A. Shinbori, 01/08/2013.
 A. Shinbori, 18/08/2013.
 A. Shinbori, 24/01/2014.
 A. Shinbori, 08/08/2017.
 A. Shinbori, 30/11/2017.
  
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_ear_iono_efr_txt.pro)


IUG_LOAD_EAR_IONO_ER_NC

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_ear_iono_er_nc

PURPOSE:
  Queries the Kyoto_RISH servers for the FAI observation data in the NetCDF format 
  taken by the equatorial atmosphere radar (EAR) and loads data into
  tplot format.

SYNTAX:
 iug_load_ear_iono_er_nc, parameter=parameter, downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS:
  PARAMETER = first parameter name of EAR FAI obervation data.  
          For example, iug_load_ear_iono_er_nc, parameter1 = 'eb1p2a'.
          The default is 'all', i.e., load all available parameters.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE (In): [1,...,5], Get more detailed (higher number) command line output.
                 
DATA AVAILABILITY:
  Please check the following homepage of the time schedule of field-aligned irregularity (FAI) observation 
  before you analyze the FAI data using this software. 
  http://www.rish.kyoto-u.ac.jp/ear/data-fai/index.html#data

CODE:
 A. Shinbori, 19/09/2010.

MODIFICATIONS:
 A. Shinbori, 24/03/2011.
 A. Shinbori, 09/07/2011.
 A. Shinbori, 31/01/2012.
 A. Shinbori, 17/12/2012.
 A. Shinbori, 08/07/2013.
 A. Shinbori, 18/08/2013.
 A. Shinbori, 24/01/2014. 
 A. Shinbori, 30/11/2017. 
 
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_ear_iono_er_nc.pro)


IUG_LOAD_EAR_IONO_ER_TXT

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_ear_iono_er_txt

PURPOSE:
  Queries the Kyoto_RISH servers for the FAI observation data in the CSV format 
  taken by the equatorial atmosphere radar (EAR) and loads data into
  tplot format.

SYNTAX:
 iug_load_ear_iono_er_txt, parameter1=parameter1, parameter2=parameter2 $
                          downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS:
  PARAMETER1 = first parameter name of EAR FAI obervation data.  
          For example, iug_load_ear_iono_er_txt, parameter = 'eb1p2a'.
          The default is 'all', i.e., load all available parameters.
  PARAMETER2 = second parameter name of EAR FAI obervation data.  
          For example, iug_load_ear_iono_er_txt, parameter = 'dpl1'.
          The default is 'all', i.e., load all available parameters.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE (In): [1,...,5], Get more detailed (higher number) command line output.

DATA AVAILABILITY:
  Please check the following homepage of the time schedule of field-aligned irregularity (FAI) observation 
  before you analyze the FAI data using this software. 
  http://www.rish.kyoto-u.ac.jp/ear/data-fai/index.html#data

CODE:
 A. Shinbori, 19/09/2010.

MODIFICATIONS:
 A. Shinbori, 24/03/2011.
 A. Shinbori, 06/10/2011.
 A. Shinbori, 31/01/2012.
 A. Shinbori, 17/12/2012.
 A. Shinbori, 01/08/2013.
 A. Shinbori, 18/08/2013.
 A. Shinbori, 24/01/2014.
 A. Shinbori, 08/08/2017.
 A. Shinbori, 30/11/2017.
   
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_ear_iono_er_txt.pro)


IUG_LOAD_EAR_IONO_FR_NC

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_ear_iono_fr_nc

PURPOSE:
  Queries the Kyoto_RISH servers for the FAI observation data in the NetCDF format 
  taken by the equatorial atmosphere radar (EAR) and loads data into
  tplot format.

SYNTAX:
 iug_load_ear_iono_fr_nc, parameter=parameter, downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS: 
  PARAMETER = first parameter name of EAR FAI obervation data.  
          For example, iug_load_ear_iono_fr_nc, parameter = 'fb1p16a'.
          The default is 'all', i.e., load all available parameters.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE (In): [1,...,5], Get more detailed (higher number) command line output.
                
DATA AVAILABILITY:
  Please check the following homepage of the time schedule of field-aligned irregularity (FAI) observation 
  before you analyze the FAI data using this software. 
  http://www.rish.kyoto-u.ac.jp/ear/data-fai/index.html#data

CODE:
 A. Shinbori, 19/09/2010.

MODIFICATIONS:
 A. Shinbori, 24/03/2011.
 A. Shinbori, 09/07/2011.
 A. Shinbori, 01/12/2011.
 A. Shinbori, 31/01/2012.
 A. Shinbori, 17/12/2012.
 A. Shinbori, 18/08/2013.
 A. Shinbori, 24/01/2014.
 A. Shinbori, 08/08/2017.
 A. Shinbori, 30/11/2017.
 
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_ear_iono_fr_nc.pro)


IUG_LOAD_EAR_IONO_FR_TXT

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_ear_iono_fr_txt

PURPOSE:
  Queries the Kyoto_RISH servers for the FAI observation data in the CSV format 
  taken by the equatorial atmosphere radar (EAR) and loads data into
  tplot format.

SYNTAX:
 iug_load_ear_iono_fr_txt, parameter1=parameter1, parameter2=parameter2 $
                           downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS:
  PARAMETER1 = first parameter name of EAR FAI obervation data.  
          For example, iug_load_ear_iono_fr_txt, parameter1 = 'fb1p16a'.
          The default is 'all', i.e., load all available parameters.
  PARAMETER2 = second parameter name of EAR FAI obervation data.  
          For example, iug_load_ear_iono_fr_txt, parameter2 = 'dpl1'.
          The default is 'all', i.e., load all available parameters.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE (In): [1,...,5], Get more detailed (higher number) command line output.
  
DATA AVAILABILITY:
  Please check the following homepage of the time schedule of field-aligned irregularity (FAI) observation 
  before you analyze the FAI data using this software. 
  http://www.rish.kyoto-u.ac.jp/ear/data-fai/index.html#data

CODE:
 A. Shinbori, 19/09/2010.

MODIFICATIONS:
 A. Shinbori, 24/03/2011.
 A. Shinbori, 06/10/2011.
 A. Shinbori, 31/01/2012.
 A. Shinbori, 17/12/2012.
 A. Shinbori, 01/08/2013.
 A. Shinbori, 18/08/2013.
 A. Shinbori, 24/01/2014.
 A. Shinbori, 08/08/2017.
 A. Shinbori, 30/11/2017.
   
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_ear_iono_fr_txt.pro)


IUG_LOAD_EAR_IONO_VR_NC

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_ear_iono_vr_nc

PURPOSE:
  Queries the Kyoto_RISH servers for the FAI observation data in the NetCDF format 
  taken by the equatorial atmosphere radar (EAR) and loads data into
  tplot format.

SYNTAX:
 iug_load_ear_iono_vr_nc, parameter=parameter, $
                          downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS:
  PARAMETERS = first parameter name of EAR FAI obervation data.  
          For example, iug_load_ear_iono_vr_nc, parameter = 'vb3p4a'.
          The default is 'all', i.e., load all available parameters.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE (In): [1,...,5], Get more detailed (higher number) command line output.
  
DATA AVAILABILITY:
  Please check the following homepage of the time schedule of field-aligned irregularity (FAI) observation 
  before you analyze the FAI data using this software. 
  http://www.rish.kyoto-u.ac.jp/ear/data-fai/index.html#data

CODE:
 A. Shinbori, 19/09/2010.

MODIFICATIONS:
 A. Shinbori, 24/03/2011.
 A. Shinbori, 09/07/2011.
 A. Shinbori, 31/01/2012.
 A. Shinbori, 17/12/2012.
 A. Shinbori, 24/01/2014.
 A. Shinbori, 08/08/2017.
 A. Shinbori, 29/11/2017.
  
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_ear_iono_vr_nc.pro)


IUG_LOAD_EAR_IONO_VR_TXT

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_ear_iono_vr_txt

PURPOSE:
  Queries the Kyoto_RISH servers for the FAI observation data in the CSV format 
  taken by the equatorial atmosphere radar (EAR) and loads data into
  tplot format.

SYNTAX:
 iug_load_ear_iono_vr_txt, parameter1=parameter1, parameter2=parameter2 $
                          downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS:
  PARAMETER1 = first parameter name of EAR FAI obervation data.  
          For example, iug_load_ear_iono_vr_txt, parameter1 = 'vb3p4a'.
          The default is 'all', i.e., load all available parameters.
  PARAMETER2 = second parameter name of EAR FAI obervation data.  
          For example, iug_load_ear_iono_vr_txt, parameter2 = 'dpl1'.
          The default is 'all', i.e., load all available parameters.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE (In): [1,...,5], Get more detailed (higher number) command line output.
  
DATA AVAILABILITY:
  Please check the following homepage of the time schedule of field-aligned irregularity (FAI) observation 
  before you analyze the FAI data using this software. 
  http://www.rish.kyoto-u.ac.jp/ear/data-fai/index.html#data

CODE:
 A. Shinbori, 19/09/2010.

MODIFICATIONS:
 A. Shinbori, 24/03/2011.
 A. Shinbori, 06/10/2011.
 A. Shinbori, 31/01/2012.
 A. Shinbori, 17/12/2012.
 A. Shinbori, 01/08/2013.
 A. Shinbori, 18/08/2013.
 A. Shinbori, 24/01/2014.
 A. Shinbori, 08/08/2017.
 A. Shinbori, 29/11/2017.
  
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_ear_iono_vr_txt.pro)


IUG_LOAD_EAR_TROP_NC

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_ear_trop_nc

PURPOSE:
  Queries the Kyoto_RISH servers for the standard observation data of troposphere and stratsoohere
  in the netCDF format taken by the equatorial atmosphere radar (EAR) and loads data into
  tplot format.

SYNTAX:
 iug_load_ear_trop_nc, downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS:
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE (In): [1,...,5], Get more detailed (higher number) command line output.
  
CODE:
 A. Shinbori, 19/09/2010.

MODIFICATIONS:
 A. Shinbori, 24/03/2011.
 A. Shinbori, 13/11/2011.
 A. Shinbori, 31/01/2012.
 A. Shinbori, 18/12/2012.
 A. Shinbori, 24/01/2014.
 A. Shinbori, 08/08/2017.
 A. Shinbori, 30/11/2017.
  
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_ear_trop_nc.pro)


IUG_LOAD_EAR_TROP_TXT

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_ear_trop_txt

PURPOSE:
  Queries the Kyoto_RISH servers for the standard observation data of troposphere and stratsoohere
  in the CSV format taken by the equatorial atmosphere radar (EAR)and loads data into
  tplot format.

SYNTAX:
 iug_load_ear_trop_txt, parameter=parameter, $
                        downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS: 
  PARAMETER = parameter name of EAR troposphere standard obervation data.  
          For example, iug_load_ear_trop_txt, parameter = 'uwnd'.
          The default is 'all', i.e., load all available parameters.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE (In): [1,...,5], Get more detailed (higher number) command line output.
  
CODE:
 A. Shinbori, 19/09/2010.

MODIFICATIONS:
 A. Shinbori, 24/03/2011.
 A. Shinbori, 13/11/2011.
 A. Shinbori, 26/12/2011.
 A. Shinbori, 31/01/2011.
 A. Shinbori, 18/12/2011.
 A. Shinbori, 24/01/2014.
 A. Shinbori, 08/08/2017.
 A. Shinbori, 30/11/2017.
   
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_ear_trop_txt.pro)


IUG_LOAD_EISCAT

[Previous Routine] [Next Routine] [List of Routines]
 PROCEDURE: IUG_LOAD_EISCAT
   iug_load_eiscat, site=site, $
                    ydatatype=ydatatype, $
                    get_support_data=get_support_data, $
                    trange=trange, $
                    verbose=verbose, $
                    downloadonly=downloadonly, $
                    no_download=no_download

 PURPOSE:
   loads the EISCAT radar data.

 KEYWORDS:
   site  = Combination of observatory and antenna, example, 
           iug_load_eiscat, site='esr_42m',
           the default is 'all', i.e., load all available sites.
           Available sites: 'tro_uhf', 'tro_vhf', 'esr_32m', 'esr_42m'.
           This can be an array of strings, e.g., ['esr_32m', 'esr_42m']
           or a single string delimited by spaces, e.g., 'esr_32m esr_42m'.
   ydatatype = data type of y-axis. Default is 'alt', i.e., altitude.
   trange = (Optional) Time range of interest  (2 element array).
   /get_support_data : turn this on to load the supporting data.
   /verbose: set to output some useful info
   /downloadonly: if set, then only download the data, do not load it 
           into variables.
   /no_download: use only files which are online locally.

 EXAMPLE:
   iug_load_eiscat, site='esr_42m', $
                 trange=['2011-2-1/00:00:00','2011-2-3/00:00:00']

   For more information, see http://www.iugonet.org/en/ 
                         and http://polaris.nipr.ac.jp/~eiscat/eiscatdata/

 Written by: Y.-M. Tanaka, July 25, 2011 (ytanaka at nipr.ac.jp)
 Modified by: Y.-M. Tanaka, August 24, 2011
   Separated "print_str_maxlet" to another file. 
 Modified by: Y.-M. Tanaka, December 1, 2011
   to load data with various int_times separately to different tplot
   vars.
 Modified by: Y.-M. Tanaka, June 6, 2012
   Integragted all pulse_code and integration_time data for one day 
   into a CDF file
 Modified by: Y.-M. Tanaka, August 16, 2013
   Added range data to CDF files. 

(See projects/iugonet/load/iug_load_eiscat.pro)


IUG_LOAD_EISCAT_VIEF

[Previous Routine] [Next Routine] [List of Routines]
 PROCEDURE: IUG_LOAD_EISCAT_VIEF
   iug_load_eiscat_vief, site=site, $
                         get_support_data=get_support_data, $
                         trange=trange, $
                         verbose=verbose, $
                         downloadonly=downloadonly, $
                         no_download=no_download

 PURPOSE:
   loads the EISCAT vector Vi and E field data.

 KEYWORDS:
   site  = site code, example, 
           iug_load_eiscat_vief, site='kst',
           the default is 'all', i.e., load all available sites.
           Available sites: 'kst' (kst means Kiruna, Sodankyla, Tromso.)
   trange = (Optional) Time range of interest  (2 element array).
   /get_support_data : turn this on to load the supporting data.
   /verbose: set to output some useful info
   /downloadonly: if set, then only download the data, do not load it 
           into variables.
   /no_download: use only files which are online locally.

 OUTPUT
   Vi and E vectors have 3 components, i.e.,
   Vi = [Ve, Vn, Vu] and E = [Ee, En, Eu], where
   [e, n, u] corresponds to [eastward, n:northward, u:upward].

 EXAMPLE:
   iug_load_eiscat_vief, site='kst', $
                 trange=['2011-2-1/00:00:00','2011-2-3/00:00:00']

   For more information, see http://www.iugonet.org/en/ 
                         and http://polaris.nipr.ac.jp/~eiscat/eiscatdata/

 Written by: Y.-M. Tanaka, August 16, 2013 (ytanaka at nipr.ac.jp)

(See projects/iugonet/load/iug_load_eiscat_vief.pro)


IUG_LOAD_GMAG_ISEE_FLUXGATE

[Previous Routine] [Next Routine] [List of Routines]
 PROCEDURE: iug_load_gmag_isee_fluxgate
   To load the ISEE fluxgate geomagnetic data from the ISEE ERG-SC site 

 NOTE: This procedure is a simple alias to "erg_load_gmag_isee_fluxgate" 
   and calls the original one by just providing the same 
   arguments/keywords given.
   Some load procedures for the ground-based observational data 
   in the  ERG mission, named "erg_load_???", can be also called  
   by "iug_load_???", because these data are related to the both 
   ERG and IUGONET projects.
   For more information, see http://www.iugonet.org/ 
                         and https://ergsc.isee.nagoya-u.ac.jp/index.shtml.en
   See the rules of the road.
   For more information, see http://stdb2.stelab.nagoya-u.ac.jp/magne/
   and http://www1.osakac.ac.jp/crux/ (for mdm and tew).

 KEYWORDS:
   site  = Observatory name, example, iug_load_gmag_isee_fluxgate, site='msr',
           the default is 'all', i.e., load all available stations.
           This can be an array of strings, e.g., ['msr', 'kag']
           or a single string delimited by spaces, e.g., 'msr kag'.
           Sites for 1 sec data:  
              msr rik kag ktb
           Sites for 1 min/h data:
              msr rik kag ktb mdm tew
   datatype = Time resolution. '1sec' for 1 sec', '1min' for 1 min, and '1h' for 1 h.
              The default is 'all'.  If you need two of them, set to 'all'.
   /downloadonly, if set, then only download the data, do not load it into variables.
   /no_server, use only files which are online locally.
   /no_download, use only files which are online locally. (Identical to no_server keyword.)
   trange = (Optional) Time range of interest  (2 element array).
   /timeclip, if set, then data are clipped to the time range set by timespan

 EXAMPLE:
   iug_load_gmag_isee_fluxgate, site='msr kag', datatype='1min', $
       trange=['2003-11-20/00:00:00','2003-11-21/00:00:00']

 Written by: Y.-M Tanaka, Feb. 5, 2014 (ytanaka at nipr.ac.jp)

(See projects/iugonet/load/iug_load_gmag_isee_fluxgate.pro)


IUG_LOAD_GMAG_ISEE_INDUCTION

[Previous Routine] [Next Routine] [List of Routines]
 PROCEDURE: iug_load_gmag_isee_induction

 PURPOSE:
   To load ISEE induction magnetometer data from the ISEE ERG-SC site 

 NOTE: 
   This procedure is a simple alias to "erg_load_gmag_isee_induction"
   and calls the original one by just providing the same
   arguments/keywords given.
   Some load procedures for the ground-based observational data
   in the  ERG mission, named "erg_load_???", can be also called
   by "iug_load_???", because these data are related to the both
   ERG and IUGONET projects.
   For more information, see http://www.iugonet.org/
                         and https://ergsc.isee.nagoya-u.ac.jp/index.shtml.en
   See the rules of the road.
   For more information, see http://stdb2.stelab.nagoya-u.ac.jp/magne/

 KEYWORDS:
   site  = Observatory name, example, iug_load_gmag_isee_induction, site='msr',
           the default is 'all', i.e., load all available stations.
           This can be an array of strings, e.g., ['msr', 'sta']
           or a single string delimited by spaces, e.g., 'msr sta'.
           Sites: ath mgd ptk msr sta
   /downloadonly, if set, then only download the data, do not load it into variables.
   /no_server, use only files which are online locally.
   /no_download, use only files which are online locally. (Identical to no_server keyword.)
   trange = (Optional) Time range of interest  (2 element array).
   frequency_dependent = get frequecy-dependent sensitivity and phase difference
            (frequency [Hz], sensitivity (H,D,Z) [V/nT], and phase_difference (H,D,Z) [deg])
   /time_pulse, get time pulse

 EXAMPLE:
   iug_load_gmag_isee_induction, site='msr sta', $
         trange=['2008-02-28/00:00:00','2008-02-28/02:00:00']

 Written by: Y.-M Tanaka, Apr 12, 2013 (ytanaka at nipr.ac.jp)

(See projects/iugonet/load/iug_load_gmag_isee_induction.pro)


IUG_LOAD_GMAG_MAGDAS_1SEC

[Previous Routine] [Next Routine] [List of Routines]
 PROCEDURE: iug_load_gmag_magdas_1sec

 PURPOSE:
   To load the MAGDAS geomagnetic data from the STEL ERG-SC site 

 NOTE: This procedure is a simple alias to "erg_load_gmag_magdas_1sec" 
   and calls the original one by just providing the same 
   arguments/keywords given.
   Some load procedures for the ground-based observational data 
   in the  ERG mission, named "erg_load_???", can be also called  
   by "iug_load_???", because these data are related to the both 
   ERG and IUGONET projects.
   For more information, see http://www.iugonet.org/en/ 
                         and http://gemsissc.stelab.nagoya-u.ac.jp/erg/
   See the rules of the road.
   For more information, see http://magdas.serc.kyushu-u.ac.jp/

 KEYWORDS:
   site  = Observatory name, example, iug_load_magdas_1sec, site='asb',
           the default is 'all', i.e., load all available stations.
           This can be an array of strings, e.g., ['asb', 'onw']
           or a single string delimited by spaces, e.g., 'asb onw'.
           Sites for 1 sec data:  
              asb ...
           Sites for 1 min/h data:
              ...
   datatype = Time resolution. '1sec' for 1 sec', '1min' for 1 min, and '1h' for 1 h.
              The default is 'all'.  If you need two of them, set to 'all'.
   /downloadonly, if set, then only download the data, do not load it into variables.
   /no_server, use only files which are online locally.
   /no_download, use only files which are online locally. (Identical to no_server keyword.)
   trange = (Optional) Time range of interest  (2 element array).

 EXAMPLE:
   iug_load_gmag_magdas_1sec, site='asb onw', datatype='1sec', $
                        trange=['2003-11-20/00:00:00','2003-11-21/00:00:00']

 Written by: Y.-M Tanaka, Feb. 5, 2014 (ytanaka at nipr.ac.jp)

(See projects/iugonet/load/iug_load_gmag_magdas_1sec.pro)


IUG_LOAD_GMAG_MM210

[Previous Routine] [Next Routine] [List of Routines]
 PROCEDURE: iug_load_gmag_mm210
   to load the 210 MM geomagnetic data from the STEL ERG-SC site 

 NOTE: This procedure is a simple alias to "erg_load_gmag_mm210" 
   and calls the original one by just providing the same 
   arguments/keywords given.
   Some load procedures for the ground-based observational data 
   in the  ERG mission, named "erg_load_???", can be also called  
   by "iug_load_???", because these data are related to the both 
   ERG and IUGONET projects.
   For more information, see http://www.iugonet.org/en/ 
                         and http://gemsissc.stelab.nagoya-u.ac.jp/erg/
   See the rules of the road.
   For more information, see http://stdb2.stelab.nagoya-u.ac.jp/mm210/

 KEYWORDS:
   site  = Observatory name, example, iug_load_gmag_mm210, site='rik',
           the default is 'all', i.e., load all available stations.
           This can be an array of strings, e.g., ['rik', 'onw']
           or a single string delimited by spaces, e.g., 'rik onw'.
           Sites:  tik zgn yak irt ppi bji lnp mut ptn wtk
                   lmt kat ktn chd zyk mgd ptk msr rik onw
                   kag ymk cbi gua yap kor ktb bik wew daw
                   wep bsv dal can adl kot cst ewa asa mcq
   datatype = Time resolution. '1min' for 1 min, and '1h' for 1 h.
              The default is '1min'.
   /downloadonly, if set, then only download the data, do not load it into variables.
   trange = (Optional) Time range of interest  (2 element array).

 EXAMPLE:
   iug_load_gmag_mm210, site='rik onw', datatype='1min', $
                        trange=['2003-11-20/00:00:00','2003-11-21/00:00:00']

 Written by: Y.-M Tanaka, Apr 22, 2010 (ytanaka at nipr.ac.jp)

   $LastChangedBy: nikos $
   $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
   $LastChangedRevision: 24404 $
   $URL: svn+ssh://thmsvn@ambrosia.ssl.berkeley.edu/repos/spdsoft/tags/spedas_2_1/projects/iugonet/load/iug_load_gmag_mm210.pro $

(See projects/iugonet/load/iug_load_gmag_mm210.pro)


IUG_LOAD_GMAG_NIPR

[Previous Routine] [Next Routine] [List of Routines]
 PROCEDURE: IUG_LOAD_GMAG_NIPR
   iug_load_gmag_nipr, site = site, $
                     datatype=datatype, $
                     fproton=fproton, $
                     trange=trange, $
                     verbose=verbose, $
                     downloadonly=downloadonly, $
                     no_download=no_download

 PURPOSE:
   Loads the fluxgate magnetometer data obtained by NIPR.

 KEYWORDS:
   site  = Observatory name, example, iug_load_gmag_nipr, site='syo',
           the default is 'all', i.e., load all available stations.
           This can be an array of strings, e.g., ['syo', 'hus']
           or a single string delimited by spaces, e.g., 'syo hus'.
           Available sites: syo hus tjo aed isa
   datatype = Time resolution. Please notice that '1sec' means nearly
           1-sec time resolution. Even if datatype was set to '1sec', 
           the time resolution corresponds to
           2sec : syo(1981-1997), hus & tjo(1984-2001/08), isa(1984-1989), 
                  aed(1989-1999/10)
           1sec : syo(1997-present)
           0.5sec  : hus & tjo(2001/09-present), aed(2001/09-2008/08)
           At present, '1sec' is only available for datatype.
   fproton = (Optional) if set, then total geomagnetic field intensity 
           measured by proton magnetometer will be loaded.
           This option is now available only for syo before 1987/4/14.
   trange = (Optional) Time range of interest  (2 element array).
   /verbose: set to output some useful info
   /downloadonly: if set, then only download the data, do not load it 
           into variables.
   /no_download: use only files which are online locally.

 EXAMPLE:
   iug_load_gmag_nipr, site='syo', $
                 trange=['2003-11-20/00:00:00','2003-11-21/00:00:00']

 NOTE: This load procedure was developed by ERG-Science Center and
            IUGONET projects.
            ERG website      http://gemsissc.stelab.nagoya-u.ac.jp/erg/
            IUGONET website  http://www.iugonet.org/en/

 Written by H. Tadokoro, June 1, 2010
 The prototype of this procedure was written by Y. Miyashita, Apr 22, 2010, 
        ERG-Science Center, STEL, Nagoya Univ.
 Revised by Y.-M. Tanaka, February 17, 2011 (ytanaka at nipr.ac.jp)
 Added new keyword "fproton" by Y.-M. Tanaka, August 22, 2011
 Changed from the alias to the original load procudure, by Y.-M
         Tanaka, July 24, 2012.
 Added six automated magnetometer network stations to site, by by Y.-M
         Tanaka, December 25, 2013.

(See projects/iugonet/load/iug_load_gmag_nipr.pro)


IUG_LOAD_GMAG_NIPR_INDUCTION

[Previous Routine] [Next Routine] [List of Routines]
 PROCEDURE: iug_load_gmag_nipr_induction
   to load NIPR induction magnetometer data 

 KEYWORDS:
   site  = Observatory name, example, iug_load_gmag_nipr_induction, site='syo',
           the default is 'all', i.e., load all available stations.
           This can be an array of strings, e.g., ['syo', 'hus']
           or a single string delimited by spaces, e.g., 'syo hus'.
           Available sites: syo hus tjo aed isa
   /downloadonly, if set, then only download the data, do not load it into variables.
   /no_server, use only files which are online locally.
   /no_download, use only files which are online locally. (Identical to no_server keyword.)
   trange = (Optional) Time range of interest  (2 element array).
   frequency_dependent = get frequecy-dependent sensitivity
            (frequency [Hz] and sensitivity (H,D,Z) [Vp-p])

 EXAMPLE:
   iug_load_gmag_nipr_induction, site='syo', $
         trange=['2008-02-28/00:00:00','2008-02-28/02:00:00']

 Written by: Y. Miyashita, Jan 23, 2011
             ERG-Science Center, STEL, Nagoya Univ.
             erg-sc-core at st4a.stelab.nagoya-u.ac.jp
 Revised for NIPR data by Y. Sato, August 6, 2012 (sato.yuka at nipr.ac.jp)

(See projects/iugonet/load/iug_load_gmag_nipr_induction.pro)


IUG_LOAD_GMAG_STEL_FLUXGATE

[Previous Routine] [Next Routine] [List of Routines]
 PROCEDURE: iug_load_gmag_stel_fluxgate
   To load the ISEE fluxgate geomagnetic data from the ISEE ERG-SC site 

 NOTE: This procedure is a simple alias to "erg_load_gmag_isee_fluxgate" 
   and calls the original one by just providing the same 
   arguments/keywords given.
   Some load procedures for the ground-based observational data 
   in the  ERG mission, named "erg_load_???", can be also called  
   by "iug_load_???", because these data are related to the both 
   ERG and IUGONET projects.
   For more information, see http://www.iugonet.org/
                         and https://ergsc.isee.nagoya-u.ac.jp/index.shtml.en
   See the rules of the road.
   For more information, see http://stdb2.stelab.nagoya-u.ac.jp/magne/
   and http://www1.osakac.ac.jp/crux/ (for mdm and tew).

 KEYWORDS:
   site  = Observatory name, example, iug_load_gmag_stel_fluxgate, site='msr',
           the default is 'all', i.e., load all available stations.
           This can be an array of strings, e.g., ['msr', 'kag']
           or a single string delimited by spaces, e.g., 'msr kag'.
           Sites for 1 sec data:  
              msr rik kag ktb
           Sites for 1 min/h data:
              msr rik kag ktb mdm tew
   datatype = Time resolution. '1sec' for 1 sec', '1min' for 1 min, and '1h' for 1 h.
              The default is 'all'.  If you need two of them, set to 'all'.
   /downloadonly, if set, then only download the data, do not load it into variables.
   /no_server, use only files which are online locally.
   /no_download, use only files which are online locally. (Identical to no_server keyword.)
   trange = (Optional) Time range of interest  (2 element array).
   /timeclip, if set, then data are clipped to the time range set by timespan

 EXAMPLE:
   iug_load_gmag_stel_fluxgate, site='msr kag', datatype='1min', $
       trange=['2003-11-20/00:00:00','2003-11-21/00:00:00']

 Written by: Y.-M Tanaka, Feb. 5, 2014 (ytanaka at nipr.ac.jp)

(See projects/iugonet/load/iug_load_gmag_stel_fluxgate.pro)


IUG_LOAD_GMAG_STEL_INDUCTION

[Previous Routine] [Next Routine] [List of Routines]
 PROCEDURE: iug_load_gmag_stel_induction

 PURPOSE:
   To load ISEE induction magnetometer data from the ISEE ERG-SC site 

 NOTE: 
   This procedure is a simple alias to "erg_load_gmag_isee_induction"
   and calls the original one by just providing the same
   arguments/keywords given.
   Some load procedures for the ground-based observational data
   in the  ERG mission, named "erg_load_???", can be also called
   by "iug_load_???", because these data are related to the both
   ERG and IUGONET projects.
   For more information, see http://www.iugonet.org/
                         and https://ergsc.isee.nagoya-u.ac.jp/index.shtml.en
   See the rules of the road.
   For more information, see http://stdb2.stelab.nagoya-u.ac.jp/magne/

 KEYWORDS:
   site  = Observatory name, example, iug_load_gmag_stel_induction, site='msr',
           the default is 'all', i.e., load all available stations.
           This can be an array of strings, e.g., ['msr', 'sta']
           or a single string delimited by spaces, e.g., 'msr sta'.
           Sites: ath mgd ptk msr sta
   /downloadonly, if set, then only download the data, do not load it into variables.
   /no_server, use only files which are online locally.
   /no_download, use only files which are online locally. (Identical to no_server keyword.)
   trange = (Optional) Time range of interest  (2 element array).
   frequency_dependent = get frequecy-dependent sensitivity and phase difference
            (frequency [Hz], sensitivity (H,D,Z) [V/nT], and phase_difference (H,D,Z) [deg])
   /time_pulse, get time pulse

 EXAMPLE:
   iug_load_gmag_stel_induction, site='msr sta', $
         trange=['2008-02-28/00:00:00','2008-02-28/02:00:00']

 Written by: Y.-M Tanaka, Apr 12, 2013 (ytanaka at nipr.ac.jp)

(See projects/iugonet/load/iug_load_gmag_stel_induction.pro)


IUG_LOAD_GMAG_WDC

[Previous Routine] [Next Routine] [List of Routines]
PROCEDURE: IUG_LOAD_GMAG_WDC
 iug_load_gmag_wdc, site=site, $
                        trange=trange, $
                        resolution = resolution, $
                        level=level, $
                        verbose=verbose, $
                        addmaster=addmaster, $
                        downloadonly=downloadonly, $
                        no_download=no_download

PURPOSE:
  Loading geomag data in WDC format from WDC for Geomag Kyoto.

KEYWORDS:
  site  = Station ABB code or name of geomagnetic index.
          Ex1) iug_load_gmag_wdc, site = 'kak', ...
          Ex2) iug_load_gmag_wdc, site = ['dst', 'ae'], ...
          If you skip this option, AE Dst SYM/ASY and KAK data are retrieved.
  trange= (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full month, a full
          month's data is loaded.
  reolution = Time resolution of the data: 'min' or 'hour',
          default set to 'min' for AE index and geomag data.
  level = The level of the data, the default is 'final' for geomag data.
          For AE and Dst index, the default is ['final', 'provsional'].
  /verbose : set to output some useful info.
  /addmaster, if set, then times = [!values.d_nan, times]
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  no_download: use only files which are online locally.

EXAMPLE:
   timespan, '2007-01-22',1,/days
   iug_load_gmag_wdc, site = 'ae', resolution = 'min'

NOTES:
  At WDC Kyoto, data service for TDAS clients is beta testing.
  Please check the data catalog at http://wdc-data.iugonet.org/.

Written by:  Daiki Yoshida,  Aug 2010
Updated:  Yukinobu KOYAMA,  Oct 21, 2011
Last Updated Shun Imajo, Apr, 26, 2017

(See projects/iugonet/load/iug_load_gmag_wdc.pro)


IUG_LOAD_GMAG_WDC_CREATE_TPLOT_VARS

[Previous Routine] [Next Routine] [List of Routines]
Procedure: IUG_LOAD_GMAG_WDC_CREATE_TPLOT_VARS
 iug_load_gmag_wdc_create_tplot_vars, $
    sname = sname, $
    element = element, $
    resolution = res, $
    level = level, $
    tplot_name, $
    tplot_ytitle, tplot_ysubtitle, tplot_labels, $
    tplot_colors, tplot_dlimit

Notes:
  This procedure is called from load procedures for WDC format data,
  'iug_load_gmag_wdc*' provided by WDC Kyoto.

Written by:  Daiki Yoshida,  Aug 2010
Updated by:  Daiki Yoshida,  Sep 14, 2010
Updated by:  Daiki Yoshida,  Nov 12, 2010
Updated by:  Daiki Yoshida,  Jan 11, 2011
Updated by:  Yukinobu KOYAMA, Jan 21, 2012

(See projects/iugonet/load/iug_load_gmag_wdc_create_tplot_vars.pro)


IUG_LOAD_GMAG_WDC_QDDAYS

[Previous Routine] [Next Routine] [List of Routines]
FUNCTION: IUG_LOAD_GMAG_WDC_QDDAYS
 function iug_load_gmag_wdc_qddays, $
    trange=trange, $
    verbose=verbose, $
    downloadonly=downloadonly, $
    no_download=no_download

Purpose:
  Load date list of International 5/10 quietest days
  and International 5 disturbed days from WDC Kyoto.

Keywords:
  trange= (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full month, a full
          month's data is loaded
  /verbose : set to output some useful info
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  no_download: use only files which are online locally.

Example:
  THEMIS> timespan, '2001-1-1'
  THEMIS> qdays = iug_load_gmag_wdc_qddays(/no_download)
  THEMIS> help, qdays, /str
  QDAYS            INT       = Array[12, 12]
  THEMIS> print, qdays[0,*]
   2001       1       1      30       6       2      19      18      27       7       5       9

Notes:
  International Q-Days and D-Days are now derived by
  GeoForschungsZentrum (GFZ) Potsdam from Kp index.
  reference: http://wdc.kugi.kyoto-u.ac.jp/qddays/index.html

Written by:  Daiki Yoshida,  Aug 2010
Last Updated:  Daiki Yoshida,  Jan 11, 2010
 

(See projects/iugonet/load/iug_load_gmag_wdc_qddays.pro)


IUG_LOAD_GMAG_WDC_RELPATH

[Previous Routine] [Next Routine] [List of Routines]
Function: IUG_LOAD_GMAG_WDC_RELPATH
function iug_load_gmag_wdc_relpath, sname = sname, $
                                    trange = trange, $
                                    resolution = res, $
                                    level = level, $
                                    addmaster = addmaster, $
                                    _extra = _extra

Purpose:
  create relpath string from abb code

Notes:
  This procedure is called from load procedures for WDC format data,
  'iug_load_gmag_wdc*' provided by WDC Kyoto.


Written by:  Daiki Yoshida,  Aug 2010
Updated by:  Daiki Yoshida,  Sep 14, 2010

(See projects/iugonet/load/iug_load_gmag_wdc_relpath.pro)


IUG_LOAD_GMAG_WDC_RELPATH_TO_YEAR

[Previous Routine] [Next Routine] [List of Routines]
Function: IUG_LOAD_GMAG_WDC_RELPATH_TO_YEAR
function iug_load_gmag_wdc_relpath_to_year

Purpose:
  get year from data path string

Notes:
  This procedure is called from load procedures for WDC format data,
  'iug_load_gmag_wdc*' provided by WDC Kyoto.


Written by:  Daiki Yoshida,  Aug 2010
Updated by:  Daiki Yoshida,  Sep 14, 2010

(See projects/iugonet/load/iug_load_gmag_wdc_relpath_to_year.pro)


IUG_LOAD_GMAG_WDC_VSNAMES

[Previous Routine] [Next Routine] [List of Routines]
Function: IUG_LOAD_GMAG_WDC_VSNAMES
function iug_load_gmag_wdc_vsnames

Purpose:
  return valid site names for WDC data.

Notes:
  This procedure is called from load procedures for WDC format data,
  'iug_load_gmag_wdc*' provided by WDC Kyoto.
  WDC station list was provided at online data catalogue:
  http://wdc.kugi.kyoto-u.ac.jp/catmap/obs.html

Todo:
  1) Modify to read station-list file.
  2) Modify to get station-list files from cgi or mdb via file_transfer.


Written by:  Daiki Yoshida,  Sep 14, 2010

(See projects/iugonet/load/iug_load_gmag_wdc_vsnames.pro)


IUG_LOAD_GMAG_WDC_WDCHR

[Previous Routine] [Next Routine] [List of Routines]
Procedure: IUG_LOAD_GMAG_WDC_WDCHR
pro iug_load_gmag_wdc_wdchr, $
    site = site, $
    trange = trange, $
    verbose = verbose, $
    level = level, $
    addmaster = addmaster, $
    downloadonly = downloadonly, $
    no_download = no_download

Purpose:
  Loading geomag hourly mean data in WDC format from WDC for Geomag Kyoto.

Notes:
  This procedure is called from 'iug_load_gmag_wdc' provided by WDC Kyoto.
  References about Dst index and WDC hourly means record format:
  http://wdc.kugi.kyoto-u.ac.jp/hyplt/format/wdchrformat.html
  http://wdc.kugi.kyoto-u.ac.jp/dstae/format/dstformat.html

Written by:  Daiki Yoshida,  Aug 2010
Updated by:  Daiki Yoshida,  Sep 14, 2010
Updated by:  Daiki Yoshida,  Sep 28, 2010
Updated by:  Daiki Yoshida,  Nov 12, 2010
Updated by:  Daiki Yoshida,  Jan 11, 2011
Updated by:  Daiki Yoshida,  Mar 1, 2011

(See projects/iugonet/load/iug_load_gmag_wdc_wdchr.pro)


IUG_LOAD_GMAG_WDC_WDCMIN

[Previous Routine] [Next Routine] [List of Routines]
Procedure: IUG_LOAD_GMAG_WDC_WDCMIN
pro iug_load_gmag_wdc_wdcmin, $
    site = site, $
    trange = trange, $
    verbose = verbose, $
    level = level, $
    addmaster = addmaster, $
    downloadonly = downloadonly, $
    no_download = no_download

Purpose:
  Loading geomag 1-min record data in WDC format from WDC for Geomag Kyoto.

Notes:
  This procedure is called from 'iug_load_gmag_wdc' provided by WDC Kyoto.
  References about WDC 1-min record, ASY/SYM index and AE index record format:
  http://wdc.kugi.kyoto-u.ac.jp/mdplt/format/wdcformat.html
  http://wdc.kugi.kyoto-u.ac.jp/aeasy/format/asyformat.html
  http://wdc.kugi.kyoto-u.ac.jp/aeasy/format/aeformat.html

Written by:  Daiki Yoshida,  Aug 2010
Updated by:  Daiki Yoshida,  Sep 13, 2010
Updated by:  Daiki Yoshida,  Sep 28, 2010
Updated by:  Daiki Yoshida,  Nov 12, 2010
Updated by:  Daiki Yoshida,  Jan 11, 2011
Updated by:  Daiki Yoshida,  Mar 1, 2011
Updated by:  Yukinobu KOYAMA, Jan 21, 2011
Last Updated by:  Shun Imajo, Apr 26, 2017

(See projects/iugonet/load/iug_load_gmag_wdc_wdcmin.pro)


IUG_LOAD_GMAG_WDC_WP_INDEX

[Previous Routine] [Next Routine] [List of Routines]
PROCEDURE: iug_load_gmag_wdc_wp_index
  iug_load_gmag_wdc_wp_index,trange = trange, $
                      downloadonly = downloadonly, no_download = no_download, $
                      no_server = no_server
PURPOSE:
  This procedure get Wp index and the number of available station.

KEYWORDS:
  trange = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  /no_server, use only files which are online locally.
  /no_download, use only files which are online locally. (Identical to no_server keyword.)

EXAMPLE:
  iug_load_gmag_wdc_wp_index, trange = ['2007-01-22/00:00:00','2007-01-24/00:00:00']

CODE:
  Shun Imajo

CHANGELOG:
  21-March-2017, Imajo. first version.

ACKNOWLEDGMENT:


 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL: svn+ssh://thmsvn@ambrosia.ssl.berkeley.edu/repos/spdsoft/tags/spedas_2_1/projects/iugonet/load/iug_load_gmag_wdc_wp_index.pro $

(See projects/iugonet/load/iug_load_gmag_wdc_wp_index.pro)


IUG_LOAD_GPS_CHAMP_FSI_NC

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_gps_champ_fsi_nc

PURPOSE:
  Queries the Kyoto_RISH servers for the GPS-CHAMP radio occultation FSI data in the netCDF format
  provided by UCAR and loads data into tplot format.

SYNTAX:
 iug_load_gps_champ_fsi_nc, downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS:
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE (In): [1,...,5], Get more detailed (higher number) command line output.

CODE:
 A. Shinbori, 14/05/2016.

MODIFICATIONS:
 
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_gps_champ_fsi_nc.pro)


IUG_LOAD_GPS_COSMIC_FSI_NC

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_gps_cosmic_fsi_nc

PURPOSE:
  Queries the Kyoto_RISH servers for the GPS-COSMIC radio occultation FSI data in the netCDF format
  provided by UCAR and loads data into tplot format.

SYNTAX:
 iug_load_gps_cosmic_fsi_nc, downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS:
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE (In): [1,...,5], Get more detailed (higher number) command line output.

CODE:
 A. Shinbori, 14/05/2016.

MODIFICATIONS:
 
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_gps_cosmic_fsi_nc.pro)


IUG_LOAD_GPS_RO_RISH

[Previous Routine] [Next Routine] [List of Routines]

NAME:
iug_load_gps_ro_rish

PURPOSE:
  Queries the Kyoto_RISH servers for the GPS radio occultation FSI data in the netCDF format
  provided by UCAR and loads data into tplot format.

SYNTAX:
 iug_load_gps_ro_rish, site=site, downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS:
   SITE  = Observatory code name.  For example, iug_load_gps_ro_rish, site = 'champ'.
           The default is 'all', i.e., load all available stations.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE: [1,...,5], Get more detailed (higher number) command line output.

CODE:
 A. Shinbori, 14/05/2016.

MODIFICATIONS:
  
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_gps_ro_rish.pro)


IUG_LOAD_HF_TOHOKUU

[Previous Routine] [Next Routine] [List of Routines]
 PROCEDURE: iug_load_hf_tohokuu

 PURPOSE:
   To load the Jupiter's/solar wide band spectral data in HF-band 

 KEYWORDS:
   site  = Observatory name. Only 'iit' is allowed.
   parameter = The polarization of the radiowave.
               'RH' for right handed, and 'LH' for left handed.
   /downloadonly, if set, then only download the data, do not load it into variables.
   /no_download: use only files which are online locally.
   trange = (Optional) Time range of interest  (2 element array).

 EXAMPLE:
   iug_load_hf_tohokuU, parameter='RH', $
                        trange=['2004-01-09/22:00:00','2004-01-09/23:00:00']

 NOTE: See the rules of the road.
       For more information, see http://ariel.gp.tohoku.ac.jp/~jupiter/

 Written by: M.Yagi, Oct 2, 2012
             PPARC, Tohoku Univ.

   $LastChangedBy: nikos $
   $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
   $URL:

(See projects/iugonet/load/iug_load_hf_tohokuu.pro)


IUG_LOAD_IONOSONDE_RISH

[Previous Routine] [List of Routines]

NAME:
iug_load_ionosonde_rish

PURPOSE:
  Queries the RISH server for the ionogram data taken by the ionosonde 
  at Shigaraki and loads data into tplot format.

SYNTAX:
 iug_load_ionosonde_rish, site=site, fixed_freq = fixed_freq, $
                    downloadonly=downloadonly, trange=trange, verbose=verbose

KEYWOARDS: 
  SITE = Ionosonde observation site.  
         For example, iug_load_ionosonde_rish, site = 'sgk'.
         The default is 'all', i.e., load all available observation points.
  /fixed_freq, if set, then tplot variables for every fixed frequency (2-18 MHZ) are created.
  TRANGE = (Optional) Time range of interest  (2 element array), if
          this is not set, the default is to prompt the user. Note
          that if the input time range is not a full day, a full
          day's data is loaded.
  /downloadonly, if set, then only download the data, do not load it
                 into variables.
  VERBOSE: [1,...,5], Get more detailed (higher number) command line output.
  
CODE:
  A. Shinbori, 24/10/2012.
  
MODIFICATIONS:
  A. Shinbori, 12/11/2012.
  A. Shinbori, 18/12/2012.
  A. Shinbori, 09/01/2013.
  A. Shinbori, 18/02/2013.
  A. Shinbori, 24/01/2014.
  A. Shinbori, 08/08/2017.
  A. Shinbori, 30/11/2017.
     
ACKNOWLEDGEMENT:
 $LastChangedBy: nikos $
 $LastChangedDate: 2017-12-05 22:14:20 -0800 (Tue, 05 Dec 2017) $
 $LastChangedRevision: 24404 $
 $URL $

(See projects/iugonet/load/iug_load_ionosonde_rish.pro)