亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? epr_core.h

?? Insar圖像處理軟件
?? H
字號:
/* * $Id: epr_core.h,v 1.1.1.1 2003/03/05 17:36:43 hartmut Exp $ * * Copyright (C) 2002 by Brockmann Consult (info@brockmann-consult.de) * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation. This program is distributed in the hope it will * be useful, but WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. */#ifndef EPR_CORE_H_INCL#define EPR_CORE_H_INCL#ifdef __cplusplusextern "C" {#endif#include <stdio.h> /* just to get the ANSI-C type FILE */#include "epr_ptrarray.h"struct EPR_API;struct EPR_Parameter;typedef struct EPR_API EPR_SAPI;typedef struct EPR_Parameter EPR_SParameter;#define EPR_ENVISAT_PRODUCT_MERIS        "MER"#define EPR_ENVISAT_PRODUCT_ASAR         "ASA"#define EPR_ENVISAT_PRODUCT_AATSR        "ATS"#define EPR_LONGI_BAND_NAME               "longitude"#define EPR_AATSR_LINES_PER_TIE_PT        32#define EPR_MPH_SIZE                      1247#define EPR_SPH_SIZE                      11622#define EPR_DSD_SIZE                      280#define EPR_PRODUCT_MPH_SIZE              1048 /*??????*/#define EPR_PRODUCT_MAGIC_STR             "PRODUCT=\""#define EPR_PRODUCT_ID_OFFSET             9#define EPR_PRODUCT_TYPE_ID_STRLEN        10#define EPR_LENGTH_NUM_DSD_IDENTIFIER     9#define EPR_COUNT_SEPARATOR_ARRAY         ",*"#define EPR_IRRELEVANCE_SYMBOL            '*'#define EPR_FIELD_SEPARATOR_ARRAY         "|"#define EPR_HEADER_SEPARATOR_ARRAY        "=<>"#define EPR_HEADER_EXCEPTIONS_ARRAY       "eE"#define EPR_LONGI_ABS_MAX                 180#define EPR_LONGI_ABS_MIN                 -180#define EPR_LINE_MAX_LENGTH               2000#define EPR_BE_MAGIC_NUMBER  1162761801UL#define EPR_LE_MAGIC_NUMBER  1230392901UL#define EPR_LE_MAGIC_BYTE_0  'E'#define EPR_LE_MAGIC_BYTE_1  'N'#define EPR_LE_MAGIC_BYTE_2  'V'#define EPR_LE_MAGIC_BYTE_3  'I'#define EPR_ATS_NUM_PER_POINT_ACROSS_LOCAT      23#define EPR_ATS_NUM_PER_POINT_ACROSS_SOLAR      11#define EPR_ATS_LINE_LENGTH                     512#define EPR_ASAR_NUM_PER_POINT_ACROSS_LOCAT     11/** * The <code>EPR_API</code> structure is a container for all globally * required information related to to the ENVISAT product reader API. * * <p> A single global (but hidden) instance exists for this structure. */struct EPR_API{    /**     * The directory path to the record info database.     */    boolean init_flag;    /**     * A boolean value indicating whether this code run's on a     * little endian order machine or not.     * <p><code>1</code> stands for little endian (LE),      * <code>0</code> stands for big endian (BE).     */    int little_endian_order;    /**     * A unsigned long value indicating head length      */    ulong epr_head_size;    /**     * The directory path to the record info database.     */    /*char* db_dir_path;*/    /**      * The current log level for the ENVISAT API.      */    EPR_ELogLevel log_level;    /**     * The log handler (function pointer) for the ENVISAT API.      * Can be <code>NULL</code>.     */    EPR_FLogHandler log_handler;    /**      * The error code of the last error occured.      */    EPR_EErrCode last_err_code;    /**      * The error message of the last error occured.      */    char* last_err_message;    /**     * The error handler (function pointer) for the ENVISAT API.      * Can be <code>NULL</code>.     */    EPR_FErrHandler err_handler;};/** * The one and only ENVISAT API instance. */extern EPR_SAPI epr_api;/* * ====================================================================== *//** * Frees the memory allocated by the given product file identifier. * * <p> After calling this function the give product file identifier pointer  * gets invalid and should not be used anymore. *  * @param record the product file identifier to be released,  *        if <code>NULL</code> the function immediately returns */void epr_free_product_id(EPR_SProductId* product_id);/** * Logs a message with the given log level. * * <p> The function calls this API's log handler if  * it is not <code>NULL</code> and if the given log * level is greater than or equal to the global log level. *  * @param log_level the log level (or message type) for the mesage * @param log_message the mesage */void epr_log(EPR_ELogLevel log_level, const char* log_message);/** * Sets the given error code and the associated error message and * calls this API's error handler if it is not <code>NULL</code>. * * @param err_code the error code * @param err_message the error mesage */void epr_set_err(EPR_EErrCode err_code, const char* err_message);/** * Reads the full main product header (MPH) of the ENVISAT product file * given by the given product identifier. * * @param product_id the product identifier, must not be <code>NULL</code> * @return a record representing the MPH of the specified product file *         or <code>NULL</code> if an error occured. */EPR_SRecord* epr_read_mph(EPR_SProductId* product_id);/** * Reads the full specific product header (SPH) of the ENVISAT product file * given by the given product identifier. * * @param product_id the product identifier, must not be <code>NULL</code> * @return a record representing the MPH of the specified product file  *         or <code>NULL</code> if an error occured. */EPR_SRecord* epr_read_sph(EPR_SProductId* product_id);/** * Converts the given string into a data type identifier. * * @param str the string to be converted. * @return the data type identifier represented by the given string. *         If the string can not be converted the special value *         <code>e_tid_unknown</code> is returned. */EPR_EDataTypeId epr_str_to_data_type_id(const char* str);/* * Converts the given string into a field length. *  * The string can represent a single integer value or a sequence * of integer value and parameter references (names). Integers  * and value are expected to be separated by the asterisk * character ('*'). E.g. the string "3 * 4 * num_pixels_across" * is represents a valid field length as long as the parameter  * name 'num_pixels_across' is found in the given parameter table. * * @param str the string to be converted * @param param_table the parameter table containing the values *                    for the parameter references in the string * @return the field length computed from the given string or *         <code>(uint)-1</code> if an error occured. *//*uint epr_str_to_field_length(const char* str, EPR_SParamTable* param_table);*//** * Compares the two given names and returns <code>TRUE</code> if  * they are equal ignoring the case of each letter. * * <p> This function is used to compare names throughout the * ENVISAT product reader API. * * @param name1 the first name, must not be NULL * @param name2 the second name, must not be NULL * @return  <code>TRUE</code> if the names are equal,  *          <code>FALSE</code> otherwise */char* epr_build_db_file_istream_name(EPR_SProductId* product_id, char* what);FILE* epr_open_file(char* path_to_file);long epr_str_to_number(const char* str);uint epr_parse_value_count(EPR_SProductId* product_id, const char* str);uint epr_param_to_value(const char* str, EPR_SPtrArray* param_table);uint epr_get_data_type_size(EPR_EDataTypeId data_type_id);void epr_make_os_compatible_path(char* path);boolean epr_check_api_init_flag();/*void epr_make_image_header(EPR_SProductId* product_id, EPR_SDatasetId* dataset_id, EPR_SRecord* record);int epr_make_image(EPR_SProductId* product_id, EPR_SDatasetId* dataset_id, EPR_SRecord* record);*//** * Gets the element content to output FILE stream. *  * @param field the pointer at the field to get out. * @param istream the identifier of the output file. */void epr_output_element(const EPR_SField* field, uint field_index, uint element_index, FILE* istream);#ifdef __cplusplus} /* extern "C" */#endif#endif /* #ifndef EPR_CORE_H_INCL */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美老人xxxx18| 亚洲伊人伊色伊影伊综合网| 亚洲资源在线观看| 久久精品国产999大香线蕉| 99这里只有精品| 日韩精品自拍偷拍| 午夜精品福利一区二区蜜股av| 国产一区二区三区观看| 欧美日韩国产综合视频在线观看 | 自拍偷自拍亚洲精品播放| 日韩 欧美一区二区三区| 91麻豆精品秘密| 国产欧美日韩不卡免费| 久久成人免费电影| 欧美一区二区高清| 亚洲第一精品在线| 欧美性猛片xxxx免费看久爱| 国产精品区一区二区三| 国模无码大尺度一区二区三区| 欧美男人的天堂一二区| 亚洲电影第三页| 欧美亚洲禁片免费| 一区二区日韩电影| 91免费国产在线观看| 国产精品视频麻豆| 成人自拍视频在线观看| 国产欧美日韩综合| 成人视屏免费看| 国产精品久久久久永久免费观看 | 成人精品国产一区二区4080| 久久久91精品国产一区二区精品 | 国产午夜精品一区二区三区视频| 久久国产欧美日韩精品| 日韩一级片在线观看| 午夜欧美2019年伦理| 欧美日韩成人高清| 午夜av区久久| 日韩一区和二区| 激情综合网最新| 国产亚洲一区字幕| a级高清视频欧美日韩| 国产精品视频第一区| 91视频国产资源| 一区二区日韩电影| 91精品国产全国免费观看| 久久精品国产一区二区三| 日韩丝袜情趣美女图片| 国产一区二区三区四| 国产精品色噜噜| 91成人在线精品| 日韩二区三区四区| 久久久久久久久久久99999| 国产iv一区二区三区| 成人欧美一区二区三区黑人麻豆| 色悠悠久久综合| 视频在线观看91| 精品播放一区二区| 国产 欧美在线| 一区二区三区不卡在线观看| 欧美日韩国产a| 国产高清不卡二三区| 亚洲欧洲综合另类| 日韩欧美国产综合一区| jiyouzz国产精品久久| 亚洲成在人线在线播放| 2024国产精品| 91国产丝袜在线播放| 久久99精品网久久| 亚洲欧美日韩系列| 日韩欧美电影一区| 99久久久精品免费观看国产蜜| 亚洲高清一区二区三区| 久久亚洲影视婷婷| 日本高清免费不卡视频| 国内精品第一页| 亚洲午夜精品网| 国产精品欧美一区二区三区| 91精品国产综合久久久久久久久久| 国产成人免费av在线| 午夜精品久久久久久久99樱桃| 中文字幕不卡在线播放| 6080亚洲精品一区二区| 97久久精品人人做人人爽 | av在线不卡免费看| 久久精品免费观看| 亚洲成人自拍一区| 自拍偷拍欧美激情| 欧美激情一区二区三区全黄| 日韩亚洲欧美成人一区| 欧美日韩成人综合在线一区二区| 成人激情视频网站| 韩国av一区二区三区四区| 午夜日韩在线电影| 亚洲人成影院在线观看| 国产精品久久夜| 欧美国产精品中文字幕| 精品盗摄一区二区三区| 日韩美女主播在线视频一区二区三区 | 激情综合五月天| 老色鬼精品视频在线观看播放| 图片区小说区国产精品视频| 亚洲宅男天堂在线观看无病毒| 国产精品国产三级国产普通话99 | 欧美亚洲动漫精品| 色八戒一区二区三区| 色综合久久久久网| 色系网站成人免费| 色狠狠色噜噜噜综合网| 在线一区二区视频| 欧美日韩国产高清一区二区| 欧美色倩网站大全免费| 欧美日韩视频不卡| 欧美精品123区| 日韩免费视频线观看| 2017欧美狠狠色| 国产亚洲精品超碰| 中文字幕不卡在线播放| 中文字幕欧美一区| 一区二区三区免费看视频| 亚洲v日本v欧美v久久精品| 香蕉av福利精品导航| 蜜臀91精品一区二区三区| 九色|91porny| 国产91露脸合集magnet| 国产福利一区二区三区在线视频| 成人综合婷婷国产精品久久免费| 9l国产精品久久久久麻豆| 色综合中文字幕| 欧美精选午夜久久久乱码6080| 日韩一区二区精品葵司在线| 久久麻豆一区二区| 亚洲欧美成aⅴ人在线观看| 亚洲成人免费av| 毛片av中文字幕一区二区| 国产精品亚洲成人| 色爱区综合激月婷婷| 日韩视频在线永久播放| 国产精品嫩草影院com| 亚洲最新视频在线观看| 麻豆精品一区二区综合av| 国产91富婆露脸刺激对白| 在线区一区二视频| 精品精品国产高清a毛片牛牛| 中文字幕不卡一区| 午夜在线成人av| 国产精品一区二区在线观看不卡| 99r国产精品| 欧美变态口味重另类| 亚洲丝袜美腿综合| 国内精品伊人久久久久av影院| 色综合视频在线观看| 日韩欧美成人一区二区| 综合激情网...| 精品一区二区久久久| 色婷婷国产精品综合在线观看| 日韩一区二区免费在线电影| |精品福利一区二区三区| 日本不卡123| 一本久久a久久免费精品不卡| 日韩一二三四区| 夜夜嗨av一区二区三区网页| 国产精品18久久久| 91精品国产乱码久久蜜臀| 亚洲欧美偷拍另类a∨色屁股| 激情文学综合插| 91精品国产一区二区三区香蕉| 亚洲色图色小说| 欧美高清www午色夜在线视频| 午夜伦理一区二区| 欧美久久久久久蜜桃| 中文字幕不卡一区| 久久精品国产久精国产| 欧美性一二三区| 亚洲三级电影网站| 国内精品不卡在线| 日韩欧美一区中文| 亚洲一二三四区| 99视频超级精品| 久久久www成人免费无遮挡大片| 亚洲国产综合在线| 色综合久久88色综合天天6| 26uuu色噜噜精品一区二区| 婷婷六月综合亚洲| 欧美曰成人黄网| 亚洲精品久久7777| av网站免费线看精品| 欧美韩国日本不卡| 国产成人在线观看| 精品成人一区二区三区四区| 日本少妇一区二区| 69久久夜色精品国产69蝌蚪网| 亚洲在线中文字幕| 色婷婷国产精品| 亚洲自拍偷拍网站| 色婷婷久久一区二区三区麻豆| 综合久久久久综合| 色欧美88888久久久久久影院| 亚洲色图都市小说| 色综合久久中文综合久久牛| 国产精品高潮呻吟|