This is an automated email from the ASF dual-hosted git repository.
desruisseaux pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/sis-site.git
The following commit(s) were added to refs/heads/main by this push:
new 38b653dc Fix broken links.
38b653dc is described below
commit 38b653dc0eb08b67c2d5db41f0c63e2c2a628416
Author: Martin Desruisseaux <[email protected]>
AuthorDate: Wed Aug 13 11:43:50 2025 +0200
Fix broken links.
---
content/developer-guide/annexes/tests/GeoApiConformance.html | 2 +-
content/epsg.md | 4 ++--
content/source.md | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/content/developer-guide/annexes/tests/GeoApiConformance.html
b/content/developer-guide/annexes/tests/GeoApiConformance.html
index 671bf59e..66b9dc1a 100644
--- a/content/developer-guide/annexes/tests/GeoApiConformance.html
+++ b/content/developer-guide/annexes/tests/GeoApiConformance.html
@@ -145,7 +145,7 @@ public class MyTest {
Instead, Apache <abbr>SIS</abbr> inherits GeoAPIās <code
class="API">*Test</code> classes on a case-by-case basis,
in the appropriate modules.
The example below gives an example of a customized GeoAPI test:
- The <a
href="http://www.geoapi.org/geoapi-conformance/apidocs/org/opengis/test/referencing/ParameterizedTransformTest.html">parent
test javadoc</a>
+ The <a
href="https://www.geoapi.org/snapshot/javadoc/org.opengis.geoapi.conformance/org/opengis/test/referencing/ParameterizedTransformTest.html">parent
test javadoc</a>
documents the tests performed in detail.
In this example, only one test is modified and all the others are
inherited as they are (it is not necessary to repeat them in the sub-class).
However, this example adds a supplemental verification, annotated with
<code>@After</code>, which will be executed after each test.
diff --git a/content/epsg.md b/content/epsg.md
index ea1dd746..2f3198f7 100644
--- a/content/epsg.md
+++ b/content/epsg.md
@@ -8,7 +8,7 @@ together with information about how to perform coordinate
operations, their accu
The EPSG dataset is owned and maintained by the [International Association of
Oil & Gas producers][IOGP].
Usage of EPSG dataset with Apache {{% SIS %}} is optional but strongly
recommended:
without that geodetic dataset, only a small subset of CRS definitions will be
available
-(basically the constants enumerated in the
[`CommonCRS`](apidocs/org/apache/sis/referencing/CommonCRS.html) Java class)
+(basically the constants enumerated in the
[`CommonCRS`](apidocs/org.apache.sis.referencing/org/apache/sis/referencing/CommonCRS.html)
Java class)
unless full definitions are provided in _Well Known Text_ (WKT) or _Geographic
Markup Language_ (GML) formats.
Furthermore, coordinate operations between any given pair of CRS may be less
accurate
and their domains of validity may be unspecified if Apache {{% SIS %}} cannot
query EPSG.
@@ -93,7 +93,7 @@ The target database must be specified by users with *one* of
the following choic
or a directory that contain other Derby databases. The specified directory
must exist.
* Register a `DataSource` under the `java:comp/env/jdbc/SpatialMetadata` name
in a JNDI directory
(see [next section](#jndi)). The database must exist but can be initially
empty.
-* Set a `DataSource` [from Java
code](./apidocs/org/apache/sis/setup/Configuration.html).
+* Set a `DataSource` [from Java
code](./apidocs/org.apache.sis.util/org/apache/sis/setup/Configuration.html).
The Maven dependency is as below (the Derby dependency can be replaced by
another database driver
if that database is specified by JNDI):
diff --git a/content/source.md b/content/source.md
index 99cc6d96..20705f8f 100644
--- a/content/source.md
+++ b/content/source.md
@@ -100,7 +100,7 @@ echo export SIS_DATA=$SIS_DATA
## Checkout non-free data {#non-free}
The EPSG geodetic dataset is recommended for operations related to Coordinate
Reference Systems.
-Without the EPSG database, only a [small
subset](apidocs/org/apache/sis/referencing/CRS.html#forCode-java.lang.String-)
+Without the EPSG database, only a [small
subset](apidocs/org.apache.sis.referencing/org/apache/sis/referencing/CRS.html#forCode(java.lang.String))
of coordinate reference systems can be created from EPSG codes.
The EPSG database can be [installed in various ways][epsg-install],
but this section describes an alternative way more suitable to Apache {{% SIS
%}} development.