You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The MD_ReferenceSystemTypeCode code list defined by ISO 19115-1 is currently not transposed in GeoAPI. That code list has been excluded in current draft because the same functionality can be achieved in the Java language with instanceof statements. For example:
Equivalence for MD_ReferenceSystemTypeCode.projected:
crs instanceof ProjectedCRS
Equivalence for MD_ReferenceSystemTypeCode.geodeticGeographic2D:
etc. Admittedly those equivalences can become complicated. Despite that equivalences exist, we should probably not rely on them and introduce the missing MD_ReferenceSystemTypeCode. Descriptions of that code list can be seen there:
The
MD_ReferenceSystemTypeCode
code list defined by ISO 19115-1 is currently not transposed in GeoAPI. That code list has been excluded in current draft because the same functionality can be achieved in the Java language withinstanceof
statements. For example:Equivalence for
MD_ReferenceSystemTypeCode.projected
:Equivalence for
MD_ReferenceSystemTypeCode.geodeticGeographic2D
:Equivalence for
MD_ReferenceSystemTypeCode.compoundProjectedTemporal
:etc. Admittedly those equivalences can become complicated. Despite that equivalences exist, we should probably not rely on them and introduce the missing
MD_ReferenceSystemTypeCode
. Descriptions of that code list can be seen there:The text was updated successfully, but these errors were encountered: