Modified: sis/trunk/core/sis-utility/src/main/java/org/apache/sis/math/MathFunctions.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-utility/src/main/java/org/apache/sis/math/MathFunctions.java?rev=1753294&r1=1753293&r2=1753294&view=diff ============================================================================== --- sis/trunk/core/sis-utility/src/main/java/org/apache/sis/math/MathFunctions.java [UTF-8] (original) +++ sis/trunk/core/sis-utility/src/main/java/org/apache/sis/math/MathFunctions.java [UTF-8] Mon Jul 18 17:47:22 2016 @@ -364,6 +364,8 @@ public final class MathFunctions extends /* * The classical formulas is log((1+x)/(1-x))/2, but the following is more * accurate if the (1+x)/(1-x) ratio is close to 1, i.e. if x is close to 0. + * This is often the case in Apache SIS since x is often a value close to the + * Earth excentricity, which is a small value (0 would be a perfect sphere). */ return 0.5 * Math.log1p(2*x / (1-x)); }
Modified: sis/trunk/ide-project/NetBeans/build.xml URL: http://svn.apache.org/viewvc/sis/trunk/ide-project/NetBeans/build.xml?rev=1753294&r1=1753293&r2=1753294&view=diff ============================================================================== --- sis/trunk/ide-project/NetBeans/build.xml (original) +++ sis/trunk/ide-project/NetBeans/build.xml Mon Jul 18 17:47:22 2016 @@ -191,16 +191,12 @@ <include name="**/*.laa"/> <include name="**/*.loa"/> </fileset> - </copy> - <copy todir="${build.test.classes.dir}"> <fileset dir="${project.root}/storage/sis-shapefile/src/test/resources"> <include name="**/*.dbf"/> <include name="**/*.prj"/> <include name="**/*.shp"/> <include name="**/*.shx"/> </fileset> - </copy> - <copy todir="${build.test.classes.dir}"> <fileset dir="${project.root}/profiles/sis-french-profile/src/test/resources"> <include name="**/*.xml"/> </fileset>
