Changes between Version 200 and Version 201 of Versions


Ignore:
Timestamp:
Mar 7, 2022, 12:44:31 PM (2 years ago)
Author:
Bang Pham Huu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Versions

    v200 v201  
    149149
    150150- Deprecated network protocols RNP and RPC have been removed; clients compiled against these old protocols will need to be recompiled with the latest client API libs in order to be able to communicate with v10.0 rasdaman servers ([https://doc.rasdaman.org/08_dev-guide-cpp.html#compilation-and-linkage-of-client-programs docs])
     151
     152- Before v10, coverage's metadata generated by rasdaman (`sizeInBytes`, `axisList`) were put under `<ows:Metadata>` selection of each `<wcs:CoverageSummary>` element, however, this is invalid according to OGC WCS 2.0.1 schema, hence, since v10+, rasdaman restructured in WCS GetCapabilities under `<ows:AdditionalParameters>` element instead. For example:
     153
     154{{{
     155        <ows:AdditionalParameters>
     156            <ows:AdditionalParameter>
     157                <ows:Name>sizeInBytes</ows:Name>
     158                <ows:Value>224775000</ows:Value>
     159            </ows:AdditionalParameter>         
     160            <ows:AdditionalParameter>
     161                <ows:Name>axisList</ows:Name>
     162                <ows:Value>Lat,Long</ows:Value>
     163            </ows:AdditionalParameter>
     164        </ows:AdditionalParameters>
     165}}}
    151166
    152167- Remove use of `petascope_admin_user` in petascope.properties ([https://doc.rasdaman.org/05_geo-services-guide.html#security docs]):