CDAWebConfigClass.php 846 Bytes
<?php

/**
 * @class CDAWebConfigClass
 * @brief Class that's contain all specific configuration of the CDAWeb Remote Data Center
 * @details
 */
 
class CDAWebConfigClass
{
	// CDAWeb REST Webservices
	public static $restUrl = "https://cdaweb.gsfc.nasa.gov/WS/cdasr/1";
	// Master CDFs URL
	public static $masterUrl = "https://cdaweb.gsfc.nasa.gov/pub/software/cdawlib/0MASTERS/";
	// SPASE  CDAWeb dataset descriptionlist
	public static $spaseRegistry = "https://heliophysicsdata.sci.gsfc.nasa.gov/queries/CDAWeb_SPASE.xql"; 	
	// https://cdaweb.gsfc.nasa.gov/registry/hdp/NumericalData.xql : limited list
	// http://spase-group.org/registry/explorer/ SMWG
	// Service to get SPACE description by SPASE ID (from $spaseRegistry)
	public static $spaseResolver = "http://www.spase-group.org/registry/resolver?";		
	public static $format = "CDF";
}