Changes between Version 8 and Version 9 of rfc20_srs_axes

Show
Ignore:
Timestamp:
01/10/08 14:04:32 (5 years ago)
Author:
warmerdam
Comment:

Add some additional methods and details.

Legend:

Unmodified
Added
Removed
Modified
  • rfc20_srs_axes

    v8 v9  
    5454}}} 
    5555 
     56Fetch information about one axis (iAxis is zero based). 
     57 
    5658{{{ 
    5759    OGRErr      SetAxes( const char *pszTargetKey,  
     
    6567    int         EPSGTreatsAsLatLong(); 
    6668}}} 
     69 
     70Returns true based on the EPSG code if EPSG would like this coordinate system to be treated as lat/long.  This is useful in contexts like WMS 1.3 where EPSG:4326 needs to be interpreted as lat/long due to the standard. 
     71 
     72{{{ 
     73       OGRErr      importFromEPSGA( int ); 
     74}}} 
     75 
     76This works like importFromEPSG() but will assign the ESPG defined AXIS definition. 
    6777 
    6878Note that OGRSpatialReference::!StripNodes( "AXIS" ); can be used to strip axis definitions where they are not desired. 
     
    8191 * importFromEPSG() will continue to *not* set AXIS values for GEOGCS coordinate systems.  
    8292 * importFromEPSG() will now set axis values for projected coordinate systems (at least in cases like Krovak where it is a non-default axis orientation).  
     93 * importFromEPSG() will be implemented by calling importFromEPSGA() and stripping off axis definitions from the geographic portion of the returned definition. 
     94 
     95=== !SetFromUserInput() === 
     96 
     97 * This method will have one new option which is a value prefixed by EPSGA: will be passed to importFromEPSGA() (similarly to EPSG:n being passed to importFromEPSG()). 
    8398 
    8499== OGRCoordinateTransformation ==