aboutsummaryrefslogtreecommitdiff
path: root/src/pj_transform.c
diff options
context:
space:
mode:
authorFrank Warmerdam <warmerdam@pobox.com>2009-01-06 02:11:57 +0000
committerFrank Warmerdam <warmerdam@pobox.com>2009-01-06 02:11:57 +0000
commit9491279ef52c951148e903f54dc21445cbcfa74c (patch)
treefad282e8795b47ac0e89961bfec4b8acfcc6bd93 /src/pj_transform.c
parenta4927c2bec24ea0d778205d66ff59bdcb4f9328a (diff)
downloadPROJ-9491279ef52c951148e903f54dc21445cbcfa74c.tar.gz
PROJ-9491279ef52c951148e903f54dc21445cbcfa74c.zip
removed CVS log messages since they are not maintained by subversion
git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@1504 4e78687f-474d-0410-85f9-8d5e500ac6b2
Diffstat (limited to 'src/pj_transform.c')
-rw-r--r--src/pj_transform.c96
1 files changed, 1 insertions, 95 deletions
diff --git a/src/pj_transform.c b/src/pj_transform.c
index 04fbd8e1..07b84f80 100644
--- a/src/pj_transform.c
+++ b/src/pj_transform.c
@@ -27,101 +27,7 @@
* 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$
- * Revision 1.24 2007/12/03 15:48:20 fwarmerdam
- * Improve WGS84 ES precision to avoid unnecesary transformation (#1531)
- *
- * Revision 1.23 2007/11/26 00:21:59 fwarmerdam
- * Modified PJ structure to hold a_orig, es_orig, ellipsoid definition before
- * adjustment for spherical projections.
- * Modified pj_datum_transform() to use the original ellipsoid parameters,
- * not the ones adjusted for spherical projections.
- * Modified pj_datum_transform() to not attempt any datum shift via
- * geocentric coordinates if the source *or* destination are raw ellipsoids
- * (ie. PJD_UNKNOWN). All per PROJ bug #1602, GDAL bug #2025.
- *
- * Revision 1.22 2007/09/11 20:32:25 fwarmerdam
- * mark the transient error array const
- *
- * Revision 1.21 2007/09/11 20:19:36 fwarmerdam
- * avoid use of static variables to make reentrant
- *
- * Revision 1.20 2006/10/12 21:04:39 fwarmerdam
- * Added experimental +lon_wrap argument to set a "center point" for
- * longitude wrapping of longitude values coming out of pj_transform().
- *
- * Revision 1.19 2006/05/10 19:23:47 fwarmerdam
- * Don't apply to_meter in pj_transform() if the value is HUGE_VAL.
- *
- * Revision 1.18 2006/05/01 21:13:54 fwarmerdam
- * make out of range errors in geodetic to geocentric a transient error
- *
- * Revision 1.17 2006/03/20 17:54:34 fwarmerdam
- * pj_geodetic_to_geocentric returns -14 now for lat out of range
- *
- * Revision 1.16 2006/02/17 02:26:14 fwarmerdam
- * ERANGE/EDOM treated as transient errors
- *
- * Revision 1.15 2005/12/04 14:47:37 fwarmerdam
- * use symbolic names as per patch from Martin Vermeer
- *
- * Revision 1.14 2004/11/05 06:05:11 fwarmerdam
- * Fixed pj_geocentric_to_geodetic() to not try and process HUGE_VAL values
- * (those that have failed some previous transform step). Related to bug:5B
- * http://bugzilla.remotesensing.org/show_bug.cgi?id=642
- *
- * Revision 1.13 2004/10/25 15:34:36 fwarmerdam
- * make names of geodetic funcs from geotrans unique
- *
- * Revision 1.12 2004/05/03 19:45:23 warmerda
- * Altered so that raw ellpses are treated as a essentially having a
- * +towgs84=0,0,0 specification so ellpisoid shifts are applied.
- * Fixed so that prime meridian shifts are applied if the coordinate system is
- * not lat/long (ie. if it is projected). This fixes:
- * http://bugzilla.remotesensing.org/show_bug.cgi?id=510
- *
- * Revision 1.11 2004/01/24 09:37:19 warmerda
- * pj_transform() will no longer return an error code if any of the points are
- * transformable. In this case the application is expected to check for
- * HUGE_VAL to identify failed points.
- * As part of the implementation, I added a list of pj_errno values that
- * are transient (ie per-point) rather than indicating global failure for the
- * coordinate system definition. We use this in deciding which pj_fwd and
- * pj_inv error codes are really fatal and should be reported.
- *
- * Revision 1.10 2003/08/21 02:09:06 warmerda
- * added a bunch of HUGE_VAL checking
- *
- * Revision 1.9 2003/03/26 16:52:30 warmerda
- * added check that an inverse transformation func exists
- *
- * Revision 1.8 2002/12/14 20:35:43 warmerda
- * implement units support for geocentric coordinates
- *
- * Revision 1.7 2002/12/14 20:14:35 warmerda
- * added geocentric support
- *
- * Revision 1.6 2002/12/09 16:01:02 warmerda
- * added prime meridian support
- *
- * Revision 1.5 2002/12/01 19:25:26 warmerda
- * applied fix for 7 param shift in pj_geocentric_from_wgs84, see bug 194
- *
- * Revision 1.4 2002/02/15 14:30:36 warmerda
- * provide default Z array if none passed in in pj_datum_transform()
- *
- * Revision 1.3 2001/04/04 21:13:21 warmerda
- * do arcsecond/radian and ppm datum parm transformation in pj_set_datum()
- *
- * Revision 1.2 2001/04/04 16:08:08 warmerda
- * rewrote 7 param datum shift to match EPSG:9606, now works with example
- *
- * Revision 1.1 2000/07/06 23:32:27 warmerda
- * New
- *
- */
+ *****************************************************************************/
#include <projects.h>
#include <string.h>