GetGranules.c 2.8 KB
 
/** @file  GetGranules.c
*   @brief Stand-alone executable <br> Returns granules for given VI in DDBase <br>
*          
*  @details GetGranules(string *)  <br>
*  @arg \c argv[1] Full name of *_times.nc  
*             
*/


#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <math.h>
#include <netcdf.h>
#include <DD.h>


/*---------------- NC ERROR --------------------------------------*/
void nc_handle_error(int status)
{
  fprintf(stderr, "%s\n", nc_strerror(status));
  exit(1);
}

/* ----------------------- MAIN ------------------------------------*/
int main(int argc, char *argv[])
{    
	int status;
	
	if (argc < 2){
		fprintf(stderr,"Usage: GetGranules *_times.nc\n");
		exit(1);
	}

	// Open VI_times.nc      
	int DataID;
	if ((status = nc_open(argv[1], NC_NOWRITE, &DataID)) != NC_NOERR)
		nc_handle_error(status);

	int StartID;
	if ((status = nc_inq_varid(DataID, "StartTime", &StartID)) != NC_NOERR)
		nc_handle_error(status);

	int ndims;
	int Startdims[NC_MAX_VAR_DIMS];
	if ((status = nc_inq_var(DataID, StartID, 0, 0, &ndims, Startdims, NULL)) != NC_NOERR)
		nc_handle_error(status);

	int StopID;
	if ((status = nc_inq_varid(DataID, "StopTime", &StopID)) != NC_NOERR)
		nc_handle_error(status);

	int Stopdims[2];
	if ((status = nc_inq_var(DataID, StopID, NULL, NULL, NULL, Stopdims, NULL)) != NC_NOERR)
		nc_handle_error(status);

	int FileID;
	if ((status = nc_inq_varid(DataID, "FileName", &FileID)) != NC_NOERR)
		nc_handle_error(status);

	int Filedims[2];
	if ((status = nc_inq_var(DataID, FileID, NULL, NULL, NULL, Filedims, NULL)) != NC_NOERR)
		nc_handle_error(status);

	if ((Startdims[0] != Stopdims[0]) || (Startdims[0] != Filedims[0])) {
		fprintf(stderr, "Error in variables definition\n");
		exit(1);
	}

	size_t nb_records;
	if ((nc_inq_dimlen(DataID, Startdims[0], &nb_records)) != NC_NOERR)
		nc_handle_error(status);
	
	int i;
	char StartTime[TIMELENGTH];
	char StopTime[TIMELENGTH];
	char FileName[32];
	double StartTimestamp;
	double StopTimestamp;
	size_t count[2] = {1L,TIMELENGTH};
	size_t start[2] = {0L,0L};

	for (i = 0; i < nb_records; ++i) {
		count[1] = TIMELENGTH;
		start[0] = i;
		if ((status = nc_get_vara_text(DataID, StartID, start, count, StartTime)) != NC_NOERR)
			nc_handle_error(status);
		StartTimestamp = DD_Time2Double(StartTime);
		if ((status = nc_get_vara_text(DataID, StopID, start, count, StopTime)) != NC_NOERR)
			nc_handle_error(status);
		StopTimestamp = DD_Time2Double(StopTime);
		count[1] = 32;
		if ((status = nc_get_vara_text(DataID, FileID, start, count, FileName)) != NC_NOERR)
			nc_handle_error(status);
		printf("%f %f\n", StartTimestamp, StopTimestamp);
	}

	if ((status = nc_close(DataID)) != NC_NOERR) nc_handle_error(status);    
}