tools.c 9.55 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
/*******************************************************************************
 *   
 * 	tools.c - 2014/01/29
 *
 *  	Some specific functions requiered for AMDA converter
 *
 */ 
#include <stdio.h>
#include <string.h>

#include "tools.h"
#include "netcdf.h"
#include "cdf.h"

#ifndef TRUE
#define	TRUE	1
#define	FALSE	(! TRUE)
#endif

#define	VERSION_MIN	"3.4.0"

#define	START_TIME	"StartTime"
#define	STOP_TIME	"StopTime"
#define	TIME_VAR	"Time"

extern	CDFid	id;			/* CDF file identifier */

extern	int	ncid;			/* netCDF file identifier */

extern	long	nZvars;			/* Number of CDF zVariables */

/*******************************************************************************
 *
 * 	Check version of CDFlib greated or equal to 3.5 (needed for TT2000)
 */
int	check_version (void)
{
	long	version, release, increment;
	char	subincrement;
	int	status;
	char	str_version 	[30];

	status = CDFgetLibraryVersion (& version, & release, & increment, & subincrement);

	if (status < CDF_OK) {

		printf ("ERROR : unable to get CDFlib version\n");
		goto EXIT;
	}

	sprintf (str_version, "%d.%d.%d-%c", version, release, increment, subincrement);

	printf ("CDFlib version : %s\n", str_version);

	if (strcmp (str_version, VERSION_MIN) < 0) {

		printf ("ERROR : version %s < %s", str_version, VERSION_MIN);
	}

EXIT:	return status;
}
	


/*******************************************************************************
 *
 * 	Check if the given year is a leap one
 */
int	leap_year (int year)
{
	if ((year % 400) == 0) return TRUE;
	if ((year % 100) == 0) return FALSE;
	if ((year % 4)   == 0) return TRUE;
	return FALSE;
}


/*******************************************************************************
 *  
 *  	Convert an ISO 8601 date time to a DD Time string 
 */
char *	isotime_to_dd_time (char * input)
{
	static char	output [DD_TIME_STRING_LEN + 1];
	int		i, count, ddd;
	int		yy, mm, dd, h, m, s, ms;
	int		duration[] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };

	count = sscanf (input, "%d-%d-%dT%d:%d:%d.%3d", & yy, & mm, & dd, & h, & m, & s, &ms);

	if (count != 7) {
		printf ("Unexpected time format: %s\n", input);
		strcpy (output, "ERROR ");
		goto EXIT;
	}

	if (leap_year (yy)) duration [2] = 29;

	ddd = dd - 1;	/* Jan-01 : 0 => ddd in [0, 366[ */

	for (i = 1; i < mm; i++) ddd += duration [i];
	
	sprintf (output, "%04.4d%03.3d%02.2d%02.2d%02.2d%03.3d",
		yy, ddd, h, m, s, ms); 

EXIT:	return output;
}


/*******************************************************************************
 *
 * 	Parse variables metadata to define time variable ID :
 *
 * 	ID of a variable that appears in DEPEND_0 attribute of other variables
 */
char *	get_time_variable()
{
	long		timeVarId = -1;
	long		varId;
	CDFstatus	status;
	long		attrNum = CDFgetAttrNum (id, "DEPEND_0");
	char * 		timeVarName = NULL;

	if (attrNum < CDF_OK) {
		printf ("ERROR : no DEPEND_0 attribute\n");
                attrNum = CDFgetAttrNum (id, "Depend_0");
                if (attrNum < CDF_OK) {
                  printf ("ERROR : no Depend_0 attribute\n"); 
		// goto EXIT;
                  goto NO_DEPEND_0;
                }
	}

	for (varId = 0; varId < nZvars; varId++) {

		char		name [CDF_VAR_NAME_LEN256+1];
		long		dataType;
		long		numElems;
		char		buffer [CDF_VAR_NAME_LEN256+1];

		status = CDFgetzVarName (id, varId, name);

		if (status != CDF_OK)
			 cdf_status_handler (status, "Get var name");

		status = CDFinquireAttrzEntry (id, attrNum, varId, & dataType, & numElems);
 
		if (status == NO_SUCH_ENTRY) continue;

		if (status != CDF_OK) 
			cdf_status_handler (status, "Get DEPEND_0");
		else {
			if (dataType == CDF_CHAR || dataType == CDF_UCHAR) {

				status = CDFgetAttrzEntry (id, attrNum, varId, buffer);
				buffer [numElems] = 0;

				if (timeVarName == NULL) {
					timeVarName = strdup (buffer);
				}
				else if (strcmp (timeVarName, buffer) != 0) {

					printf ("WARNING : Search time variable conflict between %s and %s\n %s is taken as Time\n", 
						timeVarName, 
						buffer,
                                                timeVarName);
                // EB: select the first time variable         
				//	timeVarName = NULL;
				//	goto EXIT;
				}
			}
		}
	}

	if (timeVarName != NULL)
		printf ("Identified time variable : %s\n", timeVarName);	

EXIT:	return	timeVarName;
NO_DEPEND_0 : for (varId = 0; varId < nZvars; varId++) {

            char		name [CDF_VAR_NAME_LEN256+1];
            long		dataType;
            long		numElems;
            long        numDims, recVary;
            long		dimSizes [CDF_MAX_DIMS];
            long		dimVarys [CDF_MAX_DIMS];
            
            status = CDFgetzVarName (id, varId, name);

            if (status != CDF_OK)
                cdf_status_handler (status, "Get var name");
            
            status = CDFinquirezVar (id, varId, name, & dataType, & numElems,
                    & numDims, dimSizes, & recVary, dimVarys); 
            if (status != CDF_OK) cdf_status_handler (status);
            if ( dataType == CDF_EPOCH ) {
                timeVarName = strdup (name);
                printf ("Identified time variable : %s\n", timeVarName);
                break;
            }
        }
        
        return	timeVarName; 
}


/*******************************************************************************
 *  
 *  	Compute time coverage (DD_TIME strings) of a currently opened CDF file
 */
int	get_file_coverage (char * start_coverage, char * stop_coverage)
{
	int		error = -1;
	long		varId = -1;
	CDFstatus	status;
	char		varName [CDF_VAR_NAME_LEN256+1];
	long		dataType, numElems, numDims, recVary, numRecs;
	long		dimSizes [CDF_MAX_DIMS];
	long		dimVarys [CDF_MAX_DIMS];
	long		indices [CDF_MAX_DIMS];
	double		d_buffer [2];
	long long	l_buffer [2];
	char *		timeVar = NULL;
	char		str1 [EPOCH16_4_STRING_LEN+1];
	char		str2 [EPOCH16_4_STRING_LEN+1];

	strcpy (start_coverage, "");
	strcpy (stop_coverage, "");

	timeVar = get_time_variable ();

	if (timeVar == NULL) {
		printf ("Error : no time variable identified\n");
		goto EXIT;
	}

	varId = CDFvarNum (id, timeVar);

	if (varId == -1) {

		printf ("Error : no time variable identified\n");
		goto EXIT;
	}

	status = CDFinquirezVar (id, varId,
		varName,
		& dataType,
		& numElems,
		& numDims,
		dimSizes,
		& recVary,
		dimVarys);

	if (status != CDF_OK) cdf_status_handler (status, "CDF inquire zVar");

	if (recVary != VARY) {
		printf ("ERROR : variable %s not record varying\n", varName);
		goto EXIT;
	}

	if (numDims > 1) {
		printf ("Error : variable %s numDims > 1\n", varName);
		goto EXIT;
	}

	status = CDFgetzVarNumRecsWritten (id, varId, & numRecs);

	if (status != CDF_OK) cdf_status_handler (status, "CDF get zVar num recs");

	indices [0] = 0;
	indices [1] = 0;
	indices [3] = 0;

	switch (dataType) {

	case	CDF_EPOCH:
		
		status = CDFgetzVarData (id, varId, 0L, indices, d_buffer);

		encodeEPOCH4 (d_buffer [0], str1);

		status = CDFgetzVarData (id, varId, numRecs -1, indices, d_buffer);

		encodeEPOCH4 (d_buffer [0], str2);

		break;

	case	CDF_EPOCH16:

		status = CDFgetzVarData (id, varId, 0L, indices, d_buffer);

		encodeEPOCH16_4 (d_buffer, str1);

		status = CDFgetzVarData (id, varId, numRecs -1, indices, d_buffer);

		encodeEPOCH16_4 (d_buffer, str2);

		break;

	case	CDF_TIME_TT2000:

		status = CDFgetzVarData (id, varId, 0L, indices, l_buffer);

		encodeTT2000 (l_buffer [0], str1, 3);

		status = CDFgetzVarData (id, varId, numRecs -1, indices, l_buffer);

		encodeTT2000 (l_buffer [0], str2, 3);

		break;
	default:
		printf ("Error : variable %d is not a Time variable\n");
		goto EXIT;
	}

	strcpy (start_coverage, isotime_to_dd_time (str1));
	strcpy (stop_coverage,  isotime_to_dd_time (str2));
	error = 0;

EXIT:	return error;
}


#define	NDIM 	2

/*******************************************************************************
 *
 * 	Set file time coverage metadata 
 */
int	set_file_time_coverage ()
{
	int	error = 0;
	char	start_time [DD_TIME_STRING_LEN + 1];
	char	stop_time  [DD_TIME_STRING_LEN + 1];
	int	time_dim;
	int	start_id, stop_id;
	int	nc_status = NC_NOERR;
	size_t	start [NDIM];
	size_t	count [NDIM];

	error = get_file_coverage (start_time, stop_time);

	if (error != 0) goto EXIT;

	printf ("CDF time coverage : %s - %s\n", start_time, stop_time);

	nc_status = nc_def_dim (ncid, "TimeLength", DD_TIME_STRING_LEN, & time_dim);

	if (nc_status != NC_NOERR) goto EXIT;

	nc_status = nc_def_var (ncid, START_TIME, NC_CHAR, 1, & time_dim, & start_id);

	if (nc_status != NC_NOERR) goto EXIT;

	nc_status = nc_def_var (ncid, STOP_TIME, NC_CHAR, 1, & time_dim, & stop_id);

	if (nc_status != NC_NOERR) goto EXIT;

	start [0] = 0;
	count [0] = DD_TIME_STRING_LEN;

	nc_enddef (ncid);

	nc_status = nc_put_vara_text (ncid, start_id, start, count, start_time);

	if (nc_status != NC_NOERR) goto EXIT;

	nc_status = nc_put_vara_text (ncid, stop_id, start, count, stop_time);

	if (nc_status != NC_NOERR) goto EXIT;
	
EXIT:	printf ("NC status = %d\n", nc_status);
	return error;
}


/*******************************************************************************
 *
 * 	Rename time_variable to "Time" (necessary for AMDA DD server usage)
 */
int	rename_time_variable ()
{
	int		error = -1;
	char *		timeVar = NULL;
	int		varId;
	int		nc_status;

	timeVar = get_time_variable ();

	if (timeVar == NULL) {
		
		printf ("ERROR : no time variable identified\n");
		goto EXIT;
	}

	nc_status = nc_redef (ncid);

	if (nc_status != NC_NOERR) goto EXIT;

	nc_status = nc_inq_varid (ncid, timeVar, & varId);

	if (nc_status != NC_NOERR) goto EXIT;

	nc_status = nc_rename_var (ncid, varId, TIME_VAR);

	if (nc_status != NC_NOERR) goto EXIT;

	nc_status = nc_enddef (ncid);

	if (nc_status != NC_NOERR) goto EXIT;
	
	error = 0;

EXIT:	return error;

}