awips2/nativeLib/rary.ohd.pproc/inc/mpe_write_xmrg.h
root 7dbd17a5aa Initial revision of AWIPS2 11.9.0-7p5
Former-commit-id: 133dc97f67 [formerly a02aeb236c] [formerly 9f19e3f712] [formerly 133dc97f67 [formerly a02aeb236c] [formerly 9f19e3f712] [formerly 06a8b51d6d [formerly 9f19e3f712 [formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]]]
Former-commit-id: 06a8b51d6d
Former-commit-id: 9bb8decbcf [formerly 8e80217e59] [formerly 377dcd10b9 [formerly 3360eb6c5f]]
Former-commit-id: 377dcd10b9
Former-commit-id: e2ecdcfe33
2012-01-06 08:55:05 -06:00

58 lines
1.4 KiB
C

/*******************************************************************************
* FILENAME: mpe_write_xmrg.h
* DESCRIPTION: Write to an xmrg format file.
*
* ORIGINAL AUTHOR: Guoxian Zhou
* CREATION DATE: May 26, 2006
* ORGANIZATION: HSEB/OHD
* MACHINE: Linux
* MODIFICATION HISTORY:
* DATE PROGRAMMER DESCRIPTION/REASON
* May 26, 2006 Guoxian Zhou Original Coding
* Sep 2007 P Tilles changed MAX_VALUE to 32767
********************************************************************************
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "DbmsUtils.h"
#include "GeneralUtil.h"
#include "HourlyPP.h"
#include "HourlyPC.h"
#include "precip_total.h"
#include "time_defs.h"
#ifndef MPE_WRITE_XMRG_H
#define MPE_WRITE_XMRG_H
#define MAX_VALUE 32767
#define VERNUM 1.0
typedef struct
{
/* The HRAP x-coordinate. */
int hrap_x;
/* The HRAP y-coordinate. .*/
int hrap_y;
/* The number of columns.*/
int num_cols;
/* The number of rows.*/
int num_rows;
} geo_data_struct;
void writeXmrg( const geo_data_struct * pGeoData ,
const char * filename ,
const char * user ,
const time_t tRunTime ,
const char * proc_flag ,
const short * out_mosaic ,
size_t record_length,
long int * irc) ;
#endif /* #ifndef MPE_WRITE_XMRG_H */