/**
  * @param string $value
  * @param string $label
  * @param array  $attrs
  */
 public function __construct($value, $label = 'Bathymetry', array $attrs = [])
 {
     #    value
     #  , uri (part put in the uri)
     #  , name (element name in the spec)
     #  , label
     parent::__construct($value, $this->uriPart, $this->namePart, $label);
     $d = [];
     $d[] = $this->getDescription();
     $d[] = 'Bathymetry is numeric depth information about the ranges in which an aquatic species is found.';
     $this->setDescription(implode('; ', $d));
     $this->setAttributes($attrs);
 }
 /**
  * @param string $value
  * @param string $label
  * @param array  $attrs
  */
 public function __construct($value, $label = 'Water Area Overview', array $attrs = [])
 {
     #    value
     #  , uri (part put in the uri)
     #  , name (element name in the spec)
     #  , label
     parent::__construct($value, $this->uriPart, $this->namePart, $label);
     $d = [];
     $d[] = $this->getDescription();
     $d[] = '"Description of the water area in which the aquatic resource is located, including environmental characteristics, jurisdictional limits, ..." (FIGIS-FIRMS 2002 workshop). Water Area Overview might contain a reference list of areas in which a species or aquatic resource is found or employed.';
     $this->setDescription(implode('; ', $d));
     $this->setAttributes($attrs);
 }
 /**
  * @param string $value
  * @param string $label
  * @param array  $attrs
  */
 public function __construct($value, $label = 'Horizontal Distribution', array $attrs = [])
 {
     #    value
     #  , uri (part put in the uri)
     #  , name (element name in the spec)
     #  , label
     parent::__construct($value, $this->uriPart, $this->namePart, $label);
     $d = [];
     $d[] = $this->getDescription();
     $d[] = '"Marine habitat: inshore to offshore range in which the fishery resource is distributed (e.g. littoral, neritic, oceanic ...)." (FIRMS Inventory Guidelines 2011).';
     $this->setDescription(implode('; ', $d));
     $this->setAttributes($attrs);
 }
 /**
  * @param string $value
  * @param string $label
  * @param array  $attrs
  */
 public function __construct($value, $label = 'Bottom Environment', array $attrs = [])
 {
     #    value
     #  , uri (part put in the uri)
     #  , name (element name in the spec)
     #  , label
     parent::__construct($value, $this->uriPart, $this->namePart, $label);
     $d = [];
     $d[] = $this->getDescription();
     $d[] = '"Marine habitat: type of bottom substratum in which the fishery resource is distributed." (FIRMS Inventory Guidelines 2011).';
     $this->setDescription(implode('; ', $d));
     $this->setAttributes($attrs);
 }
 /**
  * @param string $value
  * @param string $label
  * @param array  $attrs
  */
 public function __construct($value, $label = 'Depth Zone', array $attrs = [])
 {
     #    value
     #  , uri (part put in the uri)
     #  , name (element name in the spec)
     #  , label
     parent::__construct($value, $this->uriPart, $this->namePart, $label);
     $d = [];
     $d[] = $this->getDescription();
     $d[] = '"Marine habitat/Fishing ground: Bathymetric depth range in which a fishery resource is distributed or in which a fishery is conducted" (FIRMS Inventory Guidelines 2011).';
     $this->setDescription(implode('; ', $d));
     $this->setAttributes($attrs);
 }
 /**
  * @param string $value
  * @param string $label
  * @param array  $attrs
  */
 public function __construct($value, $label = 'Water Conditions', array $attrs = [])
 {
     #    value
     #  , uri (part put in the uri)
     #  , name (element name in the spec)
     #  , label
     parent::__construct($value, $this->uriPart, $this->namePart, $label);
     $d = [];
     $d[] = $this->getDescription();
     $d[] = 'WaterCondition is information on species affinity related to water conditions or characteristics , e.g. oxygen , temperature etc.';
     $this->setDescription(implode('; ', $d));
     $this->setAttributes($attrs);
 }