/*
Aviso de licencia
-----------------
El código fuente contenido en este fichero es propiedad
intelectual del Grupo de Sistemas de Información Avanzados
(IAAA), del Dpto. de Informática e Ingeniería de Sistemas
de la Universidad de Zaragoza (http://iaaa.cps.unizar.es)

Este código fuente se proporciona únicamente como
mecanismo para posibilitar la ejecución de la aplicación
que lo contiene, por razones técnicas, y se licencia
para ese uso exclusivamente. El hecho de estar leyendo
este aviso de licencia ya implica, por tanto, un acceso no
autorizado a este código.

Los dueños de la propiedad intelectual de este código
fuente prohiben expresamente cualquier uso del
mismo distinto al enunciado en el párrafo anterior,
incluyendo su lectura, análisis, copia a cualquier formato,
incluyendo papel, transmisión por cualquier medio, modificación
y su utilización (tal cual o tras modificarlo) en aplicaciones
distintas a aquella para la que el código ha sido licenciado.
*/

/* VERSION */
/* 1.0.9 */

/* URL WCTS */
WCTS_URL = "http://www.idee.es/IDEE-WCTS/ogcwebservice";
WCTS_SERVICE = "WCTS";
WCTS_VERSION = "1.0.0";
WCTS_OUTPUT_FORMAT = "text/xml; gmlVersion=3.1.0";

/* Capabilities Filename */
capabilitiesFileName = "IDEE_WCTS_Capabilities.xml";

/* Blank spaces in timezone list box */
timeZoneSpaces = "13";

/* Redondeos de decimales */
UTM_DECIMALS = 2;
GEO_DECIMALS = 4;

/* Tamaños de las imagenes de titulos */
pointImageTitleWidth = "387";
pointImageTitleHeight = "20";
sourceImageTitleWidth = "397";
sourceImageTitleHeight = "30";

/* CRS prefix */
CRS_WCTS_PREFIX = "urn:ogc:def:crs:";
CRS_GML_PREFIX = "epsg:";

/* Source CRS Label */
sourceCRSLabel = new Array();
sourceCRSLabel[0] = "lon-lat, ED50";
sourceCRSLabel[1] = "lon-lat, ETRS89";
sourceCRSLabel[2] = "UTM, ED50";
sourceCRSLabel[3] = "UTM, ETRS89";

/* Source CRS Value */
sourceCRSValue = new Array();
sourceCRSValue[0] = "GEO_ED50";
sourceCRSValue[1] = "GEO_ETRS89";
sourceCRSValue[2] = "UTM_ED50";
sourceCRSValue[3] = "UTM_ETRS89";

/* Target CRS Label */
targetCRSLabel = new Array();
targetCRSLabel[0] = "lon-lat, ED50";
targetCRSLabel[1] = "lon-lat, ETRS89";
targetCRSLabel[2] = "UTM, ED50";
targetCRSLabel[3] = "UTM, ETRS89";

/* Target CRS Value */
targetCRSValue = new Array();
targetCRSValue[0] = "GEO_ED50";
targetCRSValue[1] = "GEO_ETRS89";
targetCRSValue[2] = "UTM_ED50";
targetCRSValue[3] = "UTM_ETRS89";

/* CHARSET */
WCTS_RESPONSE_CHARSET = "iso-8859-1";
GML_REQUEST_CHARSET = "utf-8";
