/*****************************************************************************\ This module is public domain software that was developed by the U.S. Naval Oceanographic Office. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \*****************************************************************************/ #ifndef _READ_SRTM_MASK_H_ #define _READ_SRTM_MASK_H_ #ifdef __cplusplus extern "C" { #endif #include "nvtypes.h" NV_INT32 read_srtm_mask_one_degree (NV_INT32 lat, NV_INT32 lon, NV_U_BYTE **array); NV_INT32 read_srtm_mask (NV_FLOAT64 lat, NV_FLOAT64 lon); void cleanup_srtm_mask (); #ifdef __cplusplus } #endif #endif