Skip to content

Instantly share code, notes, and snippets.

@tomkralidis
Last active August 3, 2020 00:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomkralidis/4518c30b4a392c0f7f20879b124655ce to your computer and use it in GitHub Desktop.
Save tomkralidis/4518c30b4a392c0f7f20879b124655ce to your computer and use it in GitHub Desktop.
Metadata records TinyDB experiment

Overview

This gist demonstrates creating a document store of OGC API - Records records using TinyDB as a backend.

Steps

pip3 install lxml owslib tinydb
python3 create-records-tinydb.py msc-wis-dcpc-discovery-metadata.xml
import json
import os
import sys
from lxml import etree
from owslib.iso import MD_Metadata
from tinydb import TinyDB, Query
index_name = 'tinydb-records.json'
if os.path.exists(index_name):
os.remove(index_name)
db = TinyDB(index_name)
def get_anytext(bag):
"""
generate bag of text for free text searches
accepts list of words, string of XML, or etree.Element
"""
if isinstance(bag, list): # list of words
return ' '.join([_f for _f in bag if _f]).strip()
else: # xml
text_bag = []
if isinstance(bag, (bytes, str)):
# serialize to lxml
bag = etree.fromstring(bag)
for t in bag.xpath('//gco:CharacterString', namespaces={'gco': 'http://www.isotc211.org/2005/gco'}):
if t.text is not None:
text_bag.append(t.text.strip())
return ' '.join(text_bag)
with open(sys.argv[1]) as fh:
xml = etree.parse(sys.argv[1])
for record in xml.findall('//{http://www.isotc211.org/2005/gmd}MD_Metadata'):
m = MD_Metadata(record)
_raw_metadata = m.xml.decode('utf-8')
_anytext = get_anytext(_raw_metadata)
identifier = m.identifier
type_ = m.hierarchy
title = m.identification.title
description = m.identification.abstract
issued = m.datestamp
keywords = []
for keyword_set in m.identification.keywords2:
for keyword in keyword_set.keywords:
keywords.append(keyword)
bbox_crs = 'http://www.opengis.net/def/crs/OGC/1.3/CRS84'
minx = float(m.identification.bbox.minx)
miny = float(m.identification.bbox.miny)
maxx = float(m.identification.bbox.maxx)
maxy = float(m.identification.bbox.maxy)
bbox = [minx, miny, maxx, maxy]
te_begin = m.identification.temporalextent_start
if te_begin == 'missing': te_begin = None
te_end = m.identification.temporalextent_end
json_record = {
'id': identifier,
'type': 'Feature',
'geometry': {
'type': 'Polygon',
'coordinates': [[
[minx, miny],
[minx, maxy],
[maxx, maxy],
[maxx, miny],
[minx, miny]
]]
},
'extents': {
'spatial': {
'bbox': [[bbox]],
'crs': bbox_crs
},
'temporal': {
'interval': [te_begin, te_end],
'trs': 'http://www.opengis.net/def/uom/ISO-8601/0/Gregorian'
}
},
'properties': {
'identifier': identifier,
'@type': type_,
'title': title,
'description': description,
'keywords': keywords,
'_raw_metadata': _raw_metadata,
'_anytext': _anytext
}
}
try:
res = db.insert(json_record)
print(res)
except Exception as err:
print(err)
<?xml version="1.0" encoding="UTF-8"?>
<csw:GetRecordsResponse xmlns:csw="http://www.opengis.net/cat/csw/2.0.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/cat/csw/2.0.2 http://schemas.opengis.net/csw/2.0.2/CSW-discovery.xsd">
<csw:SearchStatus timestamp="2020-04-26T12:17:29" />
<csw:SearchResults numberOfRecordsMatched="178" numberOfRecordsReturned="178" elementSet="full" nextRecord="0">
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>0a7a49df-e464-5649-a094-33965c0345e5</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="en" codeSpace="ISO 639-2">en</gmd:LanguageCode>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty id="contact-pointOfContact">
<gmd:individualName>
<gco:CharacterString>National Inquiry Response Team / Équipe nationale de réponse des demandes du public</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Government of Canada; Environment and Climate Change Canada; Meteorological Service of Canada</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Gouvernement du Canada; Environnement et Changement climatique Canada; Service météorologique du Canada</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:organisationName>
<gmd:positionName xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Équipe nationale de réponse des demandes du public</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>77 Westmorland Street, suite 260</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">77 rue Westmorland, suite 260</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:deliveryPoint>
<gmd:city xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Fredericton</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Frédéricton</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:city>
<gmd:administrativeArea xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>New Brunswick</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Nouveau Brunswick</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z4</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>ECWeather-Meteo@ec.gc.ca</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.ec.gc.ca/</gmd:URL>
</gmd:linkage>
<gmd:protocol>
<gco:CharacterString>WWW:LINK</gco:CharacterString>
</gmd:protocol>
<gmd:function>
<gmd:CI_OnLineFunctionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information" codeSpace="ISOTC211/19115">information</gmd:CI_OnLineFunctionCode>
</gmd:function>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>0700h - 1500h EST</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">0700h - 1500h HNE</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>email</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact" codeSpace="ISOTC211/19115">pointOfContact</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:Date>2018-03-28</gco:Date>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>urn:x-msc-smc:md:weather-meteo::nwp.caps</gco:CharacterString>
</gmd:dataSetURI>
<gmd:locale>
<gmd:PT_Locale id="locale-fr">
<gmd:languageCode>
<gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="fr" codeSpace="ISO 639-2">fr</gmd:LanguageCode>
</gmd:languageCode>
<gmd:characterEncoding>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterEncoding>
</gmd:PT_Locale>
</gmd:locale>
<gmd:spatialRepresentationInfo />
<gmd:referenceSystemInfo>
<gmd:MD_ReferenceSystem>
<gmd:referenceSystemIdentifier>
<gmd:RS_Identifier>
<gmd:authority>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>European Petroleum Survey Group (EPSG) Geodetic Parameter Registry</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>2008-11-12</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
<gmd:citedResponsibleParty>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>European Petroleum Survey Group</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.epsg-registry.org</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="originator" codeSpace="ISOTC211/19115">originator</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:citedResponsibleParty>
</gmd:CI_Citation>
</gmd:authority>
<gmd:code>
<gco:CharacterString>urn:ogc:def:crs:EPSG:4326</gco:CharacterString>
</gmd:code>
<gmd:version>
<gco:CharacterString>6.18.3</gco:CharacterString>
</gmd:version>
</gmd:RS_Identifier>
</gmd:referenceSystemIdentifier>
</gmd:MD_ReferenceSystem>
</gmd:referenceSystemInfo>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Canadian Arctic Prediction System [experimental]</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Système canadien de prévision de l'Arctique [expérimental]</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>2018-01-24</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>2018-03-28</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
<gmd:identifier>
<gmd:MD_Identifier>
<gmd:code>
<gmx:Anchor xlink:actuate="onRequest" xlink:href="http://dx.doi.org/" xlink:title="DOI">doi:</gmx:Anchor>
</gmd:code>
</gmd:MD_Identifier>
</gmd:identifier>
<gmd:otherCitationDetails xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Open Government Licence - Canada (http://open.canada.ca/en/open-government-licence-canada)</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Licence du gouvernement ouvert - Canada (http://ouvert.canada.ca/fr/licence-du-gouvernement-ouvert-canada)</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:otherCitationDetails>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>The Canadian Arctic Prediction System (CAPS) provides an important contribution to various scientific experiments that are part of the Year of polar prediction (YOPP) and provides km-scale NWP forecasts for the canadian Arctic. The CAPS is a GEM-based deterministic prediction system, very similar to the current High Resolution Deterministic Prediction System North domain (HRDPS-North) which will be replaced by the CAPS. CAPS is downscaled from ECCC's Global Deterministic Prediction System, the GDPS, which provides initial conditions and lateral boundary conditions for the atmospheric fields. In the current system, which is not yet coupled to the ice-ocean prediction system, all initial surface fields come from the global configuration of the land-data assimilation system, CaLDAS. The system is running on a 3 km domain of 2250 x 1850 horizontal grid points (covering the entire Arctic basin and Hudson Bay) and 62 vertical levels. The major differences between CAPS and the current HRDPS is the introduction of the predicted particle properties (P3) cloud microphysics scheme, which is responsible for parameterizing the grid-scale clouds and precipitation.</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Le système canadien de prévision de l'Arctique (SCPA) fournira une contribution importante à diverses expériences scientifiques qui font partie de l'année de la prévision polaire (YOPP) et fournira des prévisions numériques du temps à l'échelle kilométrique dans l'Arctique canadien. SCPA est un système de prévision basé sur GEM, très similaire au système à haute résolution de prévision déterministe (SHRPD), dont le domaine nord actuel sera remplacé par le SCPA. C'est un modèle à réduction d'échelle du système de prévision global déterministe (SGPD) de ECCC qui lui fournit les conditions initiales et aux frontières pour les champs atmosphériques. Dans le système actuel, qui n'est pour le moment pas encore couplé avec le système de prévision océan-glace, tous les champs de surface initiaux proviennent de la configuration globale du système d'assimilation de surface CaLDAS. SCPA tourne sur une grille horizontale 2250 x 1850 , d'une résolution approximative de 3 km (couvrant le bassin arctique et la Baie d'Hudson). La différence majeure entre le SCPA et le SHRPD actuel est l'introduction de la nouvelle méthode de calcul pour la microphysique des nuages appelée prédiction des propriétés des particules (P3) qui est responsable du paramétrage des nuages et des précipitations.</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:abstract>
<gmd:credit xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Open Government Licence - Canada (http://open.canada.ca/en/open-government-licence-canada)</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Licence du gouvernement ouvert - Canada (http://ouvert.canada.ca/fr/licence-du-gouvernement-ouvert-canada)</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:credit>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:resourceMaintenance>
<gmd:MD_MaintenanceInformation>
<gmd:maintenanceAndUpdateFrequency>
<gmd:MD_MaintenanceFrequencyCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="continual" codeSpace="ISOTC211/19115">continual</gmd:MD_MaintenanceFrequencyCode>
</gmd:maintenanceAndUpdateFrequency>
</gmd:MD_MaintenanceInformation>
</gmd:resourceMaintenance>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Cloud cover</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Couverture nuageuse</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="" codeSpace="ISOTC211/19115" />
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>International</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Internationale</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="" codeSpace="ISOTC211/19115" />
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Weather and Climate</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Temps et climat</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="" codeSpace="ISOTC211/19115" />
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Weather forecasts</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Prévisions météorologiques</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Precipitation</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Précipitation</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Air temperature</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Température de l'air</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Humidity</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Humidité</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Snow</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Neige</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Wind</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Vent</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Meteorological data</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Données météorologiques</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Atmosphere</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Atmosphère</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="" codeSpace="ISOTC211/19115" />
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions" codeSpace="ISOTC211/19115">otherRestrictions</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString />
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString />
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:spatialRepresentationType>
<gmd:MD_SpatialRepresentationTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="grid" codeSpace="ISOTC211/19115">grid</gmd:MD_SpatialRepresentationTypeCode>
</gmd:spatialRepresentationType>
<gmd:language>
<gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="eng; CAN" codeSpace="ISO 639-2">eng; CAN</gmd:LanguageCode>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:extentTypeCode>
<gco:Boolean>1</gco:Boolean>
</gmd:extentTypeCode>
<gmd:westBoundLongitude>
<gco:Decimal>-136.6</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>26.6</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>46.7</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>54.3</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>2018-01-24</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
</gmd:EX_Extent>
</gmd:extent>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty id="contact-distributor">
<gmd:individualName>
<gco:CharacterString>National Inquiry Response Team / Équipe nationale de réponse des demandes du public</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Government of Canada; Environment and Climate Change Canada; Meteorological Service of Canada</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Gouvernement du Canada; Environnement et Changement climatique Canada; Service météorologique du Canada</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:organisationName>
<gmd:positionName xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Équipe nationale de réponse des demandes du public</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>77 Westmorland Street, suite 260</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">77 rue Westmorland, suite 260</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:deliveryPoint>
<gmd:city xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Fredericton</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Frédéricton</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:city>
<gmd:administrativeArea xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>New Brunswick</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Nouveau Brunswick</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z4</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>ECWeather-Meteo@ec.gc.ca</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.ec.gc.ca/</gmd:URL>
</gmd:linkage>
<gmd:protocol>
<gco:CharacterString>WWW:LINK</gco:CharacterString>
</gmd:protocol>
<gmd:function>
<gmd:CI_OnLineFunctionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information" codeSpace="ISOTC211/19115">information</gmd:CI_OnLineFunctionCode>
</gmd:function>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>0700h - 1500h EST</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">0700h - 1500h HNE</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>email</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
</gmd:MD_Distributor>
</gmd:distributor>
<gmd:transferOptions>
<gmd:MD_DigitalTransferOptions>
<gmd:onLine>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>amqp://dd.alpha.meteo.gc.ca/yopp.model_caps.grib2.#</gmd:URL>
</gmd:linkage>
<gmd:protocol>
<gco:CharacterString>OASIS:AMQP</gco:CharacterString>
</gmd:protocol>
<gmd:name xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>MSC Datamart AMQP</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Datamart du SMC AMQP</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:name>
<gmd:description xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>The HTTP Open Data server called 'MSC Datamart' is a real-time on-demand download service. The user must, in effect, act to retrieve a particular data, and the request will only be successful if the data was previously published on the server. The exact time of publication of the data on the Datamart is more or less predictable: a new weather warning can appear at any time, while other data are produced on a fairly regular schedule (but still subject to occasional interruptions). However, it may be important for some applications that data is obtained as soon as it is published. Attempts to obtain Datamart data as soon as they appear on the server generate numerous premature queries that are obviously unsuccessful. This motivates the use of a more elegant and convenient solution for users.</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Le serveur de données ouvertes HTTP appelé le 'Datamart du SMC' est un service de téléchargement en temps réel, sur demande. L'usager doit en effet agir pour demander une donnée particulière, et la demande n'aura de succès que si la donnée a été préalablement publiée sur le serveur. Le moment exact de l'apparition des données sur le Datamart est plus ou moins prévisible : un nouvel avertissement météorologique peut y apparaître à tout moment, alors que certaines autres données ont un horaire de production assez régulier (mais tout de même sujet à des perturbations occasionnelles). Or, il peut être important pour certaines applications d'obtenir des données dès leur publication. Les tentatives d'obtenir des données du Datamart dès leur apparition sur le serveur génèrent de nombreuses requêtes prématurées qui sont évidemment infructueuses. Ceci motive l'utilisation d'une solution plus élégante et plus commode pour les usagers.</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:description>
<gmd:function>
<gmd:CI_OnLineFunctionCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download" codeSpace="ISOTC211/19115">download</gmd:CI_OnLineFunctionCode>
</gmd:function>
</gmd:CI_OnlineResource>
</gmd:onLine>
<gmd:onLine>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://dd.alpha.meteo.gc.ca/yopp/model_caps/grib2/</gmd:URL>
</gmd:linkage>
<gmd:protocol>
<gco:CharacterString>WWW:LINK</gco:CharacterString>
</gmd:protocol>
<gmd:name xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>MSC Datamart</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Datamart du SMC</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:name>
<gmd:description xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>The Meteorological Service of Canada (MSC) HTTP data server is a source of several raw meteorological data types and forecast data. This service is aimed at specialized users with good meteorological and IT knowledge, and is mainly meant to be accessed in an automatic manner via the internet (e.g. with scripts). The server's URL is http://dd.weather.gc.ca/</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Le Service météorologique du Canada (SMC) met à la disposition des usagers spécialisés une multitude de données météorologiques et prévisionnelles sur son serveur de données HTTP, à l'adresse http://dd.meteo.gc.ca/ Les usagers qui désirent accéder à ces données doivent avoir une bonne connaissance de la météorologie et de l'informatique afin d'en faire bon usage. Le mode d'accès privilégié est via des routines d'accès automatiques (scripts).</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:description>
<gmd:function>
<gmd:CI_OnLineFunctionCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download" codeSpace="ISOTC211/19115">download</gmd:CI_OnLineFunctionCode>
</gmd:function>
</gmd:CI_OnlineResource>
</gmd:onLine>
<gmd:onLine>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://geo.weather.gc.ca/geomet-beta/?lang=E&amp;service=WMS&amp;request=GetCapabilities</gmd:URL>
</gmd:linkage>
<gmd:protocol>
<gco:CharacterString>OGC:WMS</gco:CharacterString>
</gmd:protocol>
<gmd:name xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>CAPS_TT</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">CAPS_TT</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:name>
<gmd:description xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>GeoMet provides access to the Environment Canada's Meteorological Service of Canada (MSC) raw numerical weather prediction (NWP) model data layers and the weather radar mosaic via two Open Geospatial Consortium web service standards Web Map Service (WMS) and Keyhole Markup Language (KML). Meteorological layers are dynamically served through the Web Map Service (WMS) standard to enable end-users to display meteorological data within their own tools and on interactive web maps, and served through KML standard for easy display in tools such as Google Earth.</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">GeoMet donne accès aux données brutes de modèles de prévision numérique du temps et de la mosaïque des radars météo du Service météorologique du Canada (SMC) d'Environnement Canada par le biais de deux standards de l'Open Geospatial Consortium le WMS et le KML. Les couches météorologiques sont servies dynamiquement par le biais du standard Web Map Service (WMS) afin de permettre aux utilisateurs d'afficher les données météorologiques dans leurs propres outils et sur des cartes interactives en ligne, et servies sous le standard Keyhole Markup Language (KML) pour l'affichage dans des outils facile d'utilisation tels Google Earth.</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:description>
<gmd:function>
<gmd:CI_OnLineFunctionCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download" codeSpace="ISOTC211/19115">download</gmd:CI_OnLineFunctionCode>
</gmd:function>
</gmd:CI_OnlineResource>
</gmd:onLine>
</gmd:MD_DigitalTransferOptions>
</gmd:transferOptions>
</gmd:MD_Distribution>
</gmd:distributionInfo>
<gmd:metadataMaintenance>
<gmd:MD_MaintenanceInformation>
<gmd:maintenanceAndUpdateFrequency>
<gmd:MD_MaintenanceFrequencyCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="continual" codeSpace="ISOTC211/19115">continual</gmd:MD_MaintenanceFrequencyCode>
</gmd:maintenanceAndUpdateFrequency>
<gmd:maintenanceNote>
<gco:CharacterString>This metadata record was generated by pygeometa-0.4.dev0 (https://github.com/geopython/pygeometa)</gco:CharacterString>
</gmd:maintenanceNote>
</gmd:MD_MaintenanceInformation>
</gmd:metadataMaintenance>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>8cfa9a68-ba69-59ca-a428-667ec64d1839</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="en" codeSpace="ISO 639-2">en</gmd:LanguageCode>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty id="contact-pointOfContact">
<gmd:individualName>
<gco:CharacterString>National Inquiry Response Team / Équipe nationale de réponse des demandes du public</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Government of Canada; Environment and Climate Change Canada; Meteorological Service of Canada</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Gouvernement du Canada; Environnement et Changement climatique Canada; Service météorologique du Canada</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:organisationName>
<gmd:positionName xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Équipe nationale de réponse des demandes du public</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>77 Westmorland Street, suite 260</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">77 rue Westmorland, suite 260</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:deliveryPoint>
<gmd:city xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Fredericton</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Frédéricton</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:city>
<gmd:administrativeArea xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>New Brunswick</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Nouveau Brunswick</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z4</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>ECWeather-Meteo@ec.gc.ca</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.ec.gc.ca/</gmd:URL>
</gmd:linkage>
<gmd:protocol>
<gco:CharacterString>WWW:LINK</gco:CharacterString>
</gmd:protocol>
<gmd:function>
<gmd:CI_OnLineFunctionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information" codeSpace="ISOTC211/19115">information</gmd:CI_OnLineFunctionCode>
</gmd:function>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>0700h - 1500h EST</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">0700h - 1500h HNE</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>email</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact" codeSpace="ISOTC211/19115">pointOfContact</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:Date>2018-03-28</gco:Date>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>urn:x-msc-smc:md:weather-meteo::nwp.riops</gco:CharacterString>
</gmd:dataSetURI>
<gmd:locale>
<gmd:PT_Locale id="locale-fr">
<gmd:languageCode>
<gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="fr" codeSpace="ISO 639-2">fr</gmd:LanguageCode>
</gmd:languageCode>
<gmd:characterEncoding>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterEncoding>
</gmd:PT_Locale>
</gmd:locale>
<gmd:spatialRepresentationInfo />
<gmd:referenceSystemInfo>
<gmd:MD_ReferenceSystem>
<gmd:referenceSystemIdentifier>
<gmd:RS_Identifier>
<gmd:authority>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>European Petroleum Survey Group (EPSG) Geodetic Parameter Registry</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>2008-11-12</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
<gmd:citedResponsibleParty>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>European Petroleum Survey Group</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.epsg-registry.org</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="originator" codeSpace="ISOTC211/19115">originator</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:citedResponsibleParty>
</gmd:CI_Citation>
</gmd:authority>
<gmd:code>
<gco:CharacterString>urn:ogc:def:crs:EPSG:4326</gco:CharacterString>
</gmd:code>
<gmd:version>
<gco:CharacterString>6.18.3</gco:CharacterString>
</gmd:version>
</gmd:RS_Identifier>
</gmd:referenceSystemIdentifier>
</gmd:MD_ReferenceSystem>
</gmd:referenceSystemInfo>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Regional Ice-Ocean Prediction System [experimental]</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Système régional de prévision océan-glace [expérimental]</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>2018-01-29</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>2018-03-28</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
<gmd:identifier>
<gmd:MD_Identifier>
<gmd:code>
<gmx:Anchor xlink:actuate="onRequest" xlink:href="http://dx.doi.org/" xlink:title="DOI">doi:</gmx:Anchor>
</gmd:code>
</gmd:MD_Identifier>
</gmd:identifier>
<gmd:otherCitationDetails xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Open Government Licence - Canada (http://open.canada.ca/en/open-government-licence-canada)</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Licence du gouvernement ouvert - Canada (http://ouvert.canada.ca/fr/licence-du-gouvernement-ouvert-canada)</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:otherCitationDetails>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>The Regional Ice-Ocean Prediction System (RIOPS) is based on the NEMO-CICE ice-ocean model and produces regional sea ice and ocean analyses and 2 day forecasts daily based at [00, 12] UTC on a subset of the 1/12° resolution global tri-polar grid (ORCA12). RIOPS includes a 3DVar ice concentration analysis (assimilating sattelite remote sensing and Canadian Ice Service ice charts) while the large scales of the ocean analysis are constrained by spectrally nudging the temperature and salinity fields to those of the CCMEP Global Ice Ocean Prediction System (which itself includes a full multivariate assimilation system that combines satellite observations with in situ observations). Surface air-sea fluxes for 2 day forecasts are calculated by merging surface fields of the CCMEP atmospheric Global and Regional Deterministic Prediction Systems.</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Le système régional de prévision océan-glace (SRPOG) utilise le modèle océan-glace NEMO-CICE et fournit des analyses et prévisions globales de 2 jours de l'océan et de la glace marine, quotidiennement à partir de [00, 12] UTC. Le SRPOG comprend une analyse 3DVar de la concentration de la glace (assimilant des observations satellitaires et des cartes de glace du service canadien des glaces) alors que les larges échelles de l'analyse océanique sont constraintes en rappelant spectralement les champs de température et de salinité vers ceux du système global de prévision océan-glace du CCMEP (qui lui inclut un système d'assimilation multivarié qui ingère des observations satellitaires ainsi que des observations in-situ). Les flux atmosphériques servant aux champs d'essai et aux prévisions de 2 jours sont calculés à partir d'une fusion des champs de surface des prévisions atmosphériques issues du système global et régional de prévision déterministe du CPMEC.</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:abstract>
<gmd:credit xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Open Government Licence - Canada (http://open.canada.ca/en/open-government-licence-canada)</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Licence du gouvernement ouvert - Canada (http://ouvert.canada.ca/fr/licence-du-gouvernement-ouvert-canada)</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:credit>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:resourceMaintenance>
<gmd:MD_MaintenanceInformation>
<gmd:maintenanceAndUpdateFrequency>
<gmd:MD_MaintenanceFrequencyCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="continual" codeSpace="ISOTC211/19115">continual</gmd:MD_MaintenanceFrequencyCode>
</gmd:maintenanceAndUpdateFrequency>
</gmd:MD_MaintenanceInformation>
</gmd:resourceMaintenance>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Sea ice-ocean forecast</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Prévision océan-glace</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="" codeSpace="ISOTC211/19115" />
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>International</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Internationale</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="" codeSpace="ISOTC211/19115" />
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Weather and Climate</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Temps et climat</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="" codeSpace="ISOTC211/19115" />
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Weather forecasts</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Prévisions météorologiques</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Meteorological data</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Données météorologiques</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Ice, Water</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Glace</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Arctic</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Eau</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Coastal waters</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Arctique</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Oceans</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Eaux côtières</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Polar regions</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Océan</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Atmosphere</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Atmosphère</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="" codeSpace="ISOTC211/19115" />
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions" codeSpace="ISOTC211/19115">otherRestrictions</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString />
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString />
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:spatialRepresentationType>
<gmd:MD_SpatialRepresentationTypeCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="grid" codeSpace="ISOTC211/19115">grid</gmd:MD_SpatialRepresentationTypeCode>
</gmd:spatialRepresentationType>
<gmd:language>
<gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="eng; CAN" codeSpace="ISO 639-2">eng; CAN</gmd:LanguageCode>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:extentTypeCode>
<gco:Boolean>1</gco:Boolean>
</gmd:extentTypeCode>
<gmd:westBoundLongitude>
<gco:Decimal>-138.7</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>20.9</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>30.5</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>41.4</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>2016-06-21</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
</gmd:EX_Extent>
</gmd:extent>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty id="contact-distributor">
<gmd:individualName>
<gco:CharacterString>National Inquiry Response Team / Équipe nationale de réponse des demandes du public</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Government of Canada; Environment and Climate Change Canada; Meteorological Service of Canada</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Gouvernement du Canada; Environnement et Changement climatique Canada; Service météorologique du Canada</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:organisationName>
<gmd:positionName xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Équipe nationale de réponse des demandes du public</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>77 Westmorland Street, suite 260</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">77 rue Westmorland, suite 260</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:deliveryPoint>
<gmd:city xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>Fredericton</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Frédéricton</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:city>
<gmd:administrativeArea xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>New Brunswick</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Nouveau Brunswick</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z4</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>ECWeather-Meteo@ec.gc.ca</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.ec.gc.ca/</gmd:URL>
</gmd:linkage>
<gmd:protocol>
<gco:CharacterString>WWW:LINK</gco:CharacterString>
</gmd:protocol>
<gmd:function>
<gmd:CI_OnLineFunctionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information" codeSpace="ISOTC211/19115">information</gmd:CI_OnLineFunctionCode>
</gmd:function>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>0700h - 1500h EST</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">0700h - 1500h HNE</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>email</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
</gmd:MD_Distributor>
</gmd:distributor>
<gmd:transferOptions>
<gmd:MD_DigitalTransferOptions>
<gmd:onLine>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>amqp://dd.alpha.weather.gc.ca/yopp.model_riops.netcdf.forecast.polar_stereographic.#</gmd:URL>
</gmd:linkage>
<gmd:protocol>
<gco:CharacterString>OASIS:AMQP</gco:CharacterString>
</gmd:protocol>
<gmd:name xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>MSC Datamart AMQP</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Datamart du SMC AMQP</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:name>
<gmd:description xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>The HTTP Open Data server called 'MSC Datamart' is a real-time on-demand download service. The user must, in effect, act to retrieve a particular data, and the request will only be successful if the data was previously published on the server. The exact time of publication of the data on the Datamart is more or less predictable: a new weather warning can appear at any time, while other data are produced on a fairly regular schedule (but still subject to occasional interruptions). However, it may be important for some applications that data is obtained as soon as it is published. Attempts to obtain Datamart data as soon as they appear on the server generate numerous premature queries that are obviously unsuccessful. This motivates the use of a more elegant and convenient solution for users.</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Le serveur de données ouvertes HTTP appelé le 'Datamart du SMC' est un service de téléchargement en temps réel, sur demande. L'usager doit en effet agir pour demander une donnée particulière, et la demande n'aura de succès que si la donnée a été préalablement publiée sur le serveur. Le moment exact de l'apparition des données sur le Datamart est plus ou moins prévisible : un nouvel avertissement météorologique peut y apparaître à tout moment, alors que certaines autres données ont un horaire de production assez régulier (mais tout de même sujet à des perturbations occasionnelles). Or, il peut être important pour certaines applications d'obtenir des données dès leur publication. Les tentatives d'obtenir des données du Datamart dès leur apparition sur le serveur génèrent de nombreuses requêtes prématurées qui sont évidemment infructueuses. Ceci motive l'utilisation d'une solution plus élégante et plus commode pour les usagers.</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:description>
<gmd:function>
<gmd:CI_OnLineFunctionCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download" codeSpace="ISOTC211/19115">download</gmd:CI_OnLineFunctionCode>
</gmd:function>
</gmd:CI_OnlineResource>
</gmd:onLine>
<gmd:onLine>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://dd.alpha.weather.gc.ca/yopp/model_riops/netcdf/forecast/polar_stereographic/</gmd:URL>
</gmd:linkage>
<gmd:protocol>
<gco:CharacterString>WWW:LINK</gco:CharacterString>
</gmd:protocol>
<gmd:name xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>MSC Datamart</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Datamart du SMC</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:name>
<gmd:description xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>The Meteorological Service of Canada (MSC) HTTP data server is a source of several raw meteorological data types and forecast data. This service is aimed at specialized users with good meteorological and IT knowledge, and is mainly meant to be accessed in an automatic manner via the internet (e.g. with scripts). The server's URL is http://dd.weather.gc.ca/</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">Le Service météorologique du Canada (SMC) met à la disposition des usagers spécialisés une multitude de données météorologiques et prévisionnelles sur son serveur de données HTTP, à l'adresse http://dd.meteo.gc.ca/ Les usagers qui désirent accéder à ces données doivent avoir une bonne connaissance de la météorologie et de l'informatique afin d'en faire bon usage. Le mode d'accès privilégié est via des routines d'accès automatiques (scripts).</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:description>
<gmd:function>
<gmd:CI_OnLineFunctionCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download" codeSpace="ISOTC211/19115">download</gmd:CI_OnLineFunctionCode>
</gmd:function>
</gmd:CI_OnlineResource>
</gmd:onLine>
<gmd:onLine>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://geo.weather.gc.ca/geomet-beta/?lang=E&amp;service=WMS&amp;request=GetCapabilities</gmd:URL>
</gmd:linkage>
<gmd:protocol>
<gco:CharacterString>OGC:WMS</gco:CharacterString>
</gmd:protocol>
<gmd:name xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>OCEAN.RIOPS.2D_TM2</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">OCEAN.RIOPS.2D_TM2</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:name>
<gmd:description xsi:type="gmd:PT_FreeText_PropertyType">
<gco:CharacterString>GeoMet provides access to the Environment Canada's Meteorological Service of Canada (MSC) raw numerical weather prediction (NWP) model data layers and the weather radar mosaic via two Open Geospatial Consortium web service standards Web Map Service (WMS) and Keyhole Markup Language (KML). Meteorological layers are dynamically served through the Web Map Service (WMS) standard to enable end-users to display meteorological data within their own tools and on interactive web maps, and served through KML standard for easy display in tools such as Google Earth.</gco:CharacterString>
<gmd:PT_FreeText>
<gmd:textGroup>
<gmd:LocalisedCharacterString locale="#fr">GeoMet donne accès aux données brutes de modèles de prévision numérique du temps et de la mosaïque des radars météo du Service météorologique du Canada (SMC) d'Environnement Canada par le biais de deux standards de l'Open Geospatial Consortium le WMS et le KML. Les couches météorologiques sont servies dynamiquement par le biais du standard Web Map Service (WMS) afin de permettre aux utilisateurs d'afficher les données météorologiques dans leurs propres outils et sur des cartes interactives en ligne, et servies sous le standard Keyhole Markup Language (KML) pour l'affichage dans des outils facile d'utilisation tels Google Earth.</gmd:LocalisedCharacterString>
</gmd:textGroup>
</gmd:PT_FreeText>
</gmd:description>
<gmd:function>
<gmd:CI_OnLineFunctionCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download" codeSpace="ISOTC211/19115">download</gmd:CI_OnLineFunctionCode>
</gmd:function>
</gmd:CI_OnlineResource>
</gmd:onLine>
</gmd:MD_DigitalTransferOptions>
</gmd:transferOptions>
</gmd:MD_Distribution>
</gmd:distributionInfo>
<gmd:metadataMaintenance>
<gmd:MD_MaintenanceInformation>
<gmd:maintenanceAndUpdateFrequency>
<gmd:MD_MaintenanceFrequencyCode codeList="http://wis.wmo.int/2011/schemata/iso19139_2007/schema/resources/Codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="continual" codeSpace="ISOTC211/19115">continual</gmd:MD_MaintenanceFrequencyCode>
</gmd:maintenanceAndUpdateFrequency>
<gmd:maintenanceNote>
<gco:CharacterString>This metadata record was generated by pygeometa-0.4.dev0 (https://github.com/geopython/pygeometa)</gco:CharacterString>
</gmd:maintenanceNote>
</gmd:MD_MaintenanceInformation>
</gmd:metadataMaintenance>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.5.6</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:26Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://www.dev.alerting.ca/oraviewer/product/</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>Local/Area Forecast</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1970-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>Weather forecast for a specific geographical region</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Forecast
Region
Geographical</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="none" codeSpace="ISOTC211/19115">none</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-141.0</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-52.0</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1970</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>http://www.wmo.int/pages/prog/www/WIS/Publications/49%20(Technical%20Regulations)/49%20-%20Volume%20I/49_II_E.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.7</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:27Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=cs&amp;location=cn</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>CLIMAT TEMP</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date gco:nilReason="unknown" />
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>The reported aerological parameters in CLIMAT TEMP reports from weather stations include monthly mean values for pressure, temperature, dew point depression at station level, and geopotential, air temperature, dew-point depression, wind characteristics at specific pressure surfaces.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>monthly mean values for pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>dew point depression at station level</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>and geopotential</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>air temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>dew-point depression</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>wind characteristics at specific pressure surfaces.</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-141.0</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-52.0</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition indeterminatePosition="unknown" />
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.5.7</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>"+ 819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>"+ 506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>CAN</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString />
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:27Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString />
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>Guidance</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date gco:nilReason="missing" />
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString />
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="ongoing" codeSpace="ISOTC211/19115">ongoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString />
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="" codeSpace="ISOTC211/19115" />
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-141.0</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-52.0</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>missing</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>http://www.wmo.int/pages/prog/amp/pwsp/publicationsguidelines_en.htm</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.9.5</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:28Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString />
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>Low visibility warning</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>2008-06-28</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>Low visibility statements are provided only when visibility is reduced to a threshold value of one nautical mile or less. The visibility statement is embedded in the regular marine forecast bulletins.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Low visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Nautical Mile</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Threshold</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Fog</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Fog banks</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Fog patches</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Ice fog</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea smoke</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Smoke</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Blizzard</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Blowing snow</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Mist</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Ice pellets</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Rain/snow mix</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Moderate to heavy freezing rain</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Moderate to heavy rain or thundershowers</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Moderate to heavy drizzle</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="None" codeSpace="ISOTC211/19115">None</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-141.0</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-46.0</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>40.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>87.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>2008-06-28</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>http://www.wmo.int/pages/prog/amp/mmop/documents/GuideChp6.html</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.3.3</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>"+ 819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>"+ 506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>CAN</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString />
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:28Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/bulletins/alphanumeric/</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>WAVEOB</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date gco:nilReason="missing" />
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString />
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="ongoing" codeSpace="ISOTC211/19115">ongoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString />
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted - EC use only (External access is not permitted except selected universities around the world and to WMO under international agreement)" codeSpace="ISOTC211/19115">restricted - EC use only (External access is not permitted except selected universities around the world and to WMO under international agreement)</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-141.0</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-52.0</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>missing</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.9.2</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:29Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>httphttp://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=wu&amp;location=cn</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>Storm warning</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>2008-06-28</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>Storm warnings are issued for sustained winds of 48 to 63 knots. The warning statement is embedded in the regular marine forecast bulletins.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Storm</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Warning</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Knots</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Regular marine forecast</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="None" codeSpace="ISOTC211/19115">None</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-141.0</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-46.0</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>40.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>87.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>2008-06-28</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>http://www.wmo.int/pages/prog/amp/mmop/documents/GuideChp6.html</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.6.3</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>"+ 819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>"+ 506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>CAN</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString />
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:29Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString />
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>Temperature Extremes</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date gco:nilReason="missing" />
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="publication" codeSpace="ISOTC211/19115">publication</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString />
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="ongoing" codeSpace="ISOTC211/19115">ongoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString />
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="" codeSpace="ISOTC211/19115" />
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-141.0</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-52.0</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>missing</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>http://www.wmo.int/pages/prog/amp/pwsp/publicationsguidelines_en.htm</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.1</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:30Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=09</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN09</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71930</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71931</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71934</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71935</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71936</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71937</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71938</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71940</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71943</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71944</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71945</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71946</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71948</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71949</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71951</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71953</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71957</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71964</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71966</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71968</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-139.133333333</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-53.5811111111</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>15.9</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>782.4</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.2</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:30Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=08</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN08</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71893</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71894</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71896</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71897</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71898</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71899</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71902</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71905</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71906</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71907</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71909</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71911</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71912</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71915</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71917</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71922</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71924</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71925</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71926</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71928</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-133.058057778</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-61.6833333333</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>6.7</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>988.2</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.3</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:30Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=01</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN01</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71043</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71045</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71050</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71051</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71052</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71058</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71066</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71068</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71069</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71076</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71077</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71079</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71082</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71083</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71090</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71091</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71092</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71093</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71094</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71095</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71101</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71104</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71107</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71108</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71109</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-133.941666667</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-61.3833333333</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>6.4</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>940.3</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.4</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:30Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=03</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN03</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71397</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71400</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71403</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71411</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71412</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71421</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71430</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71431</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71432</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71433</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71435</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71441</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71443</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71444</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71447</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71467</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71472</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71474</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71510</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71538</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71600</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71601</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-132.771946944</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-56.0666666667</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>5</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1056.7</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.5</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:30Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=02</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN02</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71114</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71120</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71122</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71123</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71125</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71129</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71131</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71135</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71137</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71140</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71145</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71148</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71185</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71188</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71200</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71207</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71260</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-123.32525</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-57.5811111111</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>19</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1396.9</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.6</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:30Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=05</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN05</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71725</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71726</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71727</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71728</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71730</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71731</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71735</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71738</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71739</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71799</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71800</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71801</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71803</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71807</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71808</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71809</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71810</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71811</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71813</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71814</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71815</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-123.425833333</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-52.7427777778</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>7.7</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>444.708</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.7</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:31Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=04</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN04</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71603</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71607</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71609</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71610</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71621</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71623</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71624</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71625</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71627</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71628</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71630</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71631</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71633</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71705</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71706</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71707</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71709</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71714</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71715</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71718</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71719</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-81.1511111111</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-60.0481388889</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>4</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>414.5</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.8</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:31Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=07</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN07</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71864</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71865</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71867</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71868</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71869</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71871</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71877</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71878</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71879</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71880</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71882</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71883</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71887</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71889</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71891</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71892</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-123.181944444</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-101.1</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>4.3</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1084.1</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.9</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:31Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=06</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN06</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71816</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71817</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71818</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71822</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71825</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71827</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71828</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71831</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71832</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71834</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71841</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71842</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71844</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71845</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71850</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71852</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71854</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71858</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71861</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71862</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71863</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-104.666666667</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-55.8336111111</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>11.6</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>599.8</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:37Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice. ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI;SM;SN</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-140.8475</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-52.7427777778</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>0.0</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>2543.0</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.10</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:31Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SM&amp;amp;location=CN&amp;amp;header=38</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SMCN38</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71851</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71857</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71860</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71872</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71874</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71876</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71884</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71885</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71886</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71888</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71890</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71895</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-123.870277778</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-98.2666666667</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>28</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1200.607</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.11</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:31Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SM&amp;amp;location=CN&amp;amp;header=39</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SMCN39</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71950</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71952</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71954</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71956</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71959</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71960</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71962</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71963</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71967</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71970</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71971</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71972</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71973</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71974</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71975</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71976</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71977</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71978</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71979</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71980</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71981</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71982</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71983</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71984</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71985</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71986</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71987</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71988</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71989</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71990</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71999</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-140.8475</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-57.9166666667</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>1.5</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1448</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.12</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:31Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SM&amp;amp;location=CN&amp;amp;header=30</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SMCN30</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71051</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71055</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71057</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71059</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71061</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71062</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71064</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71065</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71067</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71070</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71072</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71073</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71074</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71075</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71078</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71084</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71085</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71087</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71088</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71089</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71096</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71097</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71098</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71099</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-126.083891667</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-55.3500002778</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>12.2</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>965</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.13</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:31Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SM&amp;amp;location=CN&amp;amp;header=31</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SMCN31</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71150</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71151</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71152</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71153</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71154</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71155</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71156</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71157</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71158</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71159</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71160</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71161</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71162</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71163</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71164</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71165</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71166</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71167</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71168</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71170</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71171</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71172</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71174</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71175</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71176</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71177</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71178</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71179</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71180</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71181</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71183</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71184</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71186</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71187</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71189</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71190</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71191</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71192</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71193</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71196</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71197</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71198</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71199</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-130.228055556</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-53.1141666667</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>4</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1289</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.14</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:32Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SM&amp;amp;location=CN&amp;amp;header=32</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SMCN32</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71250</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71251</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71252</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71253</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71254</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71255</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71256</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71257</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71258</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71259</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71261</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71263</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71264</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71265</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71266</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71267</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71269</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71270</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71271</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71272</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71273</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71274</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71275</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71276</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71277</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71278</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71279</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71281</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71282</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71283</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71284</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71285</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71286</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71287</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71288</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71289</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71290</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71291</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71292</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71293</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71294</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71295</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71296</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71297</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71298</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71299</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-123.118613611</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-63.5133333333</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>18.69</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1402.1</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.15</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:32Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SM&amp;amp;location=CN&amp;amp;header=33</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SMCN33</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71350</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71351</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71352</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71353</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71354</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71355</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71356</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71357</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71358</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71359</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71360</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71361</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71362</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71363</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71364</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71365</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71366</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71368</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71369</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71370</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71371</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71372</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71373</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71374</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71375</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71376</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71377</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71378</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71379</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71380</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71381</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71382</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71383</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71384</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71385</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71386</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71387</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71388</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71389</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71390</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71391</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71392</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71393</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71395</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71398</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71399</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-133.516666667</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-60.0616666667</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>6</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1081</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.16</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:32Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SM&amp;amp;location=CN&amp;amp;header=34</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SMCN34</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71488</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71450</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71451</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71452</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71453</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71454</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71455</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71456</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71457</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71458</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71459</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71460</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71461</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71462</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71463</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71464</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71465</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71466</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71468</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71470</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71471</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71473</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71475</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71476</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71477</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71478</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71479</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71480</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71481</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71482</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71483</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71484</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71485</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71486</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71487</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71489</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71490</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71491</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71492</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71493</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71494</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71495</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71496</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71497</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71498</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71499</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-131.661325833</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-64.3469444444</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>6.6</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1145</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.17</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:32Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SM&amp;amp;location=CN&amp;amp;header=35</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SMCN35</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71550</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71551</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71552</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71553</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71554</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71555</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71556</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71557</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71558</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71559</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71560</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71563</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71564</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71565</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71566</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71567</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71568</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71569</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71570</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71571</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71572</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71573</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71574</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71575</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71576</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71577</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71578</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71579</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71580</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71581</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71582</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71583</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71584</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71585</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71586</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71588</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71589</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71590</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71592</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71593</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71598</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71599</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-125.991611111</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-53.9744444444</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>4.9</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>2420</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.18</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:32Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SM&amp;amp;location=CN&amp;amp;header=36</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SMCN36</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71665</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71666</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71667</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71668</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71669</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71670</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71671</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71672</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71673</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71674</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71675</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71679</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71680</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71681</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71682</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71683</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71684</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71685</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71686</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71687</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71688</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71689</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71690</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71691</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71692</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71694</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71695</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71696</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71697</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71699</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-133.501777778</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-54.5852780556</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>6</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1643</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.19</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:32Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SM&amp;amp;location=CN&amp;amp;header=37</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SMCN37</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71744</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71750</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71751</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71752</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71753</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71754</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71755</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71756</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71758</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71760</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71761</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71762</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71763</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71765</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71766</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71767</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71768</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71769</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71770</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71771</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71772</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71773</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71774</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71775</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71776</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71777</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71778</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71779</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71780</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71781</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71782</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71783</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71784</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71785</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71786</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71787</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71788</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71789</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71791</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71792</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71793</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71794</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71795</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71796</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71797</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-135.097777778</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-60.0416666667</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>3</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1615</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.20</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:32Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=34</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN34</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71488</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71450</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71451</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71452</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71453</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71454</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71455</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71456</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71457</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71458</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71459</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71460</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71461</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71462</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71463</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71464</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71465</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71466</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71468</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71470</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71471</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71473</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71475</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71476</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71477</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71478</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71479</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71480</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71481</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71482</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71483</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71484</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71485</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71486</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71487</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71489</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71490</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71491</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71492</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71493</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71494</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71495</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71496</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71497</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71498</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71499</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-131.661325833</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-64.3469444444</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>6.6</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1145</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.21</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:32Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=35</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN35</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71550</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71551</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71552</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71553</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71554</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71555</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71556</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71557</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71558</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71559</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71560</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71563</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71564</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71565</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71566</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71567</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71568</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71569</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71570</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71571</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71572</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71573</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71574</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71575</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71576</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71577</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71578</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71579</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71580</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71581</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71582</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71583</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71584</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71585</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71586</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71588</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71589</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71590</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71592</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71593</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71598</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71599</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-125.991611111</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-53.9744444444</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>4.9</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>2420</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.22</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:33Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=36</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN36</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71665</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71666</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71667</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71668</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71669</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71670</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71671</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71672</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71673</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71674</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71675</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71679</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71680</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71681</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71682</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71683</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71684</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71685</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71686</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71687</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71688</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71689</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71690</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71691</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71692</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71694</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71695</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71696</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71697</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71699</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-133.501777778</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-54.5852780556</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>6</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1643</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.23</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:33Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=37</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN37</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71750</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71751</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71752</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71753</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71754</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71755</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71756</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71758</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71760</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71761</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71762</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71763</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71765</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71766</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71767</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71768</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71769</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71770</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71771</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71772</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71773</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71774</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71775</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71776</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71777</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71778</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71779</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71780</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71781</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71782</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71783</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71784</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71785</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71786</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71787</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71788</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71789</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71791</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71792</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71793</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71794</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71795</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71796</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71797</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-135.097777778</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-60.0416666667</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>3</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1615</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.24</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:33Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=30</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN30</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71051</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71055</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71057</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71059</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71061</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71062</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71064</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71065</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71067</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71070</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71072</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71073</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71074</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71075</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71078</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71084</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71085</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71087</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71088</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71089</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71096</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71097</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71098</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71099</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-126.083891667</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-55.3500002778</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>12.2</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>965</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.25</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:33Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=31</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN31</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71150</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71151</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71152</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71153</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71154</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71155</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71156</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71157</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71158</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71159</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71160</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71161</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71162</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71163</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71164</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71165</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71166</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71167</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71168</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71170</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71171</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71172</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71174</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71175</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71176</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71177</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71178</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71179</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71180</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71181</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71183</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71184</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71186</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71187</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71189</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71190</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71191</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71192</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71193</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71196</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71197</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71198</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71199</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-130.228055556</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-53.1141666667</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>4</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1289</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.26</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:33Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=32</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN32</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71250</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71251</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71252</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71253</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71254</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71255</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71256</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71257</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71258</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71259</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71261</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71264</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71263</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71265</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71266</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71267</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71269</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71270</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71271</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71272</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71273</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71274</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71275</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71276</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71277</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71278</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71279</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71281</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71282</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71283</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71284</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71285</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71286</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71287</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71288</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71289</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71290</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71291</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71292</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71293</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71294</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71295</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71296</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71297</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71298</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71299</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-123.118613611</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-63.5133333333</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>18.69</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1402.1</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.27</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:33Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=33</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN33</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71350</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71351</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71352</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71353</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71354</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71355</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71356</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71357</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71358</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71359</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71360</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71361</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71362</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71363</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71364</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71365</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71366</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71368</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71369</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71370</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71371</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71372</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71373</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71374</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71375</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71376</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71377</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71378</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71379</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71380</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71381</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71382</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71383</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71384</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71385</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71386</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71387</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71388</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71389</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71390</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71391</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71392</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71393</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71395</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71398</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71399</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-133.516666667</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-60.0616666667</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>6</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1081</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.28</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:33Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=38</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN38</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71851</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71857</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71860</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71872</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71874</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71876</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71884</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71885</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71886</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71888</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71890</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71895</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-123.870277778</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-98.2666666667</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>28</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1200.607</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.29</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:33Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SI&amp;amp;location=CN&amp;amp;header=39</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SICN39</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71950</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71952</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71956</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71954</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71959</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71960</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71962</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71963</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71967</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71970</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71971</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71972</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71973</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71974</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71975</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71976</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71977</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71978</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71979</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71980</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71981</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71982</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71983</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71984</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71985</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71986</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71987</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71989</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71990</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71999</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-140.8475</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-57.9166666667</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>1.5</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>1448</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.30</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:34Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SM&amp;amp;location=CN&amp;amp;header=27</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SMCN27</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71700</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71701</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71702</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71703</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71704</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71710</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71712</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71713</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71716</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71720</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71721</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71723</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71724</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71732</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71733</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71734</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71736</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71737</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71741</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71742</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71743</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71744</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71745</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71746</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71747</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71748</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="place" codeSpace="ISOTC211/19115">place</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName xlink:type="simple" xlink:title="WMO Publication No. 9, Volume A, Observing Stations and WMO Catalogue of Radiosondes" xlink:href="http://www.wmo.int/pages/prog/www/ois/volume-a/vola-home.htm" />
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>meteorology</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#WMO_CategoryCode" />
</gmd:title>
<gmd:date gco:nilReason="missing" />
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_RestrictionCode" codeListValue="restricted" codeSpace="ISOTC211/19115">restricted</gmd:MD_RestrictionCode>
</gmd:accessConstraints>
<gmd:otherConstraints>
<gco:CharacterString>WMOEssential</gco:CharacterString>
</gmd:otherConstraints>
<gmd:otherConstraints>
<gco:CharacterString>GTSPriority2</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="usAscii" codeSpace="ISOTC211/19115">usAscii</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:extent>
<gmd:EX_Extent>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox>
<gmd:westBoundLongitude>
<gco:Decimal>-124.483333333</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-54.5669444444</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>42.0</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>84.0</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="T001">
<gml:beginPosition>1920</gml:beginPosition>
<gml:endPosition indeterminatePosition="now" />
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
<gmd:verticalElement>
<gmd:EX_VerticalExtent>
<gmd:minimumValue>
<gco:Real>6</gco:Real>
</gmd:minimumValue>
<gmd:maximumValue>
<gco:Real>390</gco:Real>
</gmd:maximumValue>
<gmd:verticalCRS xlink:href="http://www.epsg-registry.org/export.htm?gml=urn:ogc:def:crs:EPSG::5714" />
</gmd:EX_VerticalExtent>
</gmd:verticalElement>
</gmd:EX_Extent>
</gmd:extent>
<gmd:supplementalInformation>
<gco:CharacterString>ftp://www.wmo.int/Documents/MediaPublic/Publications/CodesManual_WMO_no_306/WMO306_Vol_I.1_2010_en.pdf</gco:CharacterString>
</gmd:supplementalInformation>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="distributor" codeSpace="ISOTC211/19115">distributor</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>Inquire quote for service contract</gco:CharacterString>
</gmd:fees>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
</gmd:MD_Distribution>
</gmd:distributionInfo>
</gmd:MD_Metadata>
<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gml31="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:geonet="http://www.fao.org/geonetwork" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmd/gmd.xsd http://www.isotc211.org/2005/gmx http://wis.wmo.int/2011/schemata/iso19139_2007/schema/gmx/gmx.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1.31</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng; CAN</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_CharacterSetCode" codeListValue="utf8" codeSpace="ISOTC211/19115">utf8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>urn:x-wmo:md:int.wmo.wis::ca.gc.ec.msc-1.1.1.1</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ScopeCode" codeListValue="dataset" codeSpace="ISOTC211/19115">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:contact>
<gmd:CI_ResponsibleParty>
<gmd:individualName>
<gco:CharacterString>National Inquiry</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Environment Canada, Meteorological Service of Canada</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>National Inquiry Response Team</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>+01-819-997-2800</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>+01-506-451-6010</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>77 Westmorland Street, Suite 260</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:deliveryPoint>
<gco:CharacterString>Fredericton</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:administrativeArea>
<gco:CharacterString>New Brunswick</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>E3B 6Z3</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>Canada</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>http://www.weatheroffice.gc.ca/mainmenu/contact_us_e.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
<gmd:hoursOfService>
<gco:CharacterString>0900h - 1500h EST</gco:CharacterString>
</gmd:hoursOfService>
<gmd:contactInstructions>
<gco:CharacterString>contact during working business hours</gco:CharacterString>
</gmd:contactInstructions>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_RoleCode" codeListValue="publisher" codeSpace="ISOTC211/19115">publisher</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:contact>
<gmd:dateStamp>
<gco:DateTime>2013-11-18T13:59:34Z</gco:DateTime>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>WMO Core Metadata Profile of ISO 19115 (WMO Core), 2003/Cor.1:2006 (ISO 19115), 2007 (ISO/TS 19139)</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>1.3</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>http://dd.weatheroffice.ec.gc.ca/cgi-bin/bulletin_search.pl?product=SM&amp;amp;location=CN&amp;amp;header=26</gco:CharacterString>
</gmd:dataSetURI>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>SYNOP message from SMCN26</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>1920-01-01</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#CI_DateTypeCode" codeListValue="creation" codeSpace="ISOTC211/19115">creation</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>TEST Report of surface observation from a fixed land station is referred to as SYNOP.
SYNOP is a numerical code (FM-12-XII) used for reporting weather observations made by manned and automated weather stations. SYNOP reports are typically sent every six hours.
Report of surface observation from a mobile land station is referred to as SYNOP
MOBIL. SYNOP MOBIL is a numerical code (FM-14-XII) used for reporting weather observations made by a mobile land station.
Both reports consist of groups of numbers (and slashes where data is not available) describing general weather information.</gco:CharacterString>
</gmd:abstract>
<gmd:status>
<gmd:MD_ProgressCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_ProgressCode" codeListValue="onGoing" codeSpace="ISOTC211/19115">onGoing</gmd:MD_ProgressCode>
</gmd:status>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Station type</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Height of cloud base of lowest cloud base</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Visibility</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Total cloud cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind direction</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Wind speed</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Temperature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Dewpoint</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Station pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Sea level pressure</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Pressure tendency</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Duration over which precipitation amount</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>measured</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Present and past weather</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Amount of low clouds covering sky (if no low clouds</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>the amount of the middle clouds)</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Low</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>middle and high cloud types</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Maximum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Minimum temperature over previous 24 hours</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Snow depth</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>State of ground with snow cover</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Global (Solar) Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Diffused Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Long-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Net Short-wave Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Direct Solar Radiation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>bright sunshine</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>time of precipitation</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>national practice</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>water equivalent</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://wis.wmo.int/2012/codelists/WMOCodeLists.xml#MD_KeywordTypeCode" codeListValue="theme" codeSpace="ISOTC211/19115">theme</gmd:MD_KeywordTypeCode>
</gmd:type>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71604</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>http://wis.wmo.int/WMOVolumeAGazeteer.xml#71605</gco:CharacterS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment