/// <summary>
 /// Initializes a new instance of the <see cref="GeocentricCoordinateReferenceSystem" /> class.
 /// </summary>
 /// <param name="identifier">The identifier.</param>
 /// <param name="name">The name.</param>
 /// <param name="remarks">The remarks.</param>
 /// <param name="aliases">The aliases.</param>
 /// <param name="scope">The scope.</param>
 /// <param name="coordinateSystem">The coordinate system.</param>
 /// <param name="datum">The datum.</param>
 /// <param name="areaOfUse">The area of use.</param>
 /// <exception cref="System.ArgumentNullException">
 /// The identifier is null.
 /// or
 /// The coordinate system is null.
 /// </exception>
 /// <exception cref="System.ArgumentException">The unit of measurement of the coordinate system and the datum ellipsoid must be equal or must be an angular unit.</exception>
 public GeocentricCoordinateReferenceSystem(String identifier, String name, String remarks, String[] aliases, String scope, CoordinateSystem coordinateSystem, GeodeticDatum datum, AreaOfUse areaOfUse)
     : base(identifier, name, remarks, aliases, scope, coordinateSystem, datum, areaOfUse)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="GeocentricCoordinateReferenceSystem" /> class.
 /// </summary>
 /// <param name="identifier">The identifier.</param>
 /// <param name="name">The name.</param>
 /// <param name="coordinateSystem">The coordinate system.</param>
 /// <param name="datum">The datum.</param>
 /// <param name="areaOfUse">The area of use.</param>
 /// <exception cref="System.ArgumentNullException">
 /// The identifier is null.
 /// or
 /// The coordinate system is null.
 /// </exception>
 /// <exception cref="System.ArgumentException">The unit of measurement of the coordinate system and the datum ellipsoid must be equal or must be an angular unit.</exception>
 public GeocentricCoordinateReferenceSystem(String identifier, String name, CoordinateSystem coordinateSystem, GeodeticDatum datum, AreaOfUse areaOfUse)
     : this(identifier, name, null, null, null, coordinateSystem, datum, areaOfUse)
 {
 }