Messages by Date
-
2022/07/28
[sis] branch fix/zero-based-transform created (now d972b4e44f)
amanin
-
2022/07/27
[sis] branch geoapi-4.0 updated: fix(Storage): fix GeoTiff resource finding
amanin
-
2022/07/22
[sis] 02/02: For GeoTIFF and WorldFile images, `Resource.getIdentifier()` returns a scoped name of the form "filename:imageIndex" instead of a local name of the form "imageIndex".
desruisseaux
-
2022/07/22
[sis] 01/02: Remove the overridding of default javadoc stylesheet, since the default in Java 18 is satisfying.
desruisseaux
-
2022/07/22
[sis] branch geoapi-4.0 updated (481146f801 -> b1d94f3d84)
desruisseaux
-
2022/07/19
[sis] branch geoapi-4.0 updated: Make `QuantityFormat` more compliant with specification.
desruisseaux
-
2022/07/18
[sis] branch geoapi-4.0 updated: Move X-Path handling to the places where they are needed. With this commit, `UnitFormat` does not support anymore GML way to declare a unit with X-Path (it was an undocumented feature). Instead this is handled by the `org.apache.sis.xml` package, which will allow us to do a better work in the future if needed (e.g. actually read the XML document instead of assuming that the anchor name is the unit symbol).
desruisseaux
-
2022/07/17
[sis] branch geoapi-4.0 updated: Simplify `DefinitionURI.codeOf(String)` by leveraging the existing `parse` method. Simplification in return values is also possible because that method, which was previously used by authority factories, is now used only by `UnitFormat`.
desruisseaux
-
2022/07/16
[sis] 03/03: Better error message for invalid sexagesimal angles.
desruisseaux
-
2022/07/16
[sis] branch geoapi-4.0 updated (edabd5aee9 -> 51cfa9cbab)
desruisseaux
-
2022/07/16
[sis] 02/03: Fix typo: "is equals" → "is equal"
desruisseaux
-
2022/07/16
[sis] 01/03: Remove the `if (quantity instanceof Scalar)` special case in `Quantities` because it add conversions on top of conversions already done. Documentation updates related to units of measurement.
desruisseaux
-
2022/07/11
[sis] 01/01: Merge branch 'geoapi-3.1'
desruisseaux
-
2022/07/11
[sis] branch master updated (09d75edb69 -> 3362ae7b9b)
desruisseaux
-
2022/07/11
[sis] 01/01: Merge branch 'geoapi-4.0' into geoapi-3.1
desruisseaux
-
2022/07/11
[sis] branch geoapi-3.1 updated (b2d141b5e9 -> 43debe04f2)
desruisseaux
-
2022/07/11
[sis] branch geoapi-4.0 updated: Avoid a rounding error which caused the creation of unnecessary concatenated transforms.
desruisseaux
-
2022/07/11
[sis] branch geoapi-4.0 updated: Avoid a stack overflow when `getDomain(…)` is invoked on a chain of transforms which contains a `WrapAroundTransform`.
desruisseaux
-
2022/07/10
[sis] 02/02: Transfer of pixel data from Java2D image to JavaFX image should be scheduled to occur just before a JavaFX pulse. It seems to resolve the mysterious flickering effects that happened for so long.
desruisseaux
-
2022/07/10
[sis] 01/02: Prevent the replacement by source coverage in a situation where it should not be done. Report the existence of a source coverage in `toString()` output. Clarifications in documentation.
desruisseaux
-
2022/07/10
[sis] branch geoapi-4.0 updated (7447b8c95c -> a55b18b3b3)
desruisseaux
-
2022/07/09
[sis] 03/03: Replace "resample" operation by a much more efficient "translate grid" operation when the resampling is a translation of the grid by an integer amount of cells.
desruisseaux
-
2022/07/09
[sis] branch geoapi-4.0 updated (705de4a756 -> 7447b8c95c)
desruisseaux
-
2022/07/09
[sis] 02/03: Add a convenience method for testing if a floating-point value is an integer.
desruisseaux
-
2022/07/09
[sis] 01/03: Finish filling the buffer before to return from LSW decompression method. Documentation fix.
desruisseaux
-
2022/07/08
[sis] branch geoapi-4.0 updated: Try harder to resolve ambiguity when axis type is X, Y or Z.
desruisseaux
-
2022/07/08
[sis] 02/02: Allocate memory for new entries by blocks of 4 bytes instead of doing an unconditional allocation for each new entry. It reduces the amount of calls to `System.arraycopy(…)` by a factor close to 4 and also reduces memory consumption. The performance improvement was not as expected; this new version is even a bit slower than the one in previous commit. It is a little bit surprising because a code block with branching, bounds checks and copies should be executed less often (the `if (allocate [...]
desruisseaux
-
2022/07/08
[sis] 01/02: Switch the position of offset and length in `entriesForCodes` bit patterns. It makes easier the use of compressed offset in next commit.
desruisseaux
-
2022/07/08
[sis] branch geoapi-4.0 updated (04d4eee7a7 -> 35b5576064)
desruisseaux
-
2022/07/07
[sis] branch geoapi-4.0 updated: Documentation, renaming or minor reorganization. No significant code change in this commit.
desruisseaux
-
2022/07/05
[sis] branch geoapi-4.0 updated: Improve by 20~30% the performance of LZW decompression by avoiding to create too many small arrays.
desruisseaux
-
2022/07/04
[sis] branch geoapi-4.0 updated: Add a safety against some invalid LZW compressions (missing EOI code).
desruisseaux
-
2022/07/02
[sis] 01/03: Better implementation of `getDomain(…)` on inverse transforms. Remove infinite values in Mercator.getDomain(…).
desruisseaux
-
2022/07/02
[sis] 03/03: Make a better use of new `MathTransforms.getDomain(…)` API in JavaFX viewer.
desruisseaux
-
2022/07/02
[sis] 02/03: Add `getDomain(…)` implementations for a few more map projections (only the easiest cases).
desruisseaux
-
2022/07/02
[sis] branch geoapi-4.0 updated (7af56f6285 -> d41d7fa838)
desruisseaux
-
2022/07/01
[sis] branch geoapi-4.0 updated: Replace `ProjectionLimits` by a more reliable mechanism defined directly in `MathTransform` implementations. For now only `Mercator` and `TransverseMercator` defines those limit. More will be added in the future.
desruisseaux
-
2022/06/30
[sis] 02/02: First draft of a limit applied (at visualisation time) on image reprojection. This is for preventing exceptions when rendering a world image in Mercator. For now we check only the World Mercator projection, but other cases should be added progressively in the future.
desruisseaux
-
2022/06/30
[sis] 01/02: Replace "Proj.4" by "PROJ" when refering to the project. We keep "Proj4" as the namespace for PROJ-specific parameters because those parameters were defined before PROJ 6 provided full EPSG support.
desruisseaux
-
2022/06/30
[sis] branch geoapi-4.0 updated (db22d5470c -> 06e6987fd0)
desruisseaux
-
2022/06/30
[sis] 01/01: Merge branch 'geoapi-3.1'
desruisseaux
-
2022/06/30
[sis] branch master updated (78262e7625 -> 09d75edb69)
desruisseaux
-
2022/06/30
[sis] 01/01: Merge branch 'geoapi-4.0' into geoapi-3.1
desruisseaux
-
2022/06/30
[sis] branch geoapi-3.1 updated (1eaa4fa82c -> b2d141b5e9)
desruisseaux
-
2022/06/30
[sis] 01/03: Adjust the way that buffer capacity is computed.
desruisseaux
-
2022/06/30
[sis] branch geoapi-4.0 updated (748a5a1fff -> db22d5470c)
desruisseaux
-
2022/06/30
[sis] 02/03: Documentation fixes.
desruisseaux
-
2022/06/30
[sis] 03/03: Adjust the precision of coordinate numbers shown when automatically scalling from meters to kilometers.
desruisseaux
-
2022/06/29
[sis] branch geoapi-4.0 updated: Adjust the size of the temporary buffer for TIFF decompression.
desruisseaux
-
2022/06/29
[sis] 01/02: Add visual separators.
desruisseaux
-
2022/06/29
[sis] 02/02: Fix erroneous pixel values sometime computed for a compressed tile using horizontal predictor.
desruisseaux
-
2022/06/29
[sis] branch geoapi-4.0 updated (d2ef60b78d -> 07618780bc)
desruisseaux
-
2022/06/29
[sis] 02/02: Show an image made of only a raster.
desruisseaux
-
2022/06/29
[sis] 01/02: Spelling fixes in comments.
desruisseaux
-
2022/06/29
[sis] branch visual-test updated (3b457cb1cc -> e1cb9164c1)
desruisseaux
-
2022/06/28
[sis] 01/03: Add a `GridGeometry.createImageCRS(…)` method. It gives a CRS that we can use with `CRS.findOperation(…)`.
desruisseaux
-
2022/06/28
[sis] 03/03: Add a "Referencing by grid cell indices" menu item. The available choices depend on the grid coverages currently shown in the widget.
desruisseaux
-
2022/06/28
[sis] branch geoapi-4.0 updated (baaa577132 -> d2ef60b78d)
desruisseaux
-
2022/06/28
[sis] 02/03: Allow `CoordinateFormat` to recognize when it is formatting grid cell coordinates.
desruisseaux
-
2022/06/27
[sis] 02/04: Add a `GazetteerFactory` class using the name of reference system implementations.
desruisseaux
-
2022/06/27
[sis] 04/04: Allow the status bar to show coordinates using another system than `CoordinateReferenceSystem`. Current implementation uses `ReferenceSystemUsingIdentifiers` as a proof of work. The intent is to show coverage grid cell coordinates in a next commit.
desruisseaux
-
2022/06/27
[sis] branch geoapi-4.0 updated (ff9f96a15a -> baaa577132)
desruisseaux
-
2022/06/27
[sis] 01/04: Add a `Coder.getReferenceSystem()` method.
desruisseaux
-
2022/06/27
[sis] 03/04: Bug fix: geohash length not updated after precision has been specified.
desruisseaux
-
2022/06/23
[sis] 01/02: Add a `DefaultEllipsoid.getRadius(double)` method for computing radius at a given latitude.
desruisseaux
-
2022/06/23
[sis] 02/02: Provide a base class for the encoders of referencing by identifiers. It requires the addition of encoder-neutral methods for specifying the desired precision, which in turn requires the capability to convert angular precision to linear precision.
desruisseaux
-
2022/06/23
[sis] branch geoapi-4.0 updated (b4543619f1 -> ff9f96a15a)
desruisseaux
-
2022/06/20
[sis] 01/03: Adjust cursor position in the target canvas when the map in source canvas moved without a change in mouse position.
desruisseaux
-
2022/06/20
[sis] 02/03: Add a margin when rendering the map.
desruisseaux
-
2022/06/20
[sis] 03/03: Use the mouse position as the point where change in target canvas should be the same (in "real world" units) as the change in source canvas.
desruisseaux
-
2022/06/20
[sis] branch geoapi-4.0 updated (549b647c88 -> b4543619f1)
desruisseaux
-
2022/06/18
[sis] 01/03: Attempt to reduce flickering effect sometime visible at the moment when image data are replaced.
desruisseaux
-
2022/06/18
[sis] 03/03: More immediate feedback to user about the changes in source canvas that are replicated in the target canvas. The interim JavaFX transform is used without waiting for the background thread to complete the re-rendering.
desruisseaux
-
2022/06/18
[sis] branch geoapi-4.0 updated (b99960e228 -> 549b647c88)
desruisseaux
-
2022/06/18
[sis] 02/03: Allow `AffineTransform2D` to be temporarily modifiable during its construction phase. It was possible in an older version, so this commit is a partial revert.
desruisseaux
-
2022/06/17
[sis] 02/02: Show mouse cursor position in target canvas in addition of following zoom/translations/rotations.
desruisseaux
-
2022/06/17
[sis] 01/02: Minor documentation fixes.
desruisseaux
-
2022/06/17
[sis] branch geoapi-4.0 updated (12e93072e8 -> b99960e228)
desruisseaux
-
2022/06/14
[sis] branch geoapi-4.0 updated: Initialize new window to the same interpolation and color ramp than the original window.
desruisseaux
-
2022/06/12
[sis] branch geoapi-4.0 updated: Initialize new windows to the same zoom level and map projection than the original window.
desruisseaux
-
2022/06/11
[sis] 01/03: First draft of a `CanvasFollower` class for synchronizing the displacements between two canvas. It requires more details about the reason why `TransformChangeEvent` occur.
desruisseaux
-
2022/06/11
[sis] branch geoapi-4.0 updated (c1a9444773 -> 24938df77b)
desruisseaux
-
2022/06/11
[sis] 03/03: Provide a way to set the initial "objective to display" transform of a `MapCanvas` in addition of the objective bounds.
desruisseaux
-
2022/06/11
[sis] 02/03: Initial version of a `MapCanvas` capable to follow the displacements of another canvas. Synchronizations are activated by checkbox items in the list of windows.
desruisseaux
-
2022/06/10
[sis] 01/02: Addition of a method for getting changes in objective CRS. Refactoring: methods renaming and documentation updates.
desruisseaux
-
2022/06/10
[sis] branch geoapi-4.0 updated (55abc84f28 -> c1a9444773)
desruisseaux
-
2022/06/10
[sis] 02/02: USe https for avoiding that Maven blocks this repository.
desruisseaux
-
2022/06/09
[sis] branch geoapi-4.0 updated: Add a specialized event class for change of zoom, pan, translation, etc.
desruisseaux
-
2022/06/08
[sis] branch geoapi-4.0 updated: When a resource is closed, all windows showing that resource should be closed as well.
desruisseaux
-
2022/06/08
[sis] branch geoapi-4.0 updated: Results of `Resource.subset(Query)` should also fire `CloseEvent`.
desruisseaux
-
2022/06/08
[sis] branch geoapi-4.0 updated: When `WorldFileStore` is closed, close also the stream wrapped by `ImageInputStream`.
desruisseaux
-
2022/06/08
[sis] 02/02: Generalize the mechanism for propagating an event from parent store to children resources. For now only `CloseEvent` uses it.
desruisseaux
-
2022/06/08
[sis] branch geoapi-4.0 updated (c90e69905a -> 5d0170d465)
desruisseaux
-
2022/06/08
[sis] 01/02: Add documentation, code formatting and import statements order.
desruisseaux
-
2022/06/08
[sis] branch geoapi-4.0 updated: fix(Feature): On SQLMM functions, allow SRID/CRS argument to be optional.
amanin
-
2022/06/07
[sis] branch geoapi-4.0 updated: Add an event to be fired when a resource is closed. This event is handled in a special way, in that it automatically register another listener on the parent data store for propagating `CloseEvent` to child resources.
desruisseaux
-
2022/06/07
[sis] branch geoapi-4.0 updated: Add missing call to `unwrap(…)` for geometry arguments in filter expressions having a non-geometric arguments in addition of geometric ones.
desruisseaux
-
2022/06/07
[sis] branch geoapi-4.0 updated: Add `implements StoreResource` in some (not all) places where it was missing.
desruisseaux
-
2022/06/05
[sis] branch geoapi-4.0 updated: Make the window title editable. When user double-clicks on a row, move the referenced window to front.
desruisseaux
-
2022/06/04
[sis] branch geoapi-4.0 updated: Redesign the management of multiple windows opened on the same resources. The intent is to allow synchronized navigations between different views.
desruisseaux
-
2022/06/01
[sis] branch geoapi-4.0 updated: Improvement in the cache of `RenderedImage` instances: - Revisit the `equals(Object)` and `hashCode()` methods. - Reuse existing `RenderedImage` instances for a given `SliceExtent`.
desruisseaux
-
2022/05/31
[sis] branch geoapi-4.0 updated: When the position given to `GridEvaluator.apply(…)` does not have enough dimensions, default to the grid coordinates specified by `setDefaultSlice(…)` method call.
desruisseaux
-
2022/05/31
[sis] branch geoapi-4.0 updated: Various bug fixes related to the navigation in two-dimensional slices: - Random `MismatchedDimensionException` in the status bar. - Slice not updated when navigating using keyboard. - Map projection and zoom level lost when changing slice. - `CoverageExplorer` resource and coverage properties set to null.
desruisseaux
-
2022/05/30
[sis] 01/03: Method renaming, documentation update, more specific exception.
desruisseaux
-
2022/05/30
[sis] branch geoapi-4.0 updated (fbde8a0a60 -> c112a871b4)
desruisseaux
-
2022/05/30
[sis] 03/03: Initial version of a `CoverangeCanvas` capable to navigate in dimensions over 2 (using sliders). It required a change in the ways controls are managed, e.g. with `StatusBar` now managed by `ViewAndControls`.
desruisseaux
-
2022/05/30
[sis] 02/03: Revert commit 58cd2d406c5703fc029b0ad402bdbec30401e662 (removal of `sliceExtentProperty`) but without public access for now. We need this property for taking in account the slice selected by the slider.
desruisseaux
-
2022/05/27
[sis] branch 1.2-RC deleted (was 6aa660bd49)
desruisseaux
-
2022/05/27
[sis] tag 1.2 created (now 6aa660bd49)
desruisseaux
-
2022/05/27
[sis] 01/02: Add a `Envelopes.transformWraparounds(…)` method for getting the individual envelopes before their union is computed. This method is useful only if the transforms chain contains at least one `WraparoundTransform` step.
desruisseaux
-
2022/05/27
[sis] 02/02: Avoid wraparound when the result does not intersect the base grid geometry. The fix use `GridExtent.toEnvelopes(…)` (note the pluarl form) is applied in only once place for now, but we should check if it applies to more places.
desruisseaux
-
2022/05/27
[sis] branch geoapi-4.0 updated (e26c2825bf -> fbde8a0a60)
desruisseaux
-
2022/05/26
[sis] 02/03: Add a `PixelInCell` argument to the `GridExtent.getPointOfInterest()` method. It matter when we use that method for getting the coordinates of a slice.
desruisseaux
-
2022/05/26
[sis] branch geoapi-4.0 updated (b82266fafa -> e26c2825bf)
desruisseaux
-
2022/05/26
[sis] 03/03: Change of slider position now cause the rendering of corresponding slice of data. It works for `GridView` only at this stage, not yet for `CoverageCanvas`.
desruisseaux
-
2022/05/26
[sis] 01/03: Rename `GridExtent.setRange(…)` as `withRange(…)` because it does not modify the current instance.
desruisseaux
-
2022/05/25
[sis] 02/02: Use CRS axis name instead of grid axis name when possible.
desruisseaux
-
2022/05/25
[sis] 01/02: Show the currently selected value in the status bar during slider adjustment.
desruisseaux
-
2022/05/25
[sis] branch geoapi-4.0 updated (270416850b -> b82266fafa)
desruisseaux
-
2022/05/24
[sis] 05/05: More tolerant parsing of NaN value for GDAL_NODATA in TIFF file. It is sometime written as "nan" (all lower case).
desruisseaux
-
2022/05/24
[sis] 02/05: More compact representation of the temporal coordinate in a (x,y,t) tuple.
desruisseaux
-
2022/05/24
[sis] branch geoapi-4.0 updated (9adfa358f6 -> 270416850b)
desruisseaux
-
2022/05/24
[sis] 04/05: Build new `GridExtent` from slider positions.
desruisseaux
-
2022/05/24
[sis] 03/05: Add a `GridExtent.setRange(…)` method. Change the order of some other methods for grouping related methods.
desruisseaux
-
2022/05/24
[sis] 01/05: Fix an erroneous temporal coordinate shown in the status bar with the CRS is (x,y,t).
desruisseaux
-
2022/05/24
[sis] 01/03: chore(Storage): rename some tests methods
amanin
-
2022/05/24
[sis] branch fix/sql-temporal updated (213249a4d7 -> 95cc840866)
amanin
-
2022/05/24
[sis] 02/03: chore(Storage): Add tests for sql Time and Time with timezone conversion to java.time objects.
amanin
-
2022/05/24
[sis] 03/03: fix(Storage): remove incorrect timezone shift on sql time conversion
amanin
-
2022/05/23
[sis] 01/02: chore(Storage): add a test class dedicated to temporal value conversion.
amanin
-
2022/05/23
[sis] 02/02: fix(Storage): properly handle SQL timestamps to avoid ambiguity
amanin
-
2022/05/23
[sis] branch fix/sql-temporal created (now 213249a4d7)
amanin
-
2022/05/23
[sis] branch geoapi-4.0 updated: Add sliders for selecting the slice to show in a 3 (or more) dimensional data cube. Slider graduation is okay but selecting a value does not yet have an effect.
desruisseaux
-
2022/05/23
[sis] branch feat/matrixutils created (now d63bee034a)
jsorel
-
2022/05/23
[sis] 01/01: TileMatrix : add utility method for tiling scheme detection
jsorel
-
2022/05/21
[sis] branch geoapi-4.0 updated: Handle the status bar layout outside `GridView`. Handle more common properties in the `ViewAndControls` parent class.
desruisseaux
-
2022/05/20
[sis] 04/05: Ignore soft-hyphens when searching keyword. Reduce the number of heading levels used for the table of content.
desruisseaux
-
2022/05/20
[sis] 03/05: Fix the number of fraction digits shown in the table of values.
desruisseaux
-
2022/05/20
[sis] 02/05: Rename logging level relative to slow operations.
desruisseaux
-
2022/05/20
[sis] 05/05: Upgrade JavaFX dependencies. Minor documentation fixes.
desruisseaux
-
2022/05/20
[sis] 01/05: Add assertions relative to synchronization.
desruisseaux
-
2022/05/20
[sis] branch geoapi-4.0 updated (ceb6064e23 -> 9b361070f3)
desruisseaux
-
2022/05/20
[sis-site] branch main updated: Minor edition for making the documentation more up-to-date.
desruisseaux
-
2022/05/20
svn commit: r54645 - /release/sis/1.1/
desruisseaux
-
2022/05/19
[sis-site] branch asf-site updated (857e6562 -> 3f14849d)
desruisseaux
-
2022/05/19
[sis-site] 01/01: Merge branch 'asf-staging' into asf-site for publication of 1.2 release.
desruisseaux
-
2022/05/19
[sis-site] branch main updated: Style and minor edition of developer guide.
desruisseaux
-
2022/05/18
[sis-site] 01/01: Regenerate the staged web site, except the developer guide and javadoc.
desruisseaux
-
2022/05/18
[sis-site] branch asf-staging updated (4cfc951a -> e5bada61)
desruisseaux
-
2022/05/18
[sis-site] branch asf-staging updated: Regenerate the stated web site, except the developer guide and javadoc.
desruisseaux
-
2022/05/18
[sis-site] branch main updated: Rename "Formats" as "Data formats" and add information about AWS S3 access.
desruisseaux
-
2022/05/18
svn commit: r54615 - /dev/sis/1.2/
desruisseaux
-
2022/05/18
svn commit: r54614 - /dev/sis/1.2/RC1/ /release/sis/1.2/
desruisseaux
-
2022/05/18
[sis] 01/01: Add missing synchronization.
desruisseaux
-
2022/05/18
[sis] branch geoapi-4.0 updated (40350f09ea -> ceb6064e23)
desruisseaux
-
2022/05/18
[sis] branch geoapi-4.0 updated: Add missing synchronization.
desruisseaux
-
2022/05/18
[sis] branch feat/style updated: Style : update hashcode and equals formating
jsorel
-
2022/05/18
[sis] branch geoapi-4.0 updated: JTS : fix empty geometry transform exception
jsorel
-
2022/05/17
[sis] 01/02: Avoid misleading error message for unsupported JPEG compression in GeoTIFF. Documentation update.
desruisseaux
-
2022/05/17
[sis] 02/02: Add a `GridCoverageProcessor.convert(…)` method.
desruisseaux
-
2022/05/17
[sis] branch geoapi-4.0 updated (7d88d4c0f3 -> bc23143019)
desruisseaux
-
2022/05/16
[sis-site] branch main updated: List modules in the download pages. Minor editions.
desruisseaux
-
2022/05/13
[sis] 03/03: Remove the generation of TOC fragment in each chapter. Will be replaced by better navigation pane.
desruisseaux
-
2022/05/13
[sis] 02/03: Generate the developer guide directly in the `asf-staging` branch.
desruisseaux
-
2022/05/13
[sis] branch geoapi-4.0 updated (f91de6eb21 -> 7d88d4c0f3)
desruisseaux
-
2022/05/13
[sis] 01/03: Increment version number from 1.2 to 1.3.
desruisseaux
-
2022/05/13
[sis-site] branch main updated (688bd2fd -> 96eb2fb4)
desruisseaux
-
2022/05/13
[sis-site] 02/02: Table Of Content (TOC) highlights the viewed item in the main document.
desruisseaux
-
2022/05/12
[sis] branch master updated: Set version to 1.3-SNAPSHOT.
desruisseaux
-
2022/05/12
[sis-site] branch main updated: Expand the release vote template.
desruisseaux
-
2022/05/12
[sis-site] branch asf-staging updated: Web site for SIS 1.2 release candidate 1.
desruisseaux
-
2022/05/12
[sis-site] 02/04: Repeat link to mailing lists and add link to GitHub.
desruisseaux
-
2022/05/12
[sis-site] 03/04: Update release instructions.
desruisseaux
-
2022/05/12
[sis-site] 01/04: Online examples need to use "https" in URLs.
desruisseaux
-
2022/05/12
[sis-site] branch main updated (297b42d4 -> 3f67ee1d)
desruisseaux
-
2022/05/12
[sis-site] 04/04: Update information about SIS 1.2 release.
desruisseaux
-
2022/05/12
[sis] branch geoapi-4.0 updated: Partial revert of commit 58cd2d4: the null check is still needed.
desruisseaux
-
2022/05/12
[sis] branch geoapi-4.0 updated: Apply a longitude wraparound on the Mercator projection.
desruisseaux
-
2022/05/11
[sis] 01/03: Keep (for now) the Java 8 layout (no module page) in generated javadoc.
desruisseaux
-
2022/05/11
[sis] branch geoapi-4.0 updated (d2eca32ddb -> 58cd2d406c)
desruisseaux
-
2022/05/11
[sis] 03/03: Remove deprecated methods that do not override an abstract methods.
desruisseaux
-
2022/05/11
svn commit: r1900810 - in /sis: archives/ archives/README archives/branches/ archives/site/ archives/site/README archives/tags/ archives/trunk/ branches/ site/ tags/ trunk/
desruisseaux
-
2022/05/11
svn commit: r1900808 - /sis/site/README
desruisseaux
-
2022/05/11
svn commit: r1900807 - in /sis: branches/Shapefile2/ data/unclassified/ sandbox/
desruisseaux
-
2022/05/10
svn commit: r54413 - in /dev/sis/1.2: ./ RC1/
desruisseaux
-
2022/05/10
svn commit: r1900786 - in /sis/release-test: integration/ integration/pom.xml maven/pom.xml maven/src/test/java/org/apache/sis/test/IntegrationTest.java maven/src/test/java/org/apache/sis/test/SelfConsistencyTest.java
desruisseaux
-
2022/05/10
svn commit: r1900785 - /sis/release-test/maven/pom.xml
desruisseaux
-
2022/05/10
svn commit: r1900784 - in /sis/site: README branches/ trunk/
desruisseaux
-
2022/05/10
[sis] 02/02: Remove `sis-webapp` module, since it is not ready.
desruisseaux
-
2022/05/10
[sis] 01/02: Fix compilation errors caused by mismatched versions.
desruisseaux
-
2022/05/10
[sis] branch 1.2-RC updated (8491f5f027 -> 6aa660bd49)
desruisseaux
-
2022/05/10
svn commit: r1900781 - /sis/release-test/maven/pom.xml
desruisseaux
-
2022/05/10
svn commit: r1900780 - in /sis/data/non-free: pom.xml sis-embedded-data/pom.xml sis-embedded-data/src/main/java/org/apache/sis/resources/embedded/EmbeddedResources.java sis-epsg/pom.xml
desruisseaux
-
2022/05/09
[sis] 02/02: Set version number to 1.2.
desruisseaux
-
2022/05/09
[sis] branch 1.2-RC created (now 8491f5f027)
desruisseaux
-
2022/05/09
[sis-site] 03/03: Release notes for Apache SIS 1.2.
desruisseaux
-
2022/05/09
[sis-site] 01/03: Remove warning about bug in URL for downloading EPSG data and add a list of supported formats.
desruisseaux
-
2022/05/09
[sis-site] branch main updated (b0ebd1e1 -> 297b42d4)
desruisseaux
-
2022/05/09
[sis] 02/02: Merge branch 'geoapi-3.1' for last fixes before release.
desruisseaux
-
2022/05/09
[sis] branch master updated (97a5c714de -> 62d82cc847)
desruisseaux