Creates a new dataspace of a specified type
Procedure:
Signature:
hid_t H5Screate(
H5S_class_t type
)
Fortran90 Interface: h5screate_f
SUBROUTINE h5screate_f(classtype, space_id, hdferr)
IMPLICIT NONE
INTEGER, INTENT(IN) :: classtype ! The type of the dataspace
! to be created. Possible values
! are:
! H5S_SCALAR_F
! H5S_SIMPLE_F
! H5S_NULL_F
INTEGER(HID_T), INTENT(OUT) :: space_id ! Dataspace identifier
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
END SUBROUTINE h5screate_f
Parameters:
H5S_class_t type
IN: Type of dataspace to be created
Description:
H5S_CREATE creates a new dataspace of a particular type
. Currently supported types are as follows:
H5S_SCALAR
H5S_SIMPLE
H5S_NULL
Further dataspace types may be added later.
A scalar dataspace, H5S_SCALAR
, has a single element, though that element may be of a complex datatype, such as a compound or array datatype. By convention, the rank of a scalar dataspace is always 0
(zero); think of it geometrically as a single, dimensionless point, though that point can be complex.
A simple dataspace, H5S_SIMPLE
, consists of a regular array of elements.
A null dataspace, H5S_NULL
, has no data elements.
The dataspace identifier returned by this function can be released with H5S_CLOSE so that resource leaks will not occur.
Returns:
Returns a dataspace identifier if successful; otherwise returns a negative value.
Example:
Include Bitbucket Server for Confluence: An error occured
Connection to Bitbucket Server could not be established. Verify that you have properly configured the Bitbucket Server application link for your Confluence space and that your Bitbucket Server instance is up and running. Error details: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
Include Bitbucket Server for Confluence: An error occured
Connection to Bitbucket Server could not be established. Verify that you have properly configured the Bitbucket Server application link for your Confluence space and that your Bitbucket Server instance is up and running. Error details: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
History:
--- Last Modified: June 05, 2019 | 01:24 PM