You are viewing a plain text version of this content. The canonical link for it is here.
- [sis] branch geoapi-4.0 updated (bc38cbf -> 46bf0ac) - posted by de...@apache.org on 2020/10/01 21:55:35 UTC, 0 replies.
- [sis] 01/03: Remove `sourceMedian` argument in `WraparoundTransform.create(…)` method. - posted by de...@apache.org on 2020/10/01 21:55:36 UTC, 0 replies.
- [sis] 02/03: Do not round the median value in `WraparoundTransform`. Callers should round themselves if desired. - posted by de...@apache.org on 2020/10/01 21:55:37 UTC, 0 replies.
- [sis] 03/03: Better separation of work by moving some methods in `WraparoundApplicator`. Move `WraparoundTransform.transform(…)` method to `WraparoundInEnvelope`. This refactoring allows some simplification and better synchronization. - posted by de...@apache.org on 2020/10/01 21:55:38 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (46bf0ac -> ba4ad90) - posted by de...@apache.org on 2020/10/02 19:09:25 UTC, 0 replies.
- [sis] 01/03: Move `WraparoundTransform` to public package. - posted by de...@apache.org on 2020/10/02 19:09:26 UTC, 0 replies.
- [sis] 02/03: Slightly more efficient way to get wraparound step in a chain of transforms. - posted by de...@apache.org on 2020/10/02 19:09:27 UTC, 0 replies.
- [sis] 03/03: Better control on when wraparound is applied. - posted by de...@apache.org on 2020/10/02 19:09:28 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Implement `WraparoundTransform.inverse()`. It will allow us to apply a safer strategy for handling wraparounds in next commits. Remove `WraparoundTransform.CACHE` because the new `sourceMedian` field reduces the probability that a cached value can be used. - posted by de...@apache.org on 2020/10/03 16:39:52 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (2d3e45f -> 579bc7e) - posted by de...@apache.org on 2020/10/05 11:04:25 UTC, 0 replies.
- [sis] 01/04: Avoid potentially costly calls to `MathTransform.inverse()`. - posted by de...@apache.org on 2020/10/05 11:04:26 UTC, 0 replies.
- [sis] 02/04: Move the `intersect` method close to `union` method, remove `public` modifier on constructors of package-privated classes and edit some comments. There is no significant code change in this commit. - posted by de...@apache.org on 2020/10/05 11:04:27 UTC, 0 replies.
- [sis] 03/04: Build temporary `WraparoundInEnvelope` instances only before to transform an envelope. This change avoid to expose a mutable `MathTransform`, removes the need for synchronization and enable wraparound handling in more situations than only `GridGeometry` operations. - posted by de...@apache.org on 2020/10/05 11:04:28 UTC, 0 replies.
- [sis] 04/04: Apply on transformations of `Rectangle2D` objects the same wraparound checks than we did in previous commit for `Envelope` objects. - posted by de...@apache.org on 2020/10/05 11:04:29 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Try to enable wraparound handling in JavaFX application and prints more extensive information about `CoverageCanvas` operations. The intent is to debug why the image is not visible when a `GridCoverage` crossing the anti-meridian is resampled. - posted by de...@apache.org on 2020/10/06 18:18:52 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (56e596f -> f6deb67) - posted by de...@apache.org on 2020/10/07 14:55:35 UTC, 0 replies.
- [sis] 01/03: Make debugging information more compact and more useful. - posted by de...@apache.org on 2020/10/07 14:55:36 UTC, 0 replies.
- [sis] 02/03: Fix a longitude wraparound error specific to the UTM projection case. Contains minor documentation changes. - posted by de...@apache.org on 2020/10/07 14:55:37 UTC, 0 replies.
- [sis] 03/03: Add a wraparound application which was missing when going from a geographic CRS to a projected CRS. - posted by de...@apache.org on 2020/10/07 14:55:38 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Apply wraparound step only if needed in `ResampledImage`. - posted by de...@apache.org on 2020/10/07 17:57:09 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Make `MathTransform inverse()` invertible. This is necessary for allowing `WraparoundInEnvelope` to perform more extensive checks during bounding box calculation. - posted by de...@apache.org on 2020/10/08 10:07:06 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (c215ddb -> 0885edc) - posted by de...@apache.org on 2020/10/09 11:07:04 UTC, 0 replies.
- [sis] 01/04: Fix broken javadoc links. Fix typographic convention in French resources. - posted by de...@apache.org on 2020/10/09 11:07:05 UTC, 0 replies.
- [sis] 02/04: Remove `GridCanvas` experimental class. - posted by de...@apache.org on 2020/10/09 11:07:06 UTC, 0 replies.
- [sis] 03/04: Minor performance improvement in `WraparoundTransform.concatenate(…)`. Add a note in documentation about information lost during WKT formatting. - posted by de...@apache.org on 2020/10/09 11:07:07 UTC, 0 replies.
- [sis] 04/04: Replace `GridOrientation` enumeration by a more configurable class. - posted by de...@apache.org on 2020/10/09 11:07:08 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Add Orthographic projection in the list of projections centered on mouse click. - posted by de...@apache.org on 2020/10/09 16:55:23 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (325d23f -> a9cd8bf) - posted by de...@apache.org on 2020/10/10 14:39:13 UTC, 0 replies.
- [sis] 01/02: Move `StreamDecoration` to "SQL store" internal package, renamed `StreamWrapper`. We limit the use of those wrappers for now because we do not yet have a mechanism for allowing methods with `Stream` return type to return also some `StreamWrapper`. In current implementation, any call to a method such as `Stream.map(…)` may cause the lost of all optimizations done in `StreamWrapper` subclasses. - posted by de...@apache.org on 2020/10/10 14:39:14 UTC, 0 replies.
- [sis] 02/02: Move `SubsetAdapter` to "SQL storage" module, where it is used. - posted by de...@apache.org on 2020/10/10 14:39:15 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (a9cd8bf -> bc6ca0f) - posted by de...@apache.org on 2020/10/13 17:59:56 UTC, 0 replies.
- [sis] 01/02: Minor improvement in concatenation of two consecutive `WraparoundTransform` instances. - posted by de...@apache.org on 2020/10/13 17:59:57 UTC, 0 replies.
- [sis] 02/02: Move `FeatureInfos` to a package where it can be shared by the two implementations. This move allows to use that class also with the decoder based on UCAR library. - posted by de...@apache.org on 2020/10/13 17:59:58 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Make the `FeatureSet` implementation more robust and more generic. This commit prepares `FeatureSet` to support "ordinary" trajectory (without time vector) in addition to moving features. - posted by de...@apache.org on 2020/10/14 18:41:37 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Refactoring and slight optimizations: - Move `MovingFeature` as `MovingFeatureBuilder` in the package where it is used. - Retarget `MovingFeature` as a set of static methods (for now). - Renamed `DateList` class and some `FeatureSet` fields. - Share time vectors when possible. - optimization of `PackedVector.equals(…)` and `IntegerList.equals(…)`. - posted by de...@apache.org on 2020/10/15 16:48:27 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Share more code between `FeatureSet` and `Grid` regarding axis type inference. - posted by de...@apache.org on 2020/10/16 18:09:28 UTC, 0 replies.
- [sis] branch feat/featureset-subset-abstract created (now f153f69) - posted by js...@apache.org on 2020/10/19 12:09:37 UTC, 0 replies.
- [sis] 01/01: FeatureSet : support simple query using a property unknowned by the feature type - posted by js...@apache.org on 2020/10/19 12:09:38 UTC, 1 replies.
- [sis] branch geoapi-4.0 updated (7a1fec6 -> 248df22) - posted by de...@apache.org on 2020/10/19 14:47:23 UTC, 0 replies.
- [sis] 01/04: Replace loops by placeholders for JDK9 Arrays.equals(…) methods. Fix a wrong PackedVector optimization. - posted by de...@apache.org on 2020/10/19 14:47:24 UTC, 0 replies.
- [sis] 02/04: Add support for reading variables of character type. Implies some refactoring for sharing more code between the two reader implementations. - posted by de...@apache.org on 2020/10/19 14:47:25 UTC, 0 replies.
- [sis] 03/04: Fix offset and stride calculation in netCDF files having an unlimited dimension. - posted by de...@apache.org on 2020/10/19 14:47:26 UTC, 0 replies.
- [sis] 04/04: Add tests on a "Moving Features" file. - posted by de...@apache.org on 2020/10/19 14:47:27 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: `Variable.read(GridExtent area, int[] subsampling)` support reading character strings in addition of numerical value. This commit required refactoring for allowing more code sharing. - posted by de...@apache.org on 2020/10/20 17:59:04 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (4587f99 -> 9079a67) - posted by de...@apache.org on 2020/10/20 22:35:37 UTC, 0 replies.
- [sis] 01/03: Add a `Vector.isSinglePrecision()` method. - posted by de...@apache.org on 2020/10/20 22:35:38 UTC, 0 replies.
- [sis] 02/03: The loop converting byte[] to String needs a fallback for encodings where values lower than 128 are not the same than ASCII. Creation of geometry objects in `FeatureSet` needs to take in account the `GeometryType`, and optionally the precision. - posted by de...@apache.org on 2020/10/20 22:35:39 UTC, 0 replies.
- [sis] 03/03: Use an EngineeringCRS fallback when a TemporalCRS can not be created because of unknown temporal datum epoch. - posted by de...@apache.org on 2020/10/20 22:35:40 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (9079a67 -> bb1e274) - posted by de...@apache.org on 2020/10/22 14:14:08 UTC, 0 replies.
- [sis] 01/03: Accept parsing timezone name (e.g. "UTC") in addition of timezone offsets. Add links in javadoc and fix the value shown in an error message. - posted by de...@apache.org on 2020/10/22 14:14:09 UTC, 0 replies.
- [sis] 02/03: Add methods or objects needed for completion of `FeatureSet`: - posted by de...@apache.org on 2020/10/22 14:14:10 UTC, 0 replies.
- [sis] 03/03: Fix NullPointerException during unmarshalling of legacy ResponsibleParty objects. - posted by de...@apache.org on 2020/10/22 14:14:11 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (bb1e274 -> 57dee2c) - posted by de...@apache.org on 2020/10/23 14:40:31 UTC, 0 replies.
- [sis] 01/03: When an alert is shown for an error, the dialog box owner should be the application window. It help to keep the dialog on the same screen than the application. - posted by de...@apache.org on 2020/10/23 14:40:32 UTC, 0 replies.
- [sis] 02/03: Do not popup more than one alert window if many errors happen in a short time (in current implementation, only the last error is shown). Add scrollbars around the component showing stack trace. - posted by de...@apache.org on 2020/10/23 14:40:33 UTC, 0 replies.
- [sis] 03/03: Add a "Open recent file" menu. It saves time when doing many test always on the same data file. - posted by de...@apache.org on 2020/10/23 14:40:34 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Hide SIS synthetic feature properties in the tabular view of FeatureSet. - posted by de...@apache.org on 2020/10/23 17:39:32 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (16ea3ba -> 1b47d2f) - posted by de...@apache.org on 2020/10/23 22:23:46 UTC, 0 replies.
- [sis] 01/02: Add unit of measurements in the FeatureType built from a netCDF file. - posted by de...@apache.org on 2020/10/23 22:23:47 UTC, 0 replies.
- [sis] 02/02: Fix recent files ordering. - posted by de...@apache.org on 2020/10/23 22:23:48 UTC, 0 replies.
- [sis] branch feat/featureset-subset-abstract updated (f153f69 -> 97e798b) - posted by de...@apache.org on 2020/10/27 14:42:49 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (1b47d2f -> bc9df39) - posted by de...@apache.org on 2020/10/27 14:45:47 UTC, 0 replies.
- [sis] 01/02: Report JavaFX version. - posted by de...@apache.org on 2020/10/27 14:45:48 UTC, 0 replies.
- [sis] 02/02: `FeatureSet` use `CRSBuilder` for constructing an horizontal and temporal CRS from the variables. The temporal CRS allows construction of the "datetimes" characteristics on the "trajectory" property. - posted by de...@apache.org on 2020/10/27 14:45:49 UTC, 0 replies.
- [jira] [Created] (SIS-501) Store GIT SHA1 in META-INF - posted by "Martin Desruisseaux (Jira)" <ji...@apache.org> on 2020/10/27 15:41:00 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (bc9df39 -> fa1e45b) - posted by de...@apache.org on 2020/10/28 13:46:55 UTC, 0 replies.
- [sis] 01/02: Force the use of `Vector` (i.e. make sure that we don't get a `List`) when reading coordinate variables. If the variable contains texts, those texts will be parsed as numbers. - posted by de...@apache.org on 2020/10/28 13:46:56 UTC, 0 replies.
- [sis] 02/02: Share the same code for enumeration support between `RasterResource` et `FeatureSet`. - posted by de...@apache.org on 2020/10/28 13:46:57 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Update HTML links to EPSG registry, OGC standards and others. - posted by de...@apache.org on 2020/10/29 13:04:23 UTC, 0 replies.
- svn commit: r1882967 - in /sis/site/trunk: book/en/annexes/geoapi/ book/en/introduction/ book/en/referencing/ book/en/storage/ book/fr/annexes/geoapi/ book/fr/introduction/ book/fr/referencing/ book/fr/storage/ content/ content/openoffice/en/ content/o... - posted by de...@apache.org on 2020/10/29 13:06:17 UTC, 0 replies.
- svn commit: r1067298 - in /websites/staging/sis/trunk/content: ./ openoffice/en/ openoffice/fr/ release-notes/ tables/ - posted by bu...@apache.org on 2020/10/29 13:06:34 UTC, 0 replies.