Skip to content

Commit 6d10acf

Browse files
authored
Merge pull request #3831 from rouault/fix_geoapi_links
Doc: fix links to geoapi
2 parents fcd2606 + de1183e commit 6d10acf

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

include/proj/io.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -973,7 +973,7 @@ using AuthorityFactoryNNPtr = util::nn<AuthorityFactoryPtr>;
973973
* A AuthorityFactory should be used only by one thread at a time.
974974
*
975975
* \remark Implements [AuthorityFactory]
976-
* (http://www.geoapi.org/3.0/javadoc/org/opengis/referencing/AuthorityFactory.html)
976+
* (http://www.geoapi.org/3.0/javadoc/org.opengis.geoapi/org/opengis/referencing/AuthorityFactory.html)
977977
* from \ref GeoAPI
978978
*/
979979
class PROJ_GCC_DLL AuthorityFactory {

include/proj/metadata.hpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ namespace metadata {
5858
* A citation contains a title.
5959
*
6060
* \remark Simplified version of [Citation]
61-
* (http://www.geoapi.org/3.0/javadoc/org/opengis/metadata/citation/Citation.html)
61+
* (http://www.geoapi.org/3.0/javadoc/org.opengis.geoapi/org/opengis/metadata/citation/Citation.html)
6262
* from \ref GeoAPI
6363
*/
6464
class PROJ_GCC_DLL Citation : public util::BaseObject {
@@ -91,7 +91,7 @@ using GeographicExtentNNPtr = util::nn<GeographicExtentPtr>;
9191
/** \brief Base interface for geographic area of the dataset.
9292
*
9393
* \remark Simplified version of [GeographicExtent]
94-
* (http://www.geoapi.org/3.0/javadoc/org/opengis/metadata/extent/GeographicExtent.html)
94+
* (http://www.geoapi.org/3.0/javadoc/org.opengis.geoapi/org/opengis/metadata/extent/GeographicExtent.html)
9595
* from \ref GeoAPI
9696
*/
9797
class PROJ_GCC_DLL GeographicExtent : public util::BaseObject,
@@ -145,7 +145,7 @@ using GeographicBoundingBoxNNPtr = util::nn<GeographicBoundingBoxPtr>;
145145
* unnecessary.
146146
*
147147
* \remark Implements [GeographicBoundingBox]
148-
* (http://www.geoapi.org/3.0/javadoc/org/opengis/metadata/extent/GeographicBoundingBox.html)
148+
* (http://www.geoapi.org/3.0/javadoc/org.opengis.geoapi/org/opengis/metadata/extent/GeographicBoundingBox.html)
149149
* from \ref GeoAPI
150150
*/
151151
class PROJ_GCC_DLL GeographicBoundingBox : public GeographicExtent {
@@ -199,7 +199,7 @@ using TemporalExtentNNPtr = util::nn<TemporalExtentPtr>;
199199
/** \brief Time period covered by the content of the dataset.
200200
*
201201
* \remark Simplified version of [TemporalExtent]
202-
* (http://www.geoapi.org/3.0/javadoc/org/opengis/metadata/extent/TemporalExtent.html)
202+
* (http://www.geoapi.org/3.0/javadoc/org.opengis.geoapi/org/opengis/metadata/extent/TemporalExtent.html)
203203
* from \ref GeoAPI
204204
*/
205205
class PROJ_GCC_DLL TemporalExtent : public util::BaseObject,
@@ -247,7 +247,7 @@ using VerticalExtentNNPtr = util::nn<VerticalExtentPtr>;
247247
/** \brief Vertical domain of dataset.
248248
*
249249
* \remark Simplified version of [VerticalExtent]
250-
* (http://www.geoapi.org/3.0/javadoc/org/opengis/metadata/extent/VerticalExtent.html)
250+
* (http://www.geoapi.org/3.0/javadoc/org.opengis.geoapi/org/opengis/metadata/extent/VerticalExtent.html)
251251
* from \ref GeoAPI
252252
*/
253253
class PROJ_GCC_DLL VerticalExtent : public util::BaseObject,
@@ -297,7 +297,7 @@ using ExtentNNPtr = util::nn<ExtentPtr>;
297297
/** \brief Information about spatial, vertical, and temporal extent.
298298
*
299299
* \remark Simplified version of [Extent]
300-
* (http://www.geoapi.org/3.0/javadoc/org/opengis/metadata/extent/Extent.html)
300+
* (http://www.geoapi.org/3.0/javadoc/org.opengis.geoapi/org/opengis/metadata/extent/Extent.html)
301301
* from \ref GeoAPI
302302
*/
303303
class PROJ_GCC_DLL Extent : public util::BaseObject, public util::IComparable {
@@ -440,7 +440,7 @@ using PositionalAccuracyNNPtr = util::nn<PositionalAccuracyPtr>;
440440
/** \brief Accuracy of the position of features.
441441
*
442442
* \remark Simplified version of [PositionalAccuracy]
443-
* (http://www.geoapi.org/3.0/javadoc/org/opengis/metadata/quality/PositionalAccuracy.html)
443+
* (http://www.geoapi.org/3.0/javadoc/org.opengis.geoapi/org/opengis/metadata/quality/PositionalAccuracy.html)
444444
* from \ref GeoAPI, which originates from \ref ISO_19115
445445
*/
446446
class PROJ_GCC_DLL PositionalAccuracy : public util::BaseObject {

include/proj/util.hpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -556,8 +556,8 @@ using GenericNameNNPtr = util::nn<GenericNamePtr>;
556556
/** \brief A sequence of identifiers rooted within the context of a namespace.
557557
*
558558
* \remark Simplified version of [GenericName]
559-
* (http://www.geoapi.org/3.0/javadoc/org/opengis/util/GenericName.html) from
560-
* \ref GeoAPI
559+
* (http://www.geoapi.org/3.0/javadoc/org.opengis.geoapi/org/opengis/util/GenericName.html)
560+
* from \ref GeoAPI
561561
*/
562562
class GenericName : public BaseObject {
563563
public:
@@ -591,8 +591,8 @@ class GenericName : public BaseObject {
591591
/** \brief A domain in which names given by strings are defined.
592592
*
593593
* \remark Simplified version of [NameSpace]
594-
* (http://www.geoapi.org/3.0/javadoc/org/opengis/util/NameSpace.html) from \ref
595-
* GeoAPI
594+
* (http://www.geoapi.org/3.0/javadoc/org.opengis.geoapi/org/opengis/util/NameSpace.html)
595+
* from \ref GeoAPI
596596
*/
597597
class NameSpace {
598598
public:
@@ -628,8 +628,8 @@ class NameSpace {
628628
* NameSpace within which they are local, indicated by the scope.
629629
*
630630
* \remark Simplified version of [LocalName]
631-
* (http://www.geoapi.org/3.0/javadoc/org/opengis/util/LocalName.html) from \ref
632-
* GeoAPI
631+
* (http://www.geoapi.org/3.0/javadoc/org.opengis.geoapi/org/opengis/util/LocalName.html)
632+
* from \ref GeoAPI
633633
*/
634634
class LocalName : public GenericName {
635635
public:
@@ -659,8 +659,8 @@ class LocalName : public GenericName {
659659
/** \brief Factory for generic names.
660660
*
661661
* \remark Simplified version of [NameFactory]
662-
* (http://www.geoapi.org/3.0/javadoc/org/opengis/util/NameFactory.html) from
663-
* \ref GeoAPI
662+
* (http://www.geoapi.org/3.0/javadoc/org.opengis.geoapi/org/opengis/util/NameFactory.html)
663+
* from \ref GeoAPI
664664
*/
665665
class NameFactory {
666666
public:

0 commit comments

Comments
 (0)