Click on the commit message for inspecting the diff
and how the code has been rewritten.
Command line:
svn log -r31996:1 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/referencing/operation/transform/AbstractMathTransform.java
Rev. | Date | Author | Message |
---|---|---|---|
31593 | 2008-09-25 | desruisseaux | Bug fixes: 1) wrong field set in metadata 2) missing conversion between float[] and double[] array. |
31567 | 2008-09-22 | desruisseaux | Fixed GEOT-2046. Patch submitted by Tara Athan. |
31547 | 2008-09-18 | desruisseaux | Anticipating GEO-143. |
31486 | 2008-09-09 | desruisseaux | Documentation adjustements (no code change). |
31000 | 2008-07-10 | desruisseaux | Avoid usage of 2 deprecated constructors from CRSFactory. Their replacement were tricky and required more sophesticated code in ReferencingFactoryContainer.toGeodetic3D. |
30760 | 2008-06-18 | desruisseaux | Upgrated from JSR-108 to JSR-275 (GEOT-1266). Some opportunist javadoc fixes and @Override annotations in the process. |
30641 | 2008-06-12 | acuster | Copyright headers: lib/referencing, this time with feeling (and the el in Toolkit) |
30639 | 2008-06-12 | acuster | Copyright headers: cleanup library/referencing |
30521 | 2008-06-05 | acuster | Copyright: Update referencing headers |
30313 | 2008-05-16 | desruisseaux | Changed my mind about Utilities.shallowEquals(Object,Object) and renamed it as equals, since a few tests show that the compiler always select the best overloaded flavor working on primitive types (except if an argument is a boolean and the other a different primitive type). Updated a few references. Fixed a few javadoc warnings by explicit declaration of parameter and return values. |
30258 | 2008-05-08 | acuster | Reshuffle the top level repo: drop uDig, move up trunk, tags, and branches. |
30257 | 2008-05-08 | acuster | Move trunk/gt/ directory contents up to trunk/ and drop gt |
29955 | 2008-04-17 | desruisseaux | Added a paranoiac check for CRS.transform(CoordinateOperation, ...) working on envelopes crossing axis extremums. Fixed a NoSuchElementException in MosaicImageReader when the requested region has no tiles. Fixed a NullPointerException in MosaicImageWriter when the allowed memory is smaller than the area of the smallest tile. |
29711 | 2008-03-25 | desruisseaux | In MapProjection, provide more information in the logged warning (especially the projection name) in order to compensate for the loss of stack trace. In subclasses, replaced "Math." occurences by a static import for readability (there is a lot of sin(x), cos(x), sqrt(x) etc. calls in those classes). Also replaced sqrt(x*x + y*y) by hypot(x,y) and (exp(x)-exp(-x))/2 by sinh(x) which are new functions in Java 5 (hopefully more accurate and/or faster). Applied some Java 5 language syntax (generic types and @Override annotation). |
28922 | 2008-01-24 | acuster | Bump the (at)since version to 2.5 since WKTParser was cut from 2.4 |
28846 | 2008-01-20 | desruisseaux | Covariant return type for inverse() method in MathTransform1D and MathTransform2D. Also javadoc fixes and Java 5 type safety. Changed ViewType to an enum and initial implementation of GridCoverageViews (not yet connected to GridCoverage2D). |
28540 | 2007-12-29 | acuster | Hide buttons which are not yet used |
28393 | 2007-12-17 | desruisseaux | WKT formatting now includes the semi-major and semi-minor axis length if they differ from the datum. Applied Java 5 features. Uses WarpAffine when applicable during Raster reprojection. |
28081 | 2007-11-27 | desruisseaux | Java 5 constructs: replaced some StringBuffer by StringBuilder in order to avoid unecessary synchronisation; rely on auto-boxing in order to give a chance to the JVM to reuse its cached values. |
27575 | 2007-10-22 | desruisseaux | Converted Java source files from ISO-LATIN-1 encoding to UTF-8 (GEOT-1516). |
24925 | 2007-03-27 | jgarnett | change to org.opengis.geometry |
24510 | 2007-02-19 | desruisseaux | Moved 'isIdentity(double tolerance)' method from AbstractMathTransform to LinearTransform interface. |
24493 | 2007-02-17 | desruisseaux | Cleaning in 'isIdentity(double)' methods. Note that AbstractMathTransform.isIdentity(double) may move in the LinearTransform interface, so we are marking them as deprecated for now and will create a new LinearTransform.isIdentity(double) method in a next commit. |
24485 | 2007-02-16 | simboss | -first bunch of changes for the alignment of trunk with 2.3.x |
23632 | 2006-12-29 | desruisseaux | GEOT-859: Refactored the URN syntax adapter for CRS factories. The adapter now apply to any factory. Some progress toward version management (but not yet there). NOTE: this new implementation forces axis order "as specified in the database", which is different from the original "URNEPSGAdapter" implementation which used (x,y) order. Various changes in many corners of "org.geotools.referencing.factory" as a side-effect of this work. Minor opportunist javadoc fixes in other modules. |
22327 | 2006-10-23 | desruisseaux | GEOT-982: regroup 'module', 'plugin', 'ext' and 'unsupported' in a common directory. |
22315 | 2006-10-22 | desruisseaux | Reorganisation of directory tree structure (GEOT-982) phase 1: moved 'src' to 'src/main/java'. |
22126 | 2006-10-14 | desruisseaux | Rolled back to non-static inner classes, now that the Clover bug has been fixed (as for maven-clover-plugin 2.3, released recently). |
21780 | 2006-10-03 | desruisseaux | Removed methods from the referencing module that were deprecated in Geotools 2.3. This imply the replacement of 'CRS.transform' by 'CRS.findMathTransform' in the whole Geotools code base. |
21289 | 2006-08-30 | desruisseaux | First working version of ESRI authority factory. However, the fallback mechanism is not yet in place, and the corresponding test suite in plugin/epsg-ext-esri doesn't work yet (GEOT-774). |
20874 | 2006-08-07 | jgarnett | ip review |
20756 | 2006-07-30 | aaime | Clover in, PMD out since nobody is using it. Also changed a few classes to make them compatible with Clover (workaround for a Clover bug, see http://www.cenqua.com/forums/thread.jspa?forumID=1&threadID=2333) |
19769 | 2006-06-02 | desruisseaux | Javadoc fix: replaced 'degrees' by 'decimal degrees' when relevant (GEOT-855) |
17672 | 2006-01-19 | desruisseaux | Added @source tag. |
17660 | 2006-01-18 | desruisseaux | Fixed SVN attributes, including the addition of URL attribute. |
17522 | 2006-01-11 | desruisseaux | Added a few experimental @tutorial javadoc tags. |
16514 | 2005-10-25 | desruisseaux | Added a check if order to use an 'Equirectangular' parameter group without 'latitude of origin' parameter if the latitude of origin is 0. |
16205 | 2005-10-11 | desruisseaux | Cleaned javadoc warning. More work done on Maven 2 configuration (GEOT-691) |
15556 | 2005-08-30 | desruisseaux | Bug fix in 'createTransformedShape' / Clarification in the way a GridCoverage2D convenience constructor handle axis |
15350 | 2005-08-16 | desruisseaux | Merged the 'split-main' branch to trunk (GEOT-662) |
15325 | 2005-08-13 | desruisseaux | Created a matrix package on top of vecmath / Fixed 'getPositionalAccuracy' issues |
15256 | 2005-08-09 | desruisseaux | Extraction of referencing module from main |
15255 | 2005-08-09 | desruisseaux | Prepare branch for splitting main |
14834 | 2005-07-20 | desruisseaux | Reorganized I18N resources |
14657 | 2005-07-01 | desruisseaux | Ongoing work for the port of grid coverage operations from 'legacy' to 'main' (GEOT-413): ported SampleDimensionSelect |
13925 | 2005-05-30 | desruisseaux | Added @since javadoc tag |
13922 | 2005-05-29 | desruisseaux | Renaming of remainding GeoAPI implementations. Renaming is now finished. |
13836 | 2005-05-26 | desruisseaux | Added 'Default' suffix to some CRS implementations: partial work |
13371 | 2005-05-04 | desruisseaux | Added a test cases for WarpTransform2D |
13361 | 2005-05-03 | desruisseaux | First part of LocalizationGrid refactoring work (explanation email to be sent shortly) |
11008 | 2005-02-02 | desruisseaux | Ask OperationMethod to be specified explicitly |
11007 | 2005-02-02 | desruisseaux | Fixed ArrayIndexOutOfBoundsException in transform(DirectPosition,DirectPosition) |
10944 | 2005-02-01 | desruisseaux | Bug fix in ProjectedCRS: axis swapping and units conversion were not correctly handled |
10469 | 2005-01-11 | desruisseaux | Replaced calls to 'getDim[Source|Target]' by 'get[Source|Target]Dimensions |
10228 | 2005-01-04 | desruisseaux | Renamed 'getDimSource' as 'getSourceDimension' |
9266 | 2004-11-23 | desruisseaux | Last WKT tuning; parsing and formatting should now be functional |
9092 | 2004-11-11 | desruisseaux | Slight modification in the protected API for handling parameters |
7862 | 2004-09-09 | jgarnett | Removed import warnings - after checking javadocs. |
6888 | 2004-07-14 | desruisseaux | Update for GeoAPI changes (Info --> IdentifiedObject) |
6704 | 2004-07-03 | desruisseaux | Parse MathTransform arguments using parametes available in providers |
6657 | 2004-06-30 | desruisseaux | Fine tuning getParameterValues() method |
6627 | 2004-06-29 | desruisseaux | Finished refactoring of WKT formatting for MathTransform |
6606 | 2004-06-29 | rschulz | fixed bug in rollLongitude method |
6565 | 2004-06-26 | desruisseaux | First draft of a MapProjection port |
6536 | 2004-06-25 | desruisseaux | Added SingleCRS class / Renamed ObliqueCartesianCS as AffineCS / Moved Position as super-interface for DirectPosition and Point |
6494 | 2004-06-23 | desruisseaux | Avoid ParameterValue object creation when formatting WKT parameters |
6477 | 2004-06-19 | rschulz | added ensureInRange() method |
6440 | 2004-06-13 | desruisseaux | Added GeocentricTransform / Added registry service in TransformFactory / Refactored JUnit tests |
6375 | 2004-06-10 | desruisseaux | Work on parameters handling |
6333 | 2004-06-06 | desruisseaux | Continuing CRS implementation |
6325 | 2004-06-04 | desruisseaux | Added MathTransform implementations |
6301 | 2004-06-03 | desruisseaux | Refactored basic transform in their own package |