ogr_srs_api.h

来自「在linux环境下」· C头文件 代码 · 共 586 行 · 第 1/2 页

H
586
字号
/****************************************************************************** * $Id: ogr_srs_api.h,v 1.34 2003/06/21 23:24:36 warmerda Exp $ * * Project:  OpenGIS Simple Features Reference Implementation * Purpose:  C API and constant declarations for OGR Spatial References. * Author:   Frank Warmerdam, warmerda@home.com * ****************************************************************************** * Copyright (c) 2000, Frank Warmerdam * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. ****************************************************************************** * * $Log: ogr_srs_api.h,v $ * Revision 1.34  2003/06/21 23:24:36  warmerda * added Set/Get TOWGS84 calls * * Revision 1.33  2003/06/19 17:10:26  warmerda * a couple fixes in last commit * * Revision 1.32  2003/06/18 18:24:17  warmerda * added projection specific set methods to C API * * Revision 1.31  2003/06/10 09:31:12  dron * Added OSRSetAngularUnits() and OSRGetAngularUnits(). * * Revision 1.30  2003/05/30 15:39:53  warmerda * Added override units capability for SetStatePlane() * * Revision 1.29  2003/03/21 22:15:11  warmerda * added C XML import/export entry points * * Revision 1.28  2003/03/12 14:29:34  warmerda * Rename OGRAxisOrientation and OGRDatumType values to avoid conflicts with * the real OGC definitions in applications such as Cadcorps. * * Revision 1.27  2003/02/25 04:53:38  warmerda * added OSRCopyGeogCSFrom * * Revision 1.26  2003/02/06 04:53:12  warmerda * added Fixup() method * * Revision 1.25  2003/01/08 18:14:28  warmerda * added FixupOrdering() * * Revision 1.24  2002/12/16 17:07:13  warmerda * added NormProjParm functions, and OSRGetPrimeMeridian * * Revision 1.23  2002/12/14 22:59:14  warmerda * added Krovak in ESRI compatible way * * Revision 1.22  2002/12/09 18:55:07  warmerda * moved DMS stuff to gdal/port * * Revision 1.21  2002/12/09 16:11:53  warmerda * added DMS translation * * Revision 1.20  2002/11/25 16:12:54  warmerda * added GetAuthorityCode/Name * * Revision 1.19  2002/09/26 18:13:25  warmerda * avoid double def * * Revision 1.18  2002/06/11 18:02:03  warmerda * add PROJ.4 normalization and EPSG support * * Revision 1.17  2001/10/11 19:27:12  warmerda * upgraded validation infrastructure * * Revision 1.16  2001/10/10 20:42:43  warmerda * added ESRI WKT morphing support * * Revision 1.15  2001/09/21 16:21:02  warmerda * added Clear(), and SetFromUserInput() methods * * Revision 1.14  2000/11/09 06:21:32  warmerda * added limited ESRI prj support * * Revision 1.13  2000/10/20 04:19:38  warmerda * added setstateplane * * Revision 1.12  2000/10/16 21:26:07  warmerda * added some level of LOCAL_CS support * * Revision 1.11  2000/09/01 20:58:01  warmerda * added CPL_DLL for entry points * * Revision 1.10  2000/08/30 20:06:14  warmerda * added projection method list functions * * Revision 1.9  2000/08/28 20:13:23  warmerda * added importFromProj4 * * Revision 1.8  2000/07/11 01:02:06  warmerda * added ExportToProj4() * * Revision 1.7  2000/07/09 20:48:02  warmerda * added exportToPrettyWkt * * Revision 1.6  2000/05/30 22:45:44  warmerda * added OSRCloneGeogCS() * * Revision 1.5  2000/04/26 18:25:56  warmerda * added missing CPL_DLL attributes * * Revision 1.4  2000/03/22 01:09:43  warmerda * added SetProjCS and SetWellKnownTextCS * * Revision 1.3  2000/03/20 23:33:51  warmerda * updated docs a bit * * Revision 1.2  2000/03/20 22:39:31  warmerda * Added C API. * * Revision 1.1  2000/03/16 19:04:14  warmerda * New * */#ifndef _OGR_SRS_API_H_INCLUDED#define _OGR_SRS_API_H_INCLUDED#include "ogr_core.h"CPL_C_START/** * \file ogr_srs_api.h *  * C spatial reference system services and defines. *  * See also: ogr_spatialref.h *//* -------------------------------------------------------------------- *//*      Axis orientations (corresponds to CS_AxisOrientationEnum).      *//* -------------------------------------------------------------------- */typedef enum {    OAO_Other=0,    OAO_North=1,    OAO_South=2,    OAO_East=3,    OAO_West=4,    OAO_Up=5,    OAO_Down=6} OGRAxisOrientation;    /* -------------------------------------------------------------------- *//*      Datum types (corresponds to CS_DatumType).                      *//* -------------------------------------------------------------------- */typedef enum {    ODT_HD_Min=1000,    ODT_HD_Other=1000,    ODT_HD_Classic=1001,    ODT_HD_Geocentric=1002,    ODT_HD_Max=1999,    ODT_VD_Min=2000,    ODT_VD_Other=2000,    ODT_VD_Orthometric=2001,    ODT_VD_Ellipsoidal=2002,    ODT_VD_AltitudeBarometric=2003,    ODT_VD_Normal=2004,    ODT_VD_GeoidModelDerived=2005,    ODT_VD_Depth=2006,    ODT_VD_Max=2999,    ODT_LD_Min=10000,    ODT_LD_Max=32767} OGRDatumType; /* ==================================================================== *//*      Some "standard" strings.                                        *//* ==================================================================== */#define SRS_PT_ALBERS_CONIC_EQUAL_AREA                                  \                                "Albers_Conic_Equal_Area"#define SRS_PT_AZIMUTHAL_EQUIDISTANT "Azimuthal_Equidistant"#define SRS_PT_CASSINI_SOLDNER  "Cassini_Soldner"#define SRS_PT_CYLINDRICAL_EQUAL_AREA "Cylindrical_Equal_Area"#define SRS_PT_ECKERT_IV        "Eckert_IV"#define SRS_PT_ECKERT_VI        "Eckert_VI"#define SRS_PT_EQUIDISTANT_CONIC "Equidistant_Conic"#define SRS_PT_EQUIRECTANGULAR  "Equirectangular"#define SRS_PT_GALL_STEREOGRAPHIC "Gall_Stereographic"#define SRS_PT_GNOMONIC         "Gnomonic"#define SRS_PT_HOTINE_OBLIQUE_MERCATOR                                  \                                "Hotine_Oblique_Mercator"#define SRS_PT_LABORDE_OBLIQUE_MERCATOR                                 \                                "Laborde_Oblique_Mercator"#define SRS_PT_LAMBERT_CONFORMAL_CONIC_1SP                              \                                "Lambert_Conformal_Conic_1SP"#define SRS_PT_LAMBERT_CONFORMAL_CONIC_2SP                              \                                "Lambert_Conformal_Conic_2SP"#define SRS_PT_LAMBERT_CONFORMAL_CONIC_2SP_BELGIUM                      \                                "Lambert_Conformal_Conic_2SP_Belgium)"#define SRS_PT_LAMBERT_AZIMUTHAL_EQUAL_AREA                     \                                "Lambert_Azimuthal_Equal_Area"#define SRS_PT_MERCATOR_1SP     "Mercator_1SP"#define SRS_PT_MERCATOR_2SP     "Mercator_2SP"#define SRS_PT_MILLER_CYLINDRICAL "Miller_Cylindrical"#define SRS_PT_MOLLWEIDE        "Mollweide"#define SRS_PT_NEW_ZEALAND_MAP_GRID                                     \                                "New_Zealand_Map_Grid"#define SRS_PT_OBLIQUE_STEREOGRAPHIC                                    \                                "Oblique_Stereographic"#define SRS_PT_ORTHOGRAPHIC     "Orthographic"#define SRS_PT_POLAR_STEREOGRAPHIC                                      \                                "Polar_Stereographic"#define SRS_PT_POLYCONIC        "Polyconic"#define SRS_PT_ROBINSON         "Robinson"#define SRS_PT_SINUSOIDAL       "Sinusoidal"#define SRS_PT_STEREOGRAPHIC    "Stereographic"#define SRS_PT_SWISS_OBLIQUE_CYLINDRICAL                                \                                "Swiss_Oblique_Cylindrical"#define SRS_PT_TRANSVERSE_MERCATOR                                      \                                "Transverse_Mercator"#define SRS_PT_TRANSVERSE_MERCATOR_SOUTH_ORIENTED                       \                                "Transverse_Mercator_South_Orientated"#define SRS_PT_TUNISIA_MINING_GRID                                      \                                "Tunisia_Mining_Grid"#define SRS_PT_VANDERGRINTEN    "VanDerGrinten"#define SRS_PT_KROVAK           "Krovak"                                #define SRS_PP_CENTRAL_MERIDIAN         "central_meridian"#define SRS_PP_SCALE_FACTOR             "scale_factor"#define SRS_PP_STANDARD_PARALLEL_1      "standard_parallel_1"#define SRS_PP_STANDARD_PARALLEL_2      "standard_parallel_2"#define SRS_PP_PSEUDO_STD_PARALLEL_1    "pseudo_standard_parallel_1"#define SRS_PP_LONGITUDE_OF_CENTER      "longitude_of_center"#define SRS_PP_LATITUDE_OF_CENTER       "latitude_of_center"#define SRS_PP_LONGITUDE_OF_ORIGIN      "longitude_of_origin"#define SRS_PP_LATITUDE_OF_ORIGIN       "latitude_of_origin"#define SRS_PP_FALSE_EASTING            "false_easting"#define SRS_PP_FALSE_NORTHING           "false_northing"#define SRS_PP_AZIMUTH                  "azimuth"#define SRS_PP_LONGITUDE_OF_POINT_1     "longitude_of_point_1"#define SRS_PP_LATITUDE_OF_POINT_1      "latitude_of_point_1"#define SRS_PP_LONGITUDE_OF_POINT_2     "longitude_of_point_2"#define SRS_PP_LATITUDE_OF_POINT_2      "latitude_of_point_2"#define SRS_PP_LONGITUDE_OF_POINT_3     "longitude_of_point_3"#define SRS_PP_LATITUDE_OF_POINT_3      "latitude_of_point_3"#define SRS_PP_RECTIFIED_GRID_ANGLE     "rectified_grid_angle"#define SRS_PP_LANDSAT_NUMBER           "landsat_number"#define SRS_PP_PATH_NUMBER              "path_number"#define SRS_PP_PERSPECTIVE_POINT_HEIGHT "perspective_point_height"#define SRS_PP_FIPSZONE                 "fipszone"#define SRS_PP_ZONE                     "zone"#define SRS_UL_METER            "Meter"#define SRS_UL_FOOT             "Foot (International)" /* or just "FOOT"? */#define SRS_UL_FOOT_CONV                    "0.3048"#define SRS_UL_US_FOOT          "U.S. Foot" /* or "US survey foot" */#define SRS_UL_US_FOOT_CONV                 "0.3048006"#define SRS_UL_NAUTICAL_MILE    "Nautical Mile"#define SRS_UL_NAUTICAL_MILE_CONV           "1852.0"#define SRS_UL_LINK             "Link"          /* Based on US Foot */#define SRS_UL_LINK_CONV                    "0.20116684023368047"#define SRS_UL_CHAIN            "Chain"         /* based on US Foot */#define SRS_UL_CHAIN_CONV                   "2.0116684023368047"#define SRS_UL_ROD              "Rod"           /* based on US Foot */#define SRS_UL_ROD_CONV                     "5.02921005842012"#define SRS_UA_DEGREE           "degree"#define SRS_UA_DEGREE_CONV                  "0.0174532925199433"#define SRS_UA_RADIAN           "radian"#define SRS_PM_GREENWICH        "Greenwich"#define SRS_DN_NAD27            "North_American_Datum_1927"#define SRS_DN_NAD83            "North_American_Datum_1983"#define SRS_DN_WGS84            "WGS_1984"#define SRS_WGS84_SEMIMAJOR     6378137.0                                #define SRS_WGS84_INVFLATTENING 298.257223563

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?