From 5554cedf6a22e964db1ee3f6eb47fb4358a39e38 Mon Sep 17 00:00:00 2001 From: Mark Henderson Date: Tue, 20 Jun 2023 17:42:44 +0100 Subject: [PATCH 1/3] Added tests --- README.md | 7 +- aixm_geo/aixm_geo.py | 16 +- aixm_geo/base.py | 27 +- aixm_geo/util.py | 9 +- setup.py | 2 +- test_data/donlon.xml | 72078 +++++++++++++++++++++------------------- tests/test_base.py | 27 +- tests/test_factory.py | 2 + 8 files changed, 38410 insertions(+), 33758 deletions(-) diff --git a/README.md b/README.md index d8ea234..44e778b 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,11 @@ Project status - Current work in progress at Alpha stage. # AIXMGeo -AIXMGeo is an AIXM wrapper for [KMLPlus](https://github.com/MHenderson1988/kmlplus) which supports the creation of a curved and 'floating' objects in KML. +AIXMGeo is an AIXM wrapper for [KMLPlus](https://github.com/MHenderson1988/kmlplus) which supports the creation of a +curved and 'floating' objects in KML. -AIXMGeo parses a valid, well-formed, AIXM file and outputs geographic information to a .KML -file. The .KML file can be opened in Google Earth or other mapping software. +AIXMGeo parses a valid, well-formed, AIXM file and outputs geographic information to a .KML file. The .KML file can be +opened in Google Earth or other mapping software. AIXMGeo is currently only tested with AIXM 5.1 however it should also work with AIXM 5.1.1. diff --git a/aixm_geo/aixm_geo.py b/aixm_geo/aixm_geo.py index 4dc1f56..871b011 100644 --- a/aixm_geo/aixm_geo.py +++ b/aixm_geo/aixm_geo.py @@ -45,13 +45,7 @@ def draw_airspace(self, aixm_feature_dict, kml_obj): lower_layer_uom=aixm_feature_dict['lower_layer_uom'], upper_layer_uom=aixm_feature_dict['upper_layer_uom'], uom=aixm_feature_dict['lower_layer_uom'], fol=aixm_feature_dict['name'], - altitude_mode=self.altitude_mode(aixm_feature_dict)) - - def altitude_mode(self, aixm_dict): - altitude_mode = 'absolute' - if aixm_dict['upper_layer_reference'] == 'SFC': - altitude_mode = 'relativetoground' - return altitude_mode + altitude_mode=util.altitude_mode(aixm_feature_dict)) def draw_cylinder(self, aixm_feature_dict, kml_obj): aixm_feature_dict = util.convert_elevation(aixm_feature_dict) @@ -68,4 +62,10 @@ def draw_cylinder(self, aixm_feature_dict, kml_obj): upper_layer=float(upper_layer), uom=uom, fol=aixm_feature_dict['name'], lower_layer_uom=aixm_feature_dict['lower_layer_uom'], upper_layer_uom=aixm_feature_dict['upper_layer_uom'], - altitude_mode=self.altitude_mode(aixm_feature_dict)) \ No newline at end of file + altitude_mode=util.altitude_mode(aixm_feature_dict)) + + +if __name__ == '__main__': + file_loc = Path().absolute().joinpath('..', Path('test_data/donlon.xml')) + output = Path().absolute() + AixmGeo(file_loc, output, 'test_kml.kml').build_kml() diff --git a/aixm_geo/base.py b/aixm_geo/base.py index 55dcc27..10a4b55 100644 --- a/aixm_geo/base.py +++ b/aixm_geo/base.py @@ -41,28 +41,6 @@ def get_first_value(self, xpath: str, **kwargs: etree.Element) -> str: value = "Unknown" return value - # XPath with namespace example = self.root.xpath('//aixm:name', namespaces=self.namespace) - # Uses findall as opposed to find - def get_all_values(self, xpath: str, **kwargs: etree.Element): - """Returns a list of all values within the subtree which match the Xpath provided - Args: - xpath (str): Valid Xpath string for the tag to try and find. - **kwargs: - subtree(etree.Element): The subtree to search. Defaults to self.root if no value provided. - Returns: - values(list): List of string values found. - """ - subtree = kwargs.pop('subtree', self._root) - try: - values = subtree.findall(xpath, namespaces=NAMESPACES) - if values is None: - raise AttributeError - else: - values = [x.text for x in values] - except AttributeError: - values = "Unknown" - return values - def get_first_value_attribute(self, xpath: str, **kwargs: Union[etree.Element, str]) -> Union[str, dict]: """ Args: @@ -104,6 +82,7 @@ def get_elevation(self): def get_crs(self): """ + Parses the CRS from the AirspaceGeometryComponent parent tag and returns the CRS as a string. Args: self Returns: @@ -188,9 +167,9 @@ def unpack_geodesic_string(self, location): def unpack_pos_list(self, string_to_manipulate): split = string_to_manipulate.split(' ') if len(split) > 1: - for i in range(len(split)-1): + for i in range(len(split) - 1): if i < len(split) and i % 2 == 0: - new_string = f'{split[i]} {split[i+1]}' + new_string = f'{split[i]} {split[i + 1]}' yield new_string else: yield string_to_manipulate diff --git a/aixm_geo/util.py b/aixm_geo/util.py index 5eeebb2..a9e64bb 100644 --- a/aixm_geo/util.py +++ b/aixm_geo/util.py @@ -62,11 +62,18 @@ def convert_elevation(aixm_feature_dict): if aixm_feature_dict['upper_layer'] == 'UNL': aixm_feature_dict['upper_layer_uom'] = 'M' - aixm_feature_dict['upper_layer'] = 18288.00 # 60,000 ft in metres + aixm_feature_dict['upper_layer'] = 18288.00 # 60,000 ft in metres return aixm_feature_dict +def altitude_mode(aixm_dict): + altitude_mode = 'absolute' + if aixm_dict['upper_layer_reference'] == 'SFC': + altitude_mode = 'relativetoground' + return altitude_mode + + def switch_radius_uom(radius_uom): if radius_uom == '[nmi_i]': radius_uom = 'NM' diff --git a/setup.py b/setup.py index 1011a64..0b3ce3f 100644 --- a/setup.py +++ b/setup.py @@ -19,4 +19,4 @@ "Operating System :: OS Independent", ], python_requires='>=3.8', -) \ No newline at end of file +) diff --git a/test_data/donlon.xml b/test_data/donlon.xml index 137a09d..4a101d1 100644 --- a/test_data/donlon.xml +++ b/test_data/donlon.xml @@ -1,33719 +1,38365 @@ - - - - -32.0886111111111 -47.0 - 57.690815969999996 52.4283333333333 - - - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - -47.0 - - - 52.4283333333333 - - - 57.690815969999996 - - - -32.0886111111111 - - - - - - - - - - - - 6384a4e0-8497-4f83-8eaa-d73ef549d90e - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - REPUBLIC OF DONLON - STATE - - - - - - - c225ae5c-540f-4a48-8867-809b393b2407 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - CIVIL AVIATION AUTHORITY - NTL_AUTH - - - OWNED_BY - - - - - - - - - - 1e1bdf59-3dd6-4f96-9166-e6095e7231fc - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - DONLON - NTL_AUTH - - - - - - - 74efb6ba-a52a-46c0-a16b-03860d356882 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - DONLON_HELIPORT_AUTHORITY - NTL_AUTH - - - - - - - b6df119e-cc7c-48cc-9575-c4160c64d733 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - HOL - 01-01 - NEWYEARSDAY - - - - - - - - 4d0ecbdb-4cba-4047-8351-29283adf67c7 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2014-01-01T00:00:00Z - 2014-12-31T23:59:59Z - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - HOL - 17-04 - 2014 - MAUNDYTHURSDAY - - - - - - - - 2015-01-01T00:00:00Z - 2015-12-31T23:59:59Z - - - BASELINE - 2 - - - 2009-01-01T00:00:00Z - - - - HOL - 02-04 - 2015 - MAUNDYTHURSDAY - - - - - - - - 20f19a35-401b-45a6-a54e-084122a4cf80 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2014-01-01T00:00:00Z - 2014-12-31T23:59:59Z - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - HOL - 18-04 - 2014 - GOODFRIDAY - - - - - - - - 2015-01-01T00:00:00Z - 2015-12-31T23:59:59Z - - - BASELINE - 2 - - - 2009-01-01T00:00:00Z - - - - HOL - 03-04 - 2015 - GOODFRIDAY - - - - - - - - 39755baa-4c27-4c9f-b08c-df05cff2fb09 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2014-01-01T00:00:00Z - 2014-12-31T23:59:59Z - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - HOL - 21-04 - 2014 - EASTERMONDAY - - - - - - - - 2015-01-01T00:00:00Z - 2015-12-31T23:59:59Z - - - BASELINE - 2 - - - 2009-01-01T00:00:00Z - - - - HOL - 06-04 - 2015 - EASTERMONDAY - - - - - - - - 02e42ef0-7be7-4c60-b8d9-790b79fa3839 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - IF - 1829 - ABOVE_LOWER - - - - - - - 6c8b3cb4-c0fe-4afd-ac63-cb2a9060db73 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TRID - - - - - - - - - - - - - - 9c6a4679-14f3-4ffb-a2bc-2d43f81722b6 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 3a17efd0-adfe-4899-9d4c-5b8ac591645b - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 1a6f046a-e7aa-44e8-9712-aaaf89921734 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 5a99887d-ab43-4163-95a4-b9699c651d98 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - d9d27801-b6ae-4508-a27e-bf55da19fd35 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 1829 - ABOVE_LOWER - - - - - - - 6a2f2658-bba5-49e0-bdc5-9b31aa1e1dbf - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TSI - - - - - - - - - - - - - - - - - - - - - - - - - - - - EKCOMBE - - - - - - - 1c7a5f5d-f4fe-49da-8746-5112d62a4a04 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - IF - 277.0 - TRUE_BRG - 5556.0 - 914.4 - ABOVE_LOWER - - - - - - - 63dae92f-2014-42ca-a83f-73cefcec03e8 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TF - 229.0 - TRUE_BRG - LEFT - 7408.0 - - - - - - - 077bc42e-c2f2-40fc-8a84-b4f2eaaae0bc - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TF - 184.0 - TRUE_BRG - LEFT - 3704.0 - - - - - - - 4fc8c993-ba3e-4513-be88-d379e3c45fe6 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TF - 184.0 - TRUE_BRG - 5741.2 - 914.4 - AS_ASSIGNED - - - - - - - d34158b7-1755-4fa3-a197-5b266698f5b6 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - CF - 184.0 - TRUE_BRG - 4074.4000000000005 - - - - - - - a80b3299-65e5-4f4b-9067-30f282cbb1bc - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - CF - 184.0 - TRUE_BRG - 7408.0 - 399.3 - ABOVE_LOWER - - - - - - - 436adbb9-1838-4bc7-945a-e421100f7dcb - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - CF - 184.0 - TRUE_BRG - 9630.4 - AS_ASSIGNED - - - - - - - c8d2e419-6159-4693-b465-d96a063fa648 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - FM - AS_ASSIGNED - - - - - - - 1a24b3c6-2183-4a01-ad8d-10227fd06931 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TRID - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 231a7794-c9bd-4e9e-a5d1-03f1c1f1687c - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 184.0 - TRUE_BRG - 4630.0 - - - - - - - 754e335c-75ec-4ef4-941d-97fe4581063a - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 119.0 - TRUE_BRG - RIGHT - - - - - - - ed85c0e6-2461-43d8-aca2-39d6afb254e7 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 5741.2 - - - - - - - c1ee96e8-a60c-4e27-9c79-3c9853aa495d - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 1829 - ABOVE_LOWER - - - - - - - 2d6916fc-c635-4ad7-8275-3e0eab65104b - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TSI - - - - - - - - - - - - - - - - - - - - - - - EKCOMB2 - - - - - - - 970f9309-8a52-45c0-b59e-f5ab4a51ef6f - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - d0f4a733-1c13-4764-b488-caae38794349 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 62800d25-a0e8-4915-8bac-fa4eeb437d5e - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - ba6478ff-50bb-4ccb-8bfd-4e4865709823 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 481c1844-4dfd-4d7a-ae94-41027db0a20a - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - d0d29c8d-90e3-44b6-80d0-96530d38bde5 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 8123f5af-b083-41f9-a2fa-6384adef1bdf - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - e99f36b1-6441-4791-a542-d1312b995d79 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - b7fdc9e9-a77b-4db6-b781-9587b7e7407a - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 1c4c9451-bf5a-4ae0-a973-b534f96b2409 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - b19105a1-f1ce-4577-b26b-ce27f6103087 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 0c208527-6f3e-4185-aa2b-149c03f52127 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TRID - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EKCOMBE - - - - - - - ddbc225d-4f2d-4612-9cde-8671aba24f93 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - RIGHT - - - - - - - 50f3ef75-fe6c-4d4d-8ec2-110c8d4ce106 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TSI - - - - - - - - AROMN8S - - - - - - - 58df8a48-2818-47c2-a291-cd7d9a1242d3 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - IF - 116.0 - TRUE_BRG - 7408.0 - 609.6 - ABOVE_LOWER - - - - - - - edac6cc2-c577-4ba8-a21d-e476c21bd71e - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TF - 93.0 - TRUE_BRG - LEFT - 4444.8 - - - - - - - ef0524c1-a599-4ea3-a43f-5cde190c3271 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TF - 59.0 - TRUE_BRG - LEFT - 5556.0 - - - - - - - 17d08aa6-90b8-4cf4-9175-54e192a525bb - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - FA - 59.0 - TRUE_BRG - 4259.599999999999 - 609.6 - AS_ASSIGNED - - - - - - - 2e083f81-e4b2-4c1b-8eaa-e00165357435 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - CF - 59.0 - TRUE_BRG - 7222.8 - 388.62 - AS_ASSIGNED - - - - - - - 270bdaca-566e-4651-bf90-12625c23188e - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - CF - 59.0 - TRUE_BRG - 362.712 - 609.6 - AS_ASSIGNED - - - - - - - cb2f3317-b447-4b9f-b325-246be839c3f9 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - FM - AS_ASSIGNED - - - - - - - c12b5014-444f-46da-8b25-c27d3c27f6cd - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TRID - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - f739ae66-baef-4bb6-b29a-7108eccf2d59 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 202df567-8449-4342-adf7-43bca6fc7b87 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TRID - - - - - - - - NOTMA4B - - - - - - - a14a8751-5428-46bc-a2d1-32ef84d37b5c - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - U - A - 4 - ATS - BOTH - - - DESCRIPTION - - - BARIM TO VEGAT - - - - - - - - - - - 9e51668f-bf8a-4f5b-ba6e-27087972b9b8 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 09L/27R - 2800.0 - 45.0 - 2920.0 - 300.0 - - - CONC - - - - - - - - - - c8455a6b-9319-4bb7-b797-08e644342d64 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 09L - 85.2300033569336 - - - - - - - - 2012-11-22T22:00:00Z - 2012-11-23T04:00:00Z - - - TEMPDELTA - 1 - - - CLOSED - - - - - - - - - b802d439-e9f3-49f9-96e1-0153b837e113 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 27R - 265.2300109863281 - 20.5 - - - - - - - - 2012-11-22T22:00:00Z - 2012-11-23T04:00:00Z - - - TEMPDELTA - 1 - - - CLOSED - - - - - - - - - e23b1f2b-b2fc-432e-a378-199ccacabe24 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - A - PARALLEL - 23.0 - - - CONC - - - - - - - - - - f16bf89e-aae9-45f7-b630-035c4f81e297 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - B - GND - 23.0 - - - CONC - - - - - - - - - - b7a01065-6ac3-462a-a27d-dc219d980f9f - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - C - FASTEXIT - 23.0 - - - CONC - - - - - - - - - - 0d466e77-319d-4371-87ef-dd02053d7a4d - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - D - EXIT - 23.0 - - - CONC - - - - - - - - - - 9dcbb852-1c24-4ded-80a8-e7456f95ccc8 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - E - PARALLEL - 23.0 - - - CONC - - - - - - - - - - 0cb4da5a-9c98-4484-92ed-edc336b8b437 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - F - GND - 23.0 - - - CONC - - - - - - - - - - 3079c4fc-e4e3-42ec-a180-7e902cb88334 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - G - GND - 23.0 - - - CONC - - - - - - - - - - 0dac7a5f-4cb6-41a2-b0eb-dac1c555351c - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - APRON - - - - - - - - 92cacc21-86bb-4050-aae9-a54e1fccbff1 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - - 1e22a662-0601-43cc-a7ef-8402885a4f2f - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - FATO - FATO - 20.0 - 20.0 - - - CONC - GOOD - - - - - - - - - - 921966d2-bae8-4b4b-bc8a-8012faf991be - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - FATO 03 - 27.329999923706055 - - - - - - - - b9fad726-bed6-4b3b-a92f-64706eaa9ed5 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - FATO 21 - 207.3300018310547 - - - - - - - - 89d085f7-4b68-4e07-9b52-5aabd5f410f3 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - SEPARATED - - - - - - - - - 080c39f8-3e90-44de-bb57-e0abcc0e4b50 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - Trucks 1.5-3.5 tonnes. Up to 10 tonnes handling possible. - - - - - - - - - - - - 89f1b92f-afd5-4ab1-808e-353446a20b6e - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - Jet A1, AVTUR, AVGAS 100 LL, oil, all types normally available. - 1 truck 45 000 litres, 50 litres/sec - - - - - - - - - PISTON - - - - - AVIA - - - - - - - - - HYDRAULIC - - - - - HYD - - - - - - - - - TURBO - - - - - TURBO - - - - - - - - - NG - - - - - OX - - - - - - - - - 53bf0a9c-c218-4928-ac31-201af9b80593 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - Available. See AD chart for location. - - - - - - - - - - - - a9d815f8-aed5-482d-ac39-dbdf9d293d02 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - Limited, by prior arrangement only - - - - - - - - - - - - a28a2b0e-3d03-42f4-8b49-ce7b22f9a258 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - Available for aircraft up to 5 700 KG. Major repairs by arrangement. - - - - - - - - - - - - - 46da4772-4a5e-4e64-ab60-04e803c068bc - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - ANY - 06:00 - 23:00 - - - - - - - Within AD HR - - - - - NORMAL - - - - - - - Rescue equipment : 2 boats of 40 persons - Capability for removal of disabled aircraft : Lifting bags and hydraulic jacks available - - - - - - - A7 - - - - - - - c1bbe653-e5b1-4bfe-b510-3ada3272305a - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - DONLONRCC - RCC - YES - - - - - - "134 Airport Road" - DONLON - 1 - DONLON - - - - - AFTN - EADDYCYX - - - - - 01236979111 - 01236979112 - - - - - - - - - - - 8323cd6d-f788-4b78-8f93-2a09a70965fb - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - AKVINSAR - SAR - YES - - - 52.618333333 -32.919999999 - 15.0 - - - - - - OWNER - - - - - - - - - - 9d169b60-b5fa-4bf4-abf3-14fd9e67a2b7 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ALL - YES - DONLONAKVINSARS - - SAR - - - - - - - d54e1d65-fefe-4776-891c-2b0e9d74c020 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ALL - YES - DONLONRCCSERVICE - - RCC - - - - - - - 306eff59-8985-488a-ad5b-24a8c13dc17e - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ALL - YES - YES - SMGCS - - - - - - - - 6c7b0abc-0a29-4a53-a5b9-9f3791119cf5 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ALL - YES - DONLONATMS - CLEARANCE - - - - - - - 590950fd-4126-46b7-b245-5944d1362c17 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 87.0 - - - - - - - - 7d6ef61e-83b4-4902-a79e-3248a5bd2935 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - White omnidirectional edge lights at intervals of 12.5 M - - - - - 12.5 - - - - - - - - 60b87049-5ff7-4d23-917d-88938128e2d3 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - Yellow floodlights at the edge of TLOF at intervals of 5 M - - - - - 5.0 - - - - - - - - e9350d29-9b29-450e-80af-a1666665ddc3 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - WHITE - - - - - White omnidirectional edge lights at intervals of 12.5 M - - - - - - - - - - - - 2e7650ef-e19f-47ee-b6f8-2866f536f5d2 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - WHITE - - - - - White omnidirectional edge lights at intervals of 12.5 M - - - - - - - - - - - - 374cc5b1-ecb9-41c6-bb2e-175e4a38d475 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIM - 600.0 - - - - - - - - 05e2e8d4-93d6-479e-887c-a92bc9485890 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIH - 900.0 - - - - - - - - 46e02ef7-9a57-4951-b26e-c3fb1dcaefbc - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - - 16630bd9-31d6-498a-be44-5cdccb572e94 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - - f7e4b6b4-5ec1-48ac-a328-6dd296a1b244 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - GREEN - CL - - - - - - - - 2cde2811-0b8e-486d-99f5-231d5d9f8df6 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - GREEN - CL - - - - - - - - d1322326-c872-4882-b2cb-ef97ca26977e - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - GREEN - CL - - - - - - - - 980391ed-a43e-401c-a0f1-c0e91c55f6fb - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - GREEN - CL - - - - - - - - 859fb5fd-3241-434e-92ad-dd45152a1902 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BLUE - EDGE - - - - - - - - ecac1a3f-56a4-49b5-960e-010e62fdf6cb - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BLUE - EDGE - - - - - - - - ef878bde-177e-44f3-b1ee-51a4b1c4b95b - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BLUE - EDGE - - - - - - - - a15a6a50-8fa5-4190-9306-1901efad0d18 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BLUE - CL - - - - - - - - 3759baea-683f-4f2f-a732-c7e57adb194a - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIH - WHITE - CL - - - - - - - - 3d619d5f-db7b-490f-8e31-08ac1a3bf2c6 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIH - WHITE - - - - - 2 800 M, 7.5 M - White; - FM 1 900 M- - 2 500 M - Red/White; - FM 2 500 M - Red; LIH - - - - - - CL - - - - - - - - 10ef9ced-a722-43d2-8be9-441b8a990181 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - WHITE - - - - - - - - 0373b89a-697f-42c9-bda5-c536c7aed15a - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OTHER:CYAN - - - - - - - - 5677508e-6e87-437b-85ed-d21e1325f117 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIH - WHITE - - - - - - - - 81604812-820c-4006-be6e-3662c8be416d - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIH - WHITE - - - - - - - - 02573093-d850-4bd9-9e82-aacd57bdd91b - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIM - WHITE - - - - - - - - 8612257e-cedb-4d5c-a258-34f854429e52 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIM - WHITE - - - - - - - - d532589a-7108-4d48-b3c9-f37abd2590c9 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - RED - - - - - - - - dd062d88-3e64-4a5d-bebd-89476db9ebea - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - 0 - - - 2009-01-01T00:00:00Z - - - - EADH - DONLON/DOWNTOWN HELIPORT - -3.0 - 1990 - 0.03 - - - OPERATE - - - - - - 52.288888888888884 -32.035 - 18.0 - - - - - - - - - 1b54b2d6-a5ff-4e57-94c2-f4047a381c64 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - 0 - - - 2009-01-01T00:00:00Z - - - - EADD - DONLON - -3.0 - 1990 - -0.03 - 21.0 - - - DONLON - - - - - OPERATE - - - - - - 52.3716666666667 -31.9494444444444 - 30.0 - 12.0 - - - - - - - UTC - WORK_DAY - 06:00 - 20:00 - YES - - - - - UTC - SAT - 07:00 - 20:00 - YES - - - - - UTC - SUN - 07:00 - 20:00 - YES - - - - - UTC - HOL - 07:00 - 20:00 - YES - - - - NORMAL - - - - PERMIT - - - OR - - - IFR - - - - - VFR - - - - - - - - - - - - - UTC - ANY - 20:00 - 24:00 - YES - - - - - UTC - ANY - 00:00 - 06:00 - YES - - - - - UTC - SAT - 06:00 - 07:00 - YES - - - - - UTC - SUN - 06:00 - 07:00 - YES - - - - - UTC - HOL - 06:00 - 07:00 - YES - - - NORMAL - - - FORBID - ALL - - - - - - - - - - - 2012-12-22T00:00:00Z - 2012-12-22T01:00:00Z - - - TEMPDELTA - 1 - - - - - operationalStatus - REMARK - - - DUE TO WX BELOW MIN VIS 4000 M - - - - - CLOSED - - - PERMIT - - - - - IFR - - - - - - - - - - - - - - - - - - - - 238b5482-8fa0-4169-a745-686c1ca44421 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - NO - LIH - BLUE - - - PINK - LIH - FLOOD - - - - - PINK - LIH - FLOOD - - - - - PINK - LIH - FLOOD - - - - - PINK - LIH - FLOOD - - - EDGE - - - - - - - - 68655945-0f02-47a9-b300-87420ecff373 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - NO - LIL_LIH - PINK - - - PINK - LIL_LIH - STROBE - - - - - PINK - LIL_LIH - STROBE - - - - - PINK - LIL_LIH - STROBE - - - EDGE - - - - - - - - 484494d4-a3e9-4b60-8306-ebfaa78bf7d8 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - NO - LIM - GREEN - EDGE - - - - - - - - 08a1bbd5-ea70-4fe3-836a-ea9686349495 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VOR_DME - BOR - BOORSPIJK - - - 1 - - - - - - 1 - - - - - - 52.36833333333333 -32.375 - 30.0 - - - - - - - - - 2012-10-07T07:00:00Z - 2012-10-07T14:00:00Z - - - TEMPDELTA - 1 - - - UNSERVICEABLE - - - - - - - - - 7692166e-60e6-467d-b5f0-c728aeae85d6 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BOR - BOORSPIJK - - - 52.36833333333333 -32.375 - 30.0 - - - - - - - - 102X - - - - - - - 2012-10-07T07:00:00Z - 2012-10-07T14:00:00Z - - - TEMPDELTA - 1 - - - UNSERVICEABLE - - - - - availability - REMARK - - - DUE TO MAINT. FALSE INDICATIONS POSSIBLE - - - - - - - - - - - - - - - - 0a45a38f-0f96-4ace-b09e-310ac0415693 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BOR - BOORSPIJK - - - 52.36833333333333 -32.375 - 30.0 - - - - - - - - 115.5 - - - - - - - 2012-10-07T07:00:00Z - 2012-10-07T14:00:00Z - - - TEMPDELTA - 1 - - - UNSERVICEABLE - - - - - availability - REMARK - - - DUE TO MAINT. FALSE INDICATIONS POSSIBLE - - - - - - - - - - - - - - - - 51829538-2d2a-4d01-a4bf-87c045d247a8 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VOR_DME - DON - DONLON - - - 1 - - - - - - 1 - - - - - - 52.44333333333333 -32.00083333333333 - 60.0 - - - - - - - - - 8979e959-492b-4b30-83d2-060f362cf5c4 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - DON - DONLON - - - 52.44333333333333 -32.00083333333333 - 60.0 - - - - - - - - 111X - - - - - - - ea10d605-5497-42ee-9d85-a0e5f80f9b26 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - DON - DONLON - -3.0 - 1990 - - - 52.44333333333333 -32.00083333333333 - 60.0 - - - - - - - - VOR - 116.4 - - - - - - - a9c3240c-e2c9-4f9a-a573-9da452cfe84f - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LOC - KL - DONLON - - - 1 - - - - - - 52.38366666666666 -31.85063888888889 - 0.0 - - - - - - - - - 577cb727-cef0-487b-bb5f-10882677a989 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - KL - DONLON - - - 52.38366666666666 -31.85063888888889 - 0.0 - - - - - - - - 411.0 - - - - - - - 92d527c0-ae96-4695-8d0a-9b43edbc4fe6 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VOR - CAA - CALGA - - - 1 - - - - - - 52.38177777777778 -31.743361111111113 - 30.0 - - - - - - - - - b5d16d67-8e4f-4ec8-9572-003e3e58424a - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - CAA - CALGA - -3.0 - 1990 - - - 52.38177777777778 -31.743361111111113 - 30.0 - - - - - - - - VOR - 114.3 - - - - - - - cc271a99-e28c-49e6-86ac-53078e6e59e3 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VOR - EKO - EKCOMBE_VOR - - - 1 - - - - - - 47.1366666666667 -28.6416666666667 - 0.0 - - - - - - - - - 8506a23a-4a97-42fe-bddd-d23b00c2f61c - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - EKO - EKCOMBE_VOR - - - 47.1366666666667 -28.6416666666667 - 0.0 - - - - - - - - VOR - 1120.3 - - - - - - - 3afcdd1d-1ca4-4667-95af-1725ca17a70f - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VOR - LMD - LIMAD_VOR - - - 1 - - - - - - 48.8 -23.2166666666667 - 0.0 - - - - - - - - - 9cd3112a-2aaf-48c3-a01a-59699b4af6e2 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LMD - LIMAD_VOR - - - 48.8 -23.2166666666667 - 0.0 - - - - - - - - VOR - 432.1 - - - - - - - 882e849c-682d-4e95-ac19-a7808d55cdbb - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VOR - WOB - WOBAN_VOR - - - 1 - - - - - - 42.675 -36.17333333333333 - 150.0 - - - - - - - - - fbe82608-bece-4db7-a13b-961963e1b167 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - WOB - WOBAN_VOR - - - 42.675 -36.17333333333333 - 150.0 - - - - - - - - VOR - 123.4 - - - - - - - 6237f900-1320-4f01-95ec-8378ebc26e9f - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VOR - KAV - KAVRAN - - - 1 - - - - - - 52.53841666666666 -31.920166666666667 - 0.0 - - - - - - - - - 13fe226f-271c-4d36-9f42-190563a963de - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - KAV - KAVRAN - -3.0 - 1990 - - - 52.53841666666666 -31.920166666666667 - 0.0 - - - - - - - - VOR - 115.0 - - - - - - - 4316fc95-f2f7-4789-a249-3afc0b5cc27a - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TACAN - OST - OSTO - - - 1 - - - - - - 52.51077777777778 -33.511361111111113 - 15.0 - - - - - - - - - 3e33bd78-0b9c-4d27-9060-901fcb02fa47 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OST - OSTO - -3.0 - 1990 - - - 52.51077777777778 -33.511361111111113 - 15.0 - - - - - - - - 119X - - - - - - - 0f276f15-a407-4ff5-9e51-8522493de27b - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - MKR - OM27 - OM27 - - - 1 - - - - - - 52.38366944444444 -31.850661111111112 - 0 - - - - - - - - - 268cd014-b4e4-41fa-8d90-422c3dbb96b4 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OM27 - OM27 - A3H - NO - YES - FAN - 75 - -.--....----... - - - - - - - 4fd9f4be-8c65-43f6-b083-3ced9a4b2a7f - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - R - ACR001 - - - - - 300000.0 - - - - - 47.4 -41.6 47.45384232494095 -41.49475160936019 47.507587336034945 -41.389288333791846 47.56123465591919 -41.28360971835344 47.61478390603749 -41.17771531001795 47.66823470664122 -41.07160465771256 47.72158667679048 -40.96527731235865 47.774839434355215 -40.85873282691222 47.827992596016486 -40.751970756404575 47.8810457772679 -40.644990657983485 47.93399859241693 -40.53779209095458 47.98685065458652 -40.43037461682318 48.03960157571668 -40.322737799336444 48.092250966566205 -40.21488120452591 48.14479843671447 -40.106804400750356 48.19724359456332 -39.99850695873905 48.24958604733906 -39.88998845163533 48.30182540109455 -39.78124845504057 48.353961260711415 -39.67228654705846 48.40599322990225 -39.563102308339744 48.45792091121308 -39.45369532212715 48.509743906025776 -39.34406517430085 48.56146181456067 -39.23421145342419 48.61307423587926 -39.12413375078974 48.664580767886925 -39.01383166046581 48.715981007335934 -38.90330477934326 48.767274549828294 -38.792552707182615 48.81846098981899 -38.68157504666165 48.86953992061912 -38.57037140342325 48.920510934399246 -38.45894138612364 48.97137362219286 -38.34728460648098 49.02212757389982 -38.23540067932431 49.07277237829018 -38.12328922264282 49.12330762300779 -38.01094985763554 49.17373289457428 -37.8983822087613 49.22404777839308 -37.78558590378909 49.27425185875347 -37.67256057384874 49.32434471883489 -37.55930585348196 49.374325940711245 -37.44582138069373 49.424195105355444 -37.33210679700403 49.47395179264396 -37.21816174749987 49.52359558136158 -37.103985880887755 49.57312604920629 -36.98957884954638 49.622542772794155 -36.874940309579756 49.671845327664535 -36.76006992087058 49.721033288285305 -36.64496734713401 49.770106228058125 -36.52963225597177 49.819063719324085 -36.41406431892649 49.86790533336919 -36.298263211536515 49.9166306404302 -36.182228613390905 49.965239209700556 -36.065960208184826 50.01373060933631 -35.94945768377528 50.062104406462375 -35.832720732237064 50.110360167178825 -35.71574904991913 50.15849745656729 -35.598542337501215 50.2065158386976 -35.48110030005075 50.25441487663447 -35.36342264708014 50.30219413244438 -35.2455090926043 50.3498531672026 -35.12735935519847 50.39739154100035 -35.008973158056385 50.444808812952104 -34.890350229048664 50.492104541203005 -34.77149030078155 50.5392782829365 -34.652393110655865 50.586329594382114 -34.53305840092631 50.63325803082326 -34.413485918761005 50.680063146605434 -34.29367541630127 50.72674449514424 -34.173626650721744 50.77330162893392 -34.05333938429069 50.81973409955575 -33.93281338443062 50.86604145768678 -33.8120484237791 50.91222325310859 -33.6910442802499 50.95827903471638 -33.569800737094255 51.004208350527975 -33.44831758296253 51.05001074769331 -33.326594611965916 51.09568577250368 -33.20463162373854 51.14123297040161 -33.0824284234997 51.186651885990415 -32.95998482211628 51.23194206304433 -32.83730063616548 51.277103044518526 -32.71437568799767 51.3221343725595 -32.59120980579946 51.367035588515435 -32.46780282365696 51.41180623294689 -32.344154581619236 51.45644584563755 -32.22026492576195 51.50095396560524 -32.09613370825113 51.54533013111303 -31.971760787407153 51.589573879680565 -31.847146027768858 51.63368474809549 -31.72228930015781 51.67766227242523 -31.59719048174273 51.721505988028696 -31.471849456104042 51.76521542956835 -31.346266113298544 51.808790131022405 -31.220440349924218 51.85222962569715 -31.09437206918514 51.8955334462395 -30.96806118095649 51.93870112464975 -30.84150760184969 51.98173219229441 -30.7147112552776 52.02462617991936 -30.58767207151979 52.06738261766305 -30.460389987787917 52.11000103506997 -30.332864948291146 52.15248096110429 -30.205096904301627 52.19482192416363 -30.077085814219984 52.23702345209308 -29.948831643640943 52.27908507220185 -29.82033436541126 52.321006311267816 -29.691593959725534 52.36278669556666 -29.562610414146814 52.40442575087698 -29.433383723702036 52.44592300249762 -29.3039138909402 52.48727797526267 -29.174200925997965 52.52849019355688 -29.044244846665194 52.5695591813311 -28.91404567845041 52.610484462117945 -28.783603454646318 52.651265559047694 -28.65291821639514 52.69190199486429 -28.521990012753967 52.73239329194163 -28.390818900759925 52.772738972299955 -28.259404945495397 52.81293855762252 -28.127748220152966 52.85299156927237 -27.995848806100348 52.89289752830936 -27.863706792945187 52.932655955507315 -27.731322278599677 52.97226637137147 -27.59869536934501 53.011728296156015 -27.46582617989572 53.05104124988186 -27.33271483346383 53.090204752354616 -27.199361461822757 53.12921832318271 -27.065766205371066 53.168081481795745 -26.93192921319601 53.20679374746309 -26.79785064313682 53.24535463931244 -26.663530661847737 53.283763676348954 -26.528969444860838 53.322020377474175 -26.394167176648583 53.36012426150543 -26.25912405068602 53.398074847195254 -26.12384026951278 53.43587165325112 -25.988316044794722 53.4735141983553 -25.852551597385265 53.511002001184856 -25.716547157386373 53.54833458043196 -25.5803029642092 53.585511454824314 -25.44381926663437 53.62253214314575 -25.307096322871914 53.65939616425702 -25.170134400620718 53.696103037116856 -25.032933777127717 53.73265228080311 -24.89549473924649 53.769043414534124 -24.757817583495584 53.80527595769029 -24.619902616116274 53.84134942983582 -24.481750153129905 53.87726335074059 -24.34336052039477 53.913017240402304 -24.204734053662445 53.948610619068795 -24.06587109863366 53.98404300726045 -23.926772011013593 54.019313925792865 -23.78743715656669 54.05442289579969 -23.647866911170894 54.089369438755625 -23.50806166087126 54.12415307649958 -23.368021801933086 54.15877333125809 -23.227747740894305 54.19322972566877 -23.087239894617397 54.22752178280409 -22.946498690340576 54.261649026195194 -22.805524565728348 54.29561097985598 -22.664317968921402 54.32940716830732 -22.52287935858585 54.36303711660141 -22.381209203961685 54.39650035034637 -22.239307984910656 54.42979639573092 -22.097176191963257 54.462924779549255 -21.954814326365096 54.49588502922611 -21.812222900122446 54.52867667284198 -21.669402436046983 54.56129923915839 -21.52635346779982 54.59375225764349 -21.383076539934635 54.626035258497694 -21.239572207940018 54.658147772679506 -21.095841038280955 54.69008933193147 -20.951883608439474 54.72185946880631 -20.80770050695437 54.7534577166932 -20.663292333460095 54.78488360984412 -20.51865969872466 54.816136683400494 -20.373803224686686 54.8472164734198 -20.228723544491462 54.87812251690245 -20.083421302526027 54.90885435181869 -19.93789715445336 54.939411517135795 -19.792151767245507 54.96979355284519 -19.64618581921565 55.0 -19.5 - - - - - - - - - - - - - - - 2012-07-10T07:00:00Z - 2012-07-10T07:16:00Z - - - TEMPDELTA - 1 - - - EXERCISE - ACTIVE - - - CEILING - FLOOR - - - - - - - activation - REMARK - - - FOR FURTHER INFORMATION PLEASE CONTACT DONLON ACC ON PHONE (12)123 45 67 - - - - - - - - - - - - - - - - f4d5e4d4-d84a-481f-b9e3-b359e42c0dff - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - FIR - AMSWELL - AMSWELL FIR - - - - - UNL - GND - - - - - - - - - - - 57.0833333333333 -40.0 52.85 -41.7833333333333 48.4666666666667 -41.3333333333333 44.0333333333333 -40.0 42.6 -37.0 40.7333333333333 -37.1833333333333 41.4 -30.05 43.5166666666667 -21.1333333333333 56.6666666666667 -21.1333333333333 57.0833333333333 -40.0 - - - - - - - - - - - - - - - - - - - - - cc9c7cc4-e000-4741-854d-b7d93973e099 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - UPPER - 450 - STD - 195 - STD - GDS - 69.3 - - - COMPULSORY - - - - - - - - - 42.5016666666667 -37.0016666666667 42.675 -36.1733333333333 - - - - - - - COMPULSORY - - - - - - - - - - bc430a08-bb5d-48dd-8ef0-85ff50dcfb9d - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - UPPER - 450 - STD - 195 - STD - GDS - 771.5999755859375 - - - COMPULSORY - - - - - - - - - 42.675 -36.1733333333333 47.1366666666667 -28.6416666666667 - - - - - - - COMPULSORY - - - - - - - - - - bfca2bc3-5562-4ec4-b199-f0377c93c04e - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - UPPER - 450 - STD - 195 - STD - GDS - 446.0 - - - COMPULSORY - - - - - - - - - 47.1366666666667 -28.6416666666667 48.8 -23.2166666666667 - - - - - - - COMPULSORY - - - - - - - - - - 122f61c4-2704-494f-8ad7-45e2f8adc603 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - UPPER - 450 - STD - 195 - STD - GDS - 163.1999969482422 - - - COMPULSORY - - - - - - - - - 48.8 -23.2166666666667 49.3583333333333 -21.1333333333333 - - - - - - - COMPULSORY - - - - - - - - - - 81e47548-9f00-4970-b641-8ff8f99098a5 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TEMPO - ICAO - TEMPO - - - 56.84 -29.860000000000003 - - - - - - - - - 9fcb360c-6933-46d6-9c85-a337202efe70 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ABOLA - ICAO - ABOLA - - - 45.71 -35.169999999999995 - - - - - - - - - 363838d8-edcc-4085-a608-96b45ceef14e - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ATLIM - ICAO - ATLIM - - - 54.718333333333334 -47.0 - - - - - - - - - c3bf8394-4d5f-4b42-ba87-67563df97555 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - UKORO - ICAO - UKORO - - - 40.92333333333333 -36.81333333333333 - - - - - - - - - 26009f76-2e05-418d-a631-bec02f84ac5b - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VEGAT - ICAO - VEGAT - - - 49.3583333333333 -21.1333333333333 - - - - - - - - - 7f443c8b-d407-4c41-aa9f-1d56a688a432 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - EBOTO - ICAO - EBOTO - - - 42.501666666666665 -26.015 - - - - - - - - - bb9dcfb3-f45a-40f3-8852-fca1349801fc - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BARIM - ICAO - BARIM - - - 42.5016666666667 -37.0016666666667 - - - - - - - - - fe3bbf89-9a15-49e4-b987-f7225b7484bb - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - SANOK - ICAO - SANOK - - - 41.413333333333334 -30.051666666666666 - - - - - - - - - 95638d5c-367f-4a6d-829c-f1e58245961f - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ODMUS - ICAO - ODMUS - - - 49.358333333333334 -20.15 - - - - - - - - - b35409d8-f236-4303-a12d-795e9e9c8759 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ILURU - ICAO - ILURU - - - 50.019999999999996 -41.61333333333334 - - - - - - - - - 6118ba76-0d46-4ba7-af63-17f29755e890 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - REPUBLICOFDONLON - STATE - - - - - 49.96666666666667 -31.383333333333333 51.125 -31.388333333333332 51.17111111111111 -31.394444444444446 51.18805555555555 -31.403888888888886 51.198055555555555 -31.40833333333333 51.2075 -31.410833333333333 51.21666666666667 -31.413055555555555 51.21944444444445 -31.41333333333333 51.22638888888889 -31.41472222222222 51.23583333333333 -31.419444444444444 51.24 -31.42361111111111 51.243611111111115 -31.427222222222223 51.24805555555556 -31.429722222222225 51.25416666666667 -31.42777777777778 51.25972222222222 -31.424166666666668 51.265277777777776 -31.421944444444446 51.27111111111111 -31.420833333333334 51.27583333333333 -31.422222222222224 51.28388888888889 -31.426944444444445 51.288333333333334 -31.43111111111111 51.29666666666667 -31.433888888888887 51.30361111111111 -31.435555555555556 51.31472222222222 -31.43638888888889 51.34055555555556 -31.43777777777778 51.34638888888889 -31.436944444444446 51.355555555555554 -31.43277777777778 51.36555555555556 -31.432222222222222 51.38638888888889 -31.43777777777778 51.39055555555556 -31.441666666666666 51.39555555555555 -31.445555555555554 51.39972222222222 -31.452777777777776 51.408055555555556 -31.458055555555553 51.41027777777778 -31.4575 51.41222222222222 -31.454444444444444 51.413333333333334 -31.445555555555554 51.4175 -31.443333333333335 51.431666666666665 -31.453055555555554 51.46638888888889 -31.46472222222222 51.46666666666667 -31.464444444444442 51.48083333333334 -31.460555555555555 51.48888888888889 -31.464444444444442 51.50138888888889 -31.486944444444447 51.51416666666667 -31.488611111111112 51.51555555555556 -31.488333333333333 51.51888888888889 -31.490277777777777 51.52333333333333 -31.5075 51.52444444444444 -31.511944444444445 51.52833333333333 -31.513055555555557 51.550555555555555 -31.519166666666667 51.55583333333333 -31.520555555555553 51.55722222222222 -31.520833333333332 51.55722222222222 -31.51833333333333 51.558055555555555 -31.509166666666665 51.56111111111111 -31.499444444444446 51.56472222222222 -31.509166666666665 51.57972222222222 -31.498611111111114 51.58222222222223 -31.493333333333336 51.586111111111116 -31.49527777777778 51.59777777777778 -31.491666666666667 51.603611111111114 -31.493055555555557 51.61 -31.490833333333335 51.60777777777778 -31.483333333333334 51.619166666666665 -31.476388888888888 51.62388888888889 -31.46944444444444 51.63527777777778 -31.465833333333332 51.65361111111111 -31.449444444444445 51.67222222222222 -31.44472222222222 51.70722222222223 -31.43638888888889 51.718611111111116 -31.43166666666667 51.74666666666667 -31.418333333333333 51.757222222222225 -31.41583333333333 51.763888888888886 -31.408055555555553 51.765 -31.398055555555555 51.7875 -31.365555555555556 51.80027777777777 -31.349722222222223 51.80222222222222 -31.34638888888889 51.815 -31.325277777777778 51.8525 -31.29527777777778 51.87888888888889 -31.274444444444445 51.882777777777775 -31.27583333333333 51.888333333333335 -31.28111111111111 51.903888888888886 -31.27138888888889 51.91416666666667 -31.26527777777778 51.94972222222222 -31.249722222222225 51.969722222222224 -31.25722222222222 51.97166666666667 -31.2575 51.97777777777778 -31.2575 51.986111111111114 -31.250833333333333 51.99666666666667 -31.209166666666665 51.99916666666667 -31.20638888888889 52.006388888888885 -31.198611111111113 52.00805555555556 -31.1925 52.00694444444444 -31.18611111111111 51.99805555555556 -31.174166666666668 51.9975 -31.169722222222223 52.00083333333333 -31.125833333333333 52.007222222222225 -31.115833333333335 52.013333333333335 -31.115833333333335 52.020833333333336 -31.120555555555555 52.0225 -31.12 52.03666666666666 -31.107222222222223 52.04 -31.09472222222222 52.040277777777774 -31.08833333333333 52.038333333333334 -31.08 52.02444444444444 -31.05777777777778 52.019444444444446 -31.041944444444447 52.020833333333336 -31.023333333333333 52.028055555555554 -30.99361111111111 52.033055555555556 -30.990555555555556 52.04666666666667 -30.99888888888889 52.05638888888888 -30.993055555555557 52.061388888888885 -30.991666666666667 52.06361111111111 -30.991666666666667 52.06777777777778 -30.991666666666667 52.07277777777778 -30.993055555555557 52.078611111111115 -30.994444444444447 52.125 -30.960277777777776 52.13388888888889 -30.956944444444442 52.14722222222222 -30.951666666666664 52.17777777777778 -30.944444444444446 52.180277777777775 -30.94361111111111 52.20944444444445 -30.934444444444445 52.21388888888889 -30.935 52.215833333333336 -30.935833333333335 52.21805555555556 -30.936944444444446 52.217777777777776 -30.950555555555553 52.20888888888889 -30.96638888888889 52.20916666666667 -30.97083333333333 52.20916666666667 -30.975555555555555 52.20527777777778 -30.990000000000002 52.20638888888889 -31.00111111111111 52.20527777777778 -31.005555555555556 52.19444444444444 -31.00611111111111 52.19083333333333 -31.01 52.18805555555555 -31.01388888888889 52.18611111111111 -31.019166666666667 52.18472222222222 -31.023888888888887 52.18388888888889 -31.026666666666667 52.183055555555555 -31.035555555555558 52.17805555555555 -31.053055555555556 52.18388888888889 -31.064444444444444 52.183055555555555 -31.066944444444445 52.176944444444445 -31.07111111111111 52.175555555555555 -31.074166666666667 52.17611111111111 -31.081666666666667 52.17611111111111 -31.0825 52.181666666666665 -31.090555555555554 52.18722222222222 -31.099166666666665 52.18944444444444 -31.100555555555555 52.21138888888889 -31.114444444444445 52.23222222222223 -31.133333333333333 52.23444444444444 -31.133888888888887 52.26833333333333 -31.142777777777777 52.27305555555555 -31.14527777777778 52.27388888888889 -31.145833333333332 52.27972222222222 -31.151666666666664 52.294444444444444 -31.17138888888889 52.30333333333333 -31.179722222222225 52.33527777777778 -31.203055555555554 52.336111111111116 -31.204166666666666 52.34166666666667 -31.210555555555555 52.37777777777778 -31.249444444444446 52.3975 -31.26888888888889 52.42222222222222 -31.284166666666668 52.43527777777778 -31.311944444444446 52.43527777777778 -31.31833333333333 52.434999999999995 -31.329444444444444 52.43666666666666 -31.330277777777777 52.4375 -31.330555555555556 52.45 -31.314444444444444 52.46388888888889 -31.310000000000002 52.47888888888889 -31.295833333333334 52.4825 -31.296666666666667 52.48416666666667 -31.297222222222224 52.48222222222223 -31.302222222222223 52.478611111111114 -31.31138888888889 52.480000000000004 -31.315833333333334 52.48416666666667 -31.316944444444445 52.49888888888889 -31.313055555555557 52.50805555555556 -31.310555555555556 52.51611111111111 -31.30611111111111 52.52388888888889 -31.301666666666666 52.54055555555556 -31.297222222222224 52.54527777777778 -31.294722222222223 52.552499999999995 -31.28527777777778 52.556666666666665 -31.282777777777778 52.56777777777778 -31.27638888888889 52.574444444444445 -31.272499999999997 52.590833333333336 -31.260277777777777 52.60611111111111 -31.255277777777778 52.62361111111111 -31.240833333333335 52.628055555555555 -31.242222222222225 52.63138888888889 -31.256666666666668 52.6325 -31.260833333333334 52.63527777777778 -31.264722222222222 52.638333333333335 -31.26527777777778 52.66694444444444 -31.264444444444443 52.71888888888889 -31.254722222222224 52.72916666666667 -31.245 52.73388888888889 -31.234166666666667 52.734722222222224 -31.231944444444444 52.74611111111111 -31.205 52.74666666666667 -31.203611111111112 52.75361111111111 -31.19472222222222 52.768055555555556 -31.185 52.77611111111111 -31.161666666666665 52.77972222222222 -31.15694444444444 52.7875 -31.15222222222222 52.7975 -31.145833333333332 52.81222222222222 -31.12611111111111 52.81444444444444 -31.119722222222222 52.81444444444444 -31.118333333333332 52.81472222222222 -31.096666666666664 52.82138888888889 -31.084722222222222 52.84027777777778 -31.076666666666668 52.84277777777778 -31.07472222222222 52.85472222222222 -31.06388888888889 52.85777777777778 -31.05777777777778 52.85888888888889 -31.053333333333335 52.86333333333334 -31.037222222222223 52.867777777777775 -31.033611111111114 52.87555555555556 -31.03111111111111 52.880833333333335 -31.03222222222222 52.896388888888886 -31.043055555555558 52.90083333333333 -31.046111111111113 52.907222222222224 -31.048611111111114 52.91222222222222 -31.046111111111113 52.920833333333334 -31.026944444444442 52.92194444444444 -31.02583333333333 52.92527777777777 -31.022777777777776 52.94138888888889 -31.016944444444444 52.96333333333334 -30.999444444444446 52.97138888888889 -30.990277777777777 52.999722222222225 -30.96972222222222 53.0225 -30.953611111111112 53.02583333333333 -30.953333333333333 53.028888888888886 -30.953333333333333 53.032222222222224 -30.955277777777777 53.04083333333333 -30.965833333333332 53.044999999999995 -30.966944444444444 53.05916666666666 -30.96222222222222 53.078611111111115 -30.976666666666667 53.09638888888889 -31.000833333333333 53.1025 -31.011388888888888 53.11666666666667 -31.016666666666666 53.11694444444444 -31.035833333333336 53.11694444444444 -31.036944444444448 53.11805555555556 -31.043055555555558 53.11694444444444 -31.052500000000002 53.10027777777778 -31.098333333333333 53.09916666666667 -31.115555555555556 53.10111111111111 -31.12777777777778 53.109722222222224 -31.140277777777776 53.11638888888889 -31.14472222222222 53.12111111111111 -31.14527777777778 53.13527777777778 -31.141666666666666 53.155833333333334 -31.131666666666668 53.16722222222222 -31.133333333333333 53.17444444444444 -31.144166666666667 53.17861111111111 -31.172777777777778 53.18194444444444 -31.195 53.18527777777778 -31.206666666666667 53.19611111111111 -31.224444444444444 53.200833333333335 -31.22972222222222 53.21361111111111 -31.23777777777778 53.23916666666667 -31.241666666666667 53.254444444444445 -31.240555555555556 53.268055555555556 -31.234166666666667 53.276666666666664 -31.230277777777776 53.28111111111111 -31.232499999999998 53.29833333333333 -31.254722222222224 53.30555555555555 -31.266111111111112 53.32277777777778 -31.292222222222225 53.347500000000004 -31.31277777777778 53.35027777777778 -31.31416666666667 53.35944444444445 -31.318055555555556 53.38527777777778 -31.329722222222223 53.39 -31.3275 53.401111111111106 -31.30888888888889 53.40611111111111 -31.303333333333335 53.4075 -31.30138888888889 53.413333333333334 -31.299444444444447 53.43611111111111 -31.299722222222226 53.45194444444445 -31.293333333333337 53.45611111111111 -31.294444444444448 53.461111111111116 -31.300555555555555 53.4675 -31.315 53.47222222222222 -31.3325 53.473333333333336 -31.33722222222222 53.47416666666667 -31.33861111111111 53.48083333333334 -31.34861111111111 53.480555555555554 -31.359444444444446 53.48555555555556 -31.371944444444445 53.489444444444445 -31.37666666666667 53.49055555555556 -31.378055555555555 53.49805555555556 -31.3825 53.52638888888889 -31.391111111111112 53.53444444444444 -31.404999999999998 53.53388888888889 -31.407777777777778 53.53527777777778 -31.415555555555553 53.53638888888889 -31.4225 53.54111111111111 -31.43 53.54472222222222 -31.434722222222224 53.561388888888885 -31.443333333333335 53.56861111111112 -31.45 53.57166666666667 -31.4525 53.57666666666667 -31.460555555555555 53.58027777777778 -31.470277777777778 53.58444444444444 -31.481111111111108 53.59305555555556 -31.49277777777778 53.61611111111111 -31.50777777777778 53.652499999999996 -31.525555555555556 53.656388888888884 -31.525 53.659166666666664 -31.522222222222222 53.659166666666664 -31.521944444444443 53.66166666666666 -31.515833333333333 53.665 -31.508333333333333 53.66416666666667 -31.488055555555558 53.66611111111111 -31.46611111111111 53.65861111111111 -31.423055555555557 53.65833333333333 -31.421944444444446 53.653055555555554 -31.403888888888886 53.651944444444446 -31.393055555555556 53.65222222222222 -31.391111111111112 53.651944444444446 -31.37138888888889 53.64861111111111 -31.326666666666668 53.647777777777776 -31.31361111111111 53.6625 -31.264722222222222 53.66611111111111 -31.252777777777776 53.66611111111111 -31.251944444444444 53.66611111111111 -31.250555555555554 53.66277777777778 -31.183611111111112 53.66222222222222 -31.175833333333333 53.66083333333333 -31.170555555555556 53.65833333333333 -31.15888888888889 53.657222222222224 -31.150555555555552 53.65694444444444 -31.1475 53.65888888888889 -31.136388888888888 53.66361111111111 -31.109722222222224 53.663333333333334 -31.105 53.66277777777778 -31.09722222222222 53.66138888888889 -31.092222222222222 53.66111111111111 -31.09111111111111 53.65611111111111 -31.06833333333333 53.656388888888884 -31.059444444444445 53.6625 -31.044444444444448 53.67027777777778 -31.016111111111112 53.67194444444444 -31.011944444444445 53.68 -31.00611111111111 53.68611111111111 -31.0 53.69166666666666 -31.00111111111111 53.69222222222222 -31.00111111111111 53.71416666666667 -30.998333333333335 53.71888888888889 -30.995 53.72416666666667 -30.99138888888889 53.72805555555556 -30.990555555555556 53.73777777777778 -30.991944444444446 53.74277777777778 -30.990833333333335 53.76416666666667 -30.97861111111111 53.77027777777778 -30.97722222222222 53.778888888888886 -30.97722222222222 53.7975 -30.985555555555557 53.80472222222222 -30.983611111111113 53.81111111111111 -30.974999999999998 53.81916666666667 -30.96472222222222 53.82055555555556 -30.951666666666664 53.82277777777778 -30.945833333333333 53.82361111111111 -30.94361111111111 53.83388888888889 -30.929166666666667 53.84527777777778 -30.92777777777778 53.850833333333334 -30.916944444444447 53.8675 -30.9025 53.89361111111111 -30.899722222222223 53.913888888888884 -30.904444444444444 53.921388888888885 -30.9025 53.930277777777775 -30.8925 53.93388888888889 -30.88861111111111 53.943888888888885 -30.885555555555555 53.95805555555556 -30.89 53.97166666666667 -30.885555555555555 53.99277777777778 -30.875555555555557 54.0 -30.87472222222222 54.006388888888885 -30.87027777777778 54.010555555555555 -30.868333333333332 54.01305555555555 -30.86388888888889 54.01972222222222 -30.871666666666666 54.020833333333336 -30.873055555555556 54.02333333333333 -30.875 54.025277777777774 -30.87527777777778 54.02916666666667 -30.87638888888889 54.030277777777776 -30.87666666666667 54.03194444444444 -30.878611111111113 54.033055555555556 -30.880277777777778 54.03666666666666 -30.879444444444445 54.05027777777777 -30.891666666666666 54.05083333333333 -30.8925 54.05277777777778 -30.89472222222222 54.0575 -30.89527777777778 54.059999999999995 -30.894444444444446 54.062777777777775 -30.893333333333334 54.062777777777775 -30.896944444444443 54.065 -30.90361111111111 54.06583333333333 -30.904166666666665 54.07333333333334 -30.91444444444444 54.07694444444445 -30.91722222222222 54.086111111111116 -30.919444444444444 54.09138888888889 -30.924722222222222 54.102222222222224 -30.929444444444446 54.10333333333333 -30.9325 54.10611111111111 -30.938333333333333 54.113055555555555 -30.941111111111113 54.11416666666667 -30.945 54.11333333333334 -30.949166666666667 54.115 -30.959444444444443 54.120555555555555 -30.982777777777777 54.11666666666667 -30.990277777777777 54.125 -31.00027777777778 54.136944444444445 -31.009166666666665 54.14555555555555 -31.011388888888888 54.153888888888886 -31.008333333333333 54.15888888888889 -31.009166666666665 54.16444444444444 -31.014166666666668 54.187777777777775 -31.01861111111111 54.19888888888889 -31.015555555555554 54.211666666666666 -31.010277777777777 54.221944444444446 -31.005555555555556 54.25527777777778 -30.944444444444446 54.25527777777778 -30.944166666666668 54.2575 -30.89611111111111 54.260555555555555 -30.875555555555557 54.26694444444444 -30.858055555555556 54.27611111111111 -30.85611111111111 54.288888888888884 -30.858611111111113 54.29722222222222 -30.85638888888889 54.30611111111111 -30.843888888888888 54.31388888888888 -30.83 54.315555555555555 -30.827222222222222 54.33111111111111 -30.789722222222224 54.35611111111111 -30.78638888888889 54.35944444444445 -30.784722222222225 54.36555555555556 -30.776666666666667 54.36666666666667 -30.775 54.37027777777778 -30.77611111111111 54.373333333333335 -30.781944444444445 54.375277777777775 -30.792222222222225 54.38166666666667 -30.80138888888889 54.38777777777778 -30.809166666666666 54.41444444444444 -30.828333333333333 54.41833333333333 -30.83111111111111 54.42638888888889 -30.83 54.43416666666666 -30.83361111111111 54.45472222222222 -30.84 54.471944444444446 -30.830555555555556 54.48388888888889 -30.816666666666666 54.50361111111111 -30.80611111111111 54.510555555555555 -30.799722222222226 54.51222222222222 -30.795 54.5325 -30.789444444444445 54.54 -30.79416666666667 54.55583333333333 -30.80611111111111 54.56361111111111 -30.819166666666668 54.5625 -30.82611111111111 54.56861111111112 -30.837777777777777 54.5925 -30.822499999999998 54.59388888888889 -30.82111111111111 54.60333333333333 -30.814444444444444 54.61694444444444 -30.804444444444446 54.63194444444444 -30.796666666666667 54.64944444444444 -30.79277777777778 54.6675 -30.799444444444447 54.70888888888889 -30.807222222222222 54.716944444444444 -30.808611111111112 54.72972222222222 -30.81388888888889 54.7325 -30.81861111111111 54.73694444444445 -30.819166666666668 54.745 -30.824166666666667 54.74666666666667 -30.825277777777778 54.768055555555556 -30.823333333333334 54.78611111111111 -30.822499999999998 54.80694444444444 -30.815833333333334 54.82333333333334 -30.820555555555554 54.83444444444444 -30.816666666666666 54.84138888888889 -30.819166666666668 54.843611111111116 -30.81722222222222 54.845555555555556 -30.803055555555556 54.848888888888894 -30.798333333333336 54.878055555555555 -30.804722222222225 54.88194444444444 -30.808333333333334 54.8825 -30.810833333333335 54.88638888888889 -30.826944444444443 54.890277777777776 -30.829444444444444 54.89472222222222 -30.836666666666666 54.90138888888889 -30.842777777777776 54.92666666666666 -30.84361111111111 54.95416666666667 -30.85666666666667 54.958333333333336 -30.861111111111114 54.96388888888889 -30.8725 54.97222222222222 -30.878333333333334 54.98222222222223 -30.888055555555557 54.9975 -30.904444444444444 55.01083333333333 -30.915277777777778 55.01888888888889 -30.92638888888889 55.02194444444444 -30.928055555555556 55.027499999999996 -30.928611111111113 55.03 -30.929166666666667 55.03388888888889 -30.93027777777778 55.0375 -30.92027777777778 55.038888888888884 -30.915 55.0375 -30.901944444444442 55.03722222222222 -30.90111111111111 55.03611111111111 -30.89611111111111 55.03611111111111 -30.895833333333332 55.030833333333334 -30.875 55.03722222222222 -30.823055555555555 55.041666666666664 -30.811944444444446 55.04416666666666 -30.80666666666667 55.05138888888889 -30.80027777777778 55.05444444444444 -30.797777777777778 55.06583333333333 -30.7825 55.07277777777778 -30.77861111111111 55.08861111111111 -30.77027777777778 55.10611111111111 -30.754166666666666 55.11277777777778 -30.755555555555556 55.120555555555555 -30.7625 55.128055555555555 -30.76861111111111 55.13305555555556 -30.76527777777778 55.14194444444444 -30.74888888888889 55.161944444444444 -30.719166666666666 55.17916666666667 -30.70111111111111 55.195277777777775 -30.692777777777778 55.209722222222226 -30.68111111111111 55.221944444444446 -30.675555555555558 55.24 -30.645833333333332 55.243611111111115 -30.634166666666665 55.24527777777778 -30.623333333333335 55.245 -30.61888888888889 55.245 -30.61861111111111 55.24277777777778 -30.612222222222222 55.23888888888889 -30.596666666666664 55.237500000000004 -30.58888888888889 55.23777777777778 -30.575277777777778 55.23777777777778 -30.570555555555554 55.24277777777778 -30.5625 55.24638888888889 -30.558333333333334 55.25666666666667 -30.543055555555558 55.26 -30.529444444444444 55.26583333333333 -30.506666666666668 55.29277777777778 -30.472777777777775 55.29972222222222 -30.46 55.30138888888889 -30.456944444444442 55.30722222222222 -30.440555555555555 55.315555555555555 -30.428333333333335 55.33416666666667 -30.416666666666668 55.343333333333334 -30.410555555555554 55.35027777777778 -30.39611111111111 55.35888888888889 -30.384166666666665 55.36222222222222 -30.38138888888889 55.367222222222225 -30.383055555555558 55.3675 -30.383333333333333 55.38944444444444 -30.390277777777776 55.39555555555555 -30.38361111111111 55.395833333333336 -30.383333333333333 55.39694444444444 -30.37388888888889 55.394999999999996 -30.365833333333335 55.394444444444446 -30.36527777777778 55.38611111111111 -30.356944444444444 55.38583333333333 -30.353055555555557 55.38583333333333 -30.352777777777778 55.38666666666666 -30.341388888888886 55.386944444444445 -30.340277777777775 55.38777777777778 -30.339166666666664 55.38777777777778 -30.33888888888889 55.388333333333335 -30.337777777777777 55.38861111111111 -30.336944444444445 55.39 -30.334444444444443 55.39055555555556 -30.333888888888886 55.395833333333336 -30.329444444444444 55.403055555555554 -30.326944444444443 55.407777777777774 -30.325277777777778 55.413333333333334 -30.32138888888889 55.41722222222222 -30.315 55.424166666666665 -30.308055555555555 55.43333333333333 -30.304444444444446 55.433611111111105 -30.304444444444446 55.43666666666666 -30.304722222222225 55.44444444444444 -30.305555555555557 55.44972222222222 -30.302777777777777 55.47694444444445 -30.28638888888889 55.481388888888894 -30.285555555555558 55.49583333333334 -30.27111111111111 55.503055555555555 -30.258333333333333 55.51777777777777 -30.254166666666666 55.532777777777774 -30.231111111111108 55.54194444444444 -30.223333333333333 55.55555555555555 -30.21611111111111 55.558611111111105 -30.211111111111112 55.56444444444444 -30.208055555555553 55.569722222222225 -30.2025 55.57361111111111 -30.19611111111111 55.57833333333333 -30.18277777777778 55.58388888888889 -30.184166666666666 55.597500000000004 -30.197777777777777 55.603611111111114 -30.21833333333333 55.63916666666667 -30.25111111111111 55.650555555555556 -30.267777777777777 55.655277777777776 -30.273333333333333 55.65972222222222 -30.284722222222225 55.66 -30.28611111111111 55.66444444444444 -30.30777777777778 55.66611111111111 -30.31527777777778 55.67777777777778 -30.341388888888886 55.67777777777778 -30.341666666666665 55.67916666666667 -30.348333333333333 55.67638888888889 -30.368055555555557 55.67722222222222 -30.377222222222223 55.68111111111111 -30.391388888888887 55.68111111111111 -30.409444444444443 55.681666666666665 -30.412777777777777 55.683055555555555 -30.42 55.68722222222222 -30.4375 55.669444444444444 -30.452777777777776 55.658055555555556 -30.496666666666666 55.66611111111111 -30.502777777777776 55.67666666666666 -30.5175 55.68 -30.526944444444442 55.69083333333333 -30.54527777777778 55.69166666666666 -30.554444444444446 55.69972222222222 -30.549722222222226 55.7 -30.549444444444447 55.70805555555556 -30.545 55.711666666666666 -30.54527777777778 55.73166666666667 -30.551944444444445 55.736111111111114 -30.557222222222222 55.742222222222225 -30.559166666666666 55.7475 -30.569166666666668 55.75194444444445 -30.56888888888889 55.76083333333333 -30.55638888888889 55.769444444444446 -30.550555555555555 55.786944444444444 -30.546666666666667 55.79611111111111 -30.54416666666667 55.801944444444445 -30.539444444444445 55.81388888888888 -30.53666666666667 55.819722222222225 -30.53111111111111 55.83444444444444 -30.528055555555554 55.84027777777778 -30.529166666666665 55.85944444444445 -30.522499999999997 55.86138888888889 -30.523333333333333 55.86527777777778 -30.52027777777778 55.869166666666665 -30.51722222222222 55.87388888888889 -30.521944444444443 55.87916666666667 -30.535 55.88361111111111 -30.560833333333335 55.89611111111111 -30.55611111111111 55.90416666666667 -30.551944444444445 55.913333333333334 -30.551666666666666 55.92361111111111 -30.544444444444448 55.93138888888889 -30.541944444444447 55.94416666666666 -30.551111111111112 55.96472222222223 -30.56638888888889 55.9675 -30.57138888888889 55.968333333333334 -30.58 55.953611111111115 -30.581944444444446 55.9475 -30.589444444444442 55.94361111111111 -30.61277777777778 55.940555555555555 -30.64388888888889 55.93805555555555 -30.659444444444443 55.936388888888885 -30.674444444444447 55.93722222222222 -30.69 55.93888888888888 -30.7075 55.941111111111105 -30.721666666666664 55.94083333333333 -30.732499999999998 55.94972222222222 -30.74416666666667 55.973055555555554 -30.754444444444445 55.98527777777778 -30.767777777777777 55.987500000000004 -30.80027777777778 55.981944444444444 -30.80388888888889 55.968333333333334 -30.805555555555557 55.95333333333333 -30.80888888888889 55.945277777777775 -30.825555555555557 55.94444444444444 -30.843888888888888 55.94638888888888 -30.851944444444445 55.94416666666666 -30.85527777777778 55.94 -30.873333333333335 55.93861111111111 -30.88277777777778 55.94138888888889 -30.894444444444446 55.94138888888889 -30.915555555555553 55.94361111111111 -30.925555555555558 55.947222222222216 -30.935833333333335 55.94944444444444 -30.93888888888889 55.950833333333335 -30.940555555555555 55.96138888888889 -30.947777777777777 55.97166666666667 -30.95888888888889 55.96805555555556 -30.97694444444444 55.95805555555556 -30.988611111111112 55.94944444444444 -31.00138888888889 55.94888888888889 -31.013333333333332 55.95194444444445 -31.023055555555555 55.950833333333335 -31.041944444444447 55.94972222222222 -31.059444444444445 55.95277777777778 -31.064722222222223 55.97083333333334 -31.078611111111112 55.98527777777778 -31.114444444444445 55.98388888888889 -31.123055555555556 55.98972222222222 -31.14472222222222 55.987500000000004 -31.160277777777775 55.98722222222222 -31.160555555555554 55.985 -31.16638888888889 55.985 -31.166666666666668 55.980000000000004 -31.17527777777778 55.97972222222222 -31.175833333333333 55.97 -31.18277777777778 55.97 -31.18305555555556 55.966944444444444 -31.183888888888887 55.96222222222222 -31.185 55.96 -31.185833333333335 55.95333333333333 -31.180833333333336 55.95333333333333 -31.180555555555557 55.95277777777778 -31.18111111111111 55.94888888888889 -31.18277777777778 55.94416666666666 -31.183611111111112 55.94305555555555 -31.183888888888887 55.94277777777778 -31.183888888888887 55.91861111111111 -31.174166666666668 55.91555555555556 -31.174166666666668 55.913888888888884 -31.174166666666668 55.91277777777778 -31.174722222222222 55.911944444444444 -31.17527777777778 55.88638888888889 -31.191666666666666 55.88166666666667 -31.201944444444443 55.879444444444445 -31.20583333333333 55.87166666666667 -31.219166666666666 55.86472222222223 -31.246666666666666 55.848888888888894 -31.290277777777778 55.84138888888889 -31.324166666666667 55.84638888888889 -31.35777777777778 55.84638888888889 -31.36777777777778 55.83722222222222 -31.384999999999998 55.825 -31.393333333333334 55.81944444444445 -31.39611111111111 55.814166666666665 -31.404722222222222 55.81222222222222 -31.4175 55.82333333333334 -31.42388888888889 55.830000000000005 -31.42138888888889 55.83388888888889 -31.42666666666667 55.83555555555556 -31.428611111111113 55.844166666666666 -31.44 55.85638888888889 -31.449722222222224 55.862500000000004 -31.452222222222222 55.862500000000004 -31.461388888888887 55.871944444444445 -31.49388888888889 55.86527777777778 -31.506944444444443 55.85611111111111 -31.50861111111111 55.85055555555556 -31.50638888888889 55.84861111111111 -31.510277777777777 55.843611111111116 -31.522499999999997 55.83888888888889 -31.540833333333335 55.83083333333334 -31.56638888888889 55.831388888888895 -31.578055555555554 55.83444444444444 -31.591388888888886 55.840833333333336 -31.608611111111113 55.843611111111116 -31.608333333333334 55.85861111111111 -31.602222222222224 55.87 -31.59 55.88055555555555 -31.57472222222222 55.88111111111111 -31.580555555555556 55.87861111111111 -31.590833333333332 55.882222222222225 -31.610833333333336 55.8825 -31.65 55.89138888888889 -31.663055555555555 55.90333333333333 -31.684444444444445 55.905277777777776 -31.689444444444444 55.903888888888886 -31.697222222222223 55.9 -31.705555555555556 55.89388888888889 -31.718055555555555 55.89388888888889 -31.734722222222224 55.89555555555555 -31.745 55.894444444444446 -31.75861111111111 55.88388888888889 -31.780555555555555 55.87972222222222 -31.796666666666667 55.8775 -31.82 55.876666666666665 -31.83138888888889 55.86694444444444 -31.834166666666665 55.86194444444445 -31.842222222222222 55.85638888888889 -31.84722222222222 55.852222222222224 -31.874166666666667 55.85722222222223 -31.88138888888889 55.86416666666667 -31.884999999999998 55.90888888888889 -31.875 55.92305555555555 -31.88277777777778 55.925555555555555 -31.892777777777777 55.92472222222222 -31.896944444444443 55.91888888888889 -31.90833333333333 55.904444444444444 -31.9075 55.89138888888889 -31.90833333333333 55.88472222222222 -31.911666666666665 55.87722222222222 -31.920833333333334 55.87416666666667 -31.927222222222223 55.86944444444445 -31.96944444444444 55.86638888888889 -31.974166666666665 55.852222222222224 -31.983888888888888 55.84805555555556 -31.991666666666667 55.831388888888895 -32.00277777777778 55.82777777777778 -32.010555555555555 55.825833333333335 -32.025277777777774 55.8175 -32.04138888888889 55.81638888888889 -32.04694444444444 55.81361111111111 -32.05972222222222 55.80416666666667 -32.065 55.80333333333333 -32.065 55.80138888888889 -32.07944444444445 55.80138888888889 -32.090833333333336 55.80138888888889 -32.09527777777778 55.80444444444444 -32.10305555555556 55.806666666666665 -32.108333333333334 55.806666666666665 -32.10861111111111 55.80888888888889 -32.11416666666667 55.81055555555555 -32.12777777777778 55.81055555555555 -32.129444444444445 55.81638888888889 -32.149166666666666 55.85305555555556 -32.155 55.87361111111111 -32.1625 55.87694444444445 -32.165277777777774 55.88 -32.16777777777777 55.88138888888889 -32.17194444444444 55.88194444444444 -32.19416666666666 55.88194444444444 -32.19444444444444 55.89194444444444 -32.20194444444445 55.89972222222222 -32.2075 55.905 -32.21027777777778 55.908055555555556 -32.21194444444445 55.90972222222222 -32.21083333333333 55.919999999999995 -32.20944444444445 55.92527777777777 -32.202222222222225 55.95138888888889 -32.1825 55.95444444444445 -32.176944444444445 55.96 -32.17222222222222 55.96083333333333 -32.17166666666667 55.967777777777776 -32.168055555555554 55.973888888888894 -32.16166666666666 55.99194444444444 -32.12861111111111 56.00472222222222 -32.11055555555556 56.01027777777778 -32.096944444444446 56.01638888888889 -32.081388888888895 56.03361111111111 -32.0775 56.045833333333334 -32.07944444444445 56.05611111111111 -32.08111111111111 56.07083333333334 -32.094722222222224 56.077222222222225 -32.11138888888889 56.078611111111115 -32.12361111111111 56.06583333333333 -32.16722222222222 56.06638888888889 -32.175555555555555 56.07027777777778 -32.17583333333333 56.085 -32.17833333333333 56.1225 -32.18611111111111 56.135 -32.18694444444444 56.13944444444444 -32.18722222222222 56.1425 -32.18722222222222 56.14277777777778 -32.187777777777775 56.14527777777778 -32.19166666666666 56.14555555555555 -32.19944444444444 56.14083333333333 -32.20638888888889 56.13666666666666 -32.211111111111116 56.13583333333333 -32.21416666666667 56.13361111111111 -32.222500000000004 56.132777777777775 -32.225833333333334 56.1325 -32.23361111111111 56.13194444444444 -32.242222222222225 56.13138888888889 -32.24333333333333 56.120555555555555 -32.265 56.11333333333334 -32.279444444444444 56.10277777777778 -32.30833333333333 56.094722222222224 -32.31722222222223 56.09027777777778 -32.331388888888895 56.09166666666667 -32.35638888888889 56.09027777777778 -32.36222222222222 56.081944444444446 -32.38305555555556 56.07916666666667 -32.41222222222222 56.081388888888895 -32.42916666666667 56.078611111111115 -32.473888888888894 56.078611111111115 -32.480000000000004 56.07833333333333 -32.48555555555556 56.07972222222222 -32.50277777777778 56.075833333333335 -32.51638888888889 56.056666666666665 -32.53055555555555 56.05444444444444 -32.58972222222222 56.05555555555555 -32.59805555555556 56.05222222222222 -32.61472222222223 56.04833333333333 -32.6275 56.032222222222224 -32.64555555555555 56.00527777777778 -32.65694444444444 55.99111111111111 -32.67472222222222 55.980555555555554 -32.70055555555556 55.973888888888894 -32.72361111111111 55.931666666666665 -32.75333333333333 55.925 -32.76111111111111 55.91916666666666 -32.77388888888889 55.91277777777778 -32.79361111111111 55.907777777777774 -32.80638888888888 55.885555555555555 -32.837500000000006 55.8725 -32.85722222222223 55.934999999999995 -33.39944444444444 - - - - - - - - - - - ebccbb64-c1b3-4b27-8e5a-a32d2763208a - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - 52.375597222222225 -31.964263888888887 - - - - - - - - - - e9240179-b707-4133-b49f-39725663e736 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - 52.37818888888889 -31.921847222222222 - - - - - - - - - - fc5b84ee-08bc-4d04-a358-f4cca8609a8f - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ILS - OXS - OXS - - - 1 - - - - - - 2 - - - - - - 52.3755833333333 -31.9652222222222 - 0.0 - - - - - - - - - - - 2012-10-07T10:00:00Z - 2012-10-07T14:00:00Z - - - TEMPDELTA - 1 - - - UNSERVICEABLE - - - - - operationalStatus - REMARK - - - DUE TO MAINTENANCE - - - - - - - - - - - 2ad9861c-7624-481b-b344-c1f601e51939 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OXS - OXS_LLZ - - - 52.3755833333333 -31.9652222222222 - 0.0 - - - 109.1 - - - - - - - 2012-10-07T10:00:00Z - 2012-10-07T14:00:00Z - - - TEMPDELTA - 1 - - - UNSERVICEABLE - - - - - - - - - c9bfcce2-76ad-46b7-a1e7-2c246893db56 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - SNAPSHOT - - - 2009-01-01T00:00:00Z - - - - OXS - OXS_GP - - - 52.3784444444444 -31.9267777777778 - - - 331.4 - - - - - - - 2012-10-07T10:00:00Z - 2012-10-07T14:00:00Z - - - TEMPDELTA - 1 - - - UNSERVICEABLE - - - - - - - - - f37a6ecd-4765-48ed-88f1-6a42643fc13a - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 90.0 - MAG_BRG - 270.0 - RIGHT - 4267.2 - 1066.8 - 256.1933112 - - - 60.0 - - - - - - - 52.36833333333333 -32.375 - - - - - - - - - - - 5ec34a95-b680-4f4b-a2d7-99f2f14b4560 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 90.0 - MAG_BRG - 270.0 - RIGHT - 6096.0 - 4572.0 - 256.1933112 - - - 90.0 - - - - - - - 52.36833333333333 -32.375 - - - - - - - - - - - 39f50cab-cf8a-43c7-b6c4-1705c3886ae7 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 90.0 - MAG_BRG - 270.0 - RIGHT - 10363.2 - 6400.8 - 256.1933112 - - - 90.0 - - - - - - - 52.36833333333333 -32.375 - - - - - - - - - - - 39845412-b7b9-4932-93e0-807c92b7cbb5 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 90.0 - MAG_BRG - 270.0 - RIGHT - 14020.8 - 10668.0 - 256.1933112 - - - 90.0 - - - - - - - 52.36833333333333 -32.375 - - - - - - - - - - - 91d8e5e6-74b3-4652-9138-52018a34196e - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BUILDING - NO - - - - - 52.37558611111111 -31.965180555555555 - 31.5 - - - - - - - - - - - 5f68d835-828c-4ccd-91b7-791058d9dd4d - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ANTENNA - NO - - - - - 52.36171388888889 -32.03756666666666 - 93 - - - - - - - - - - - 95db0e0f-64d9-4dc0-9a6a-60955f4c489b - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OTHER:POWER_LINE - NO - - - - - 52.36439444444444 -31.9792 - 65 - - - - - - - - - - - aeb69042-44b3-4063-ba80-f862f2cdc0d7 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TOWER - NO - - - - - 52.3676 -31.915894444444444 - 40 - - - - - - - - - - - c0406eae-7f49-4bbe-94a2-747b297c8022 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OTHER:MOBILE_OBST - NO - - - - - 52.37884722222222 -31.915438888888886 - 28 - - - - - - - - - - - 1568f948-fe6d-43d8-81fd-12e37500d0b2 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OTHER:MAST - NO - - - - - 52.354261111111114 -31.92560277777778 - 20 - - - - - - - - - - - c12f97f8-2c91-44e8-9770-ec1966311f18 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OTHER:CHIMNEY - NO - - - - - 52.360597222222225 -31.907077777777776 - 35 - - - - - - - - - - - 17778204-955f-44f2-96ad-cde7d2c347a9 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BUILDING - NO - - - - - 52.35690555555556 -31.914494444444443 - 30 - - - - - - - - - - - 3d9a60b5-6d7f-471d-9744-b767df4a8575 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TLOF - 20.0 - 20.0 - 1.0 - - - 52.288936111111106 -32.035086111111106 - - - - - - - - - - - - - 52.28903333333333 -32.034952777777775 52.28885555555556 -32.034927777777774 52.28883888888889 -32.035219444444444 52.28901666666666 -32.035244444444444 52.28903333333333 -32.034952777777775 - - - - - - - - - 18 - - - - - CONC - - - - - - - - - - 69677242-f98d-40d0-8c04-cf396497270f - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 70.0 - 90.0 - - - GRASS - - - - - - - - - - - - - 52.28932777777778 -32.034549999999996 52.288605555555556 -32.03444722222222 52.28855 -32.03562222222222 52.28926666666666 -32.035725 52.28932777777778 -32.034549999999996 - - - - - - - - - - - - - - - - - - 66ec0e97-5d40-4ca8-bf42-35f8e93723bb - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 242 - - - - - 52.37464269376479 -31.94655407346698 52.372661895885464 -31.946298658872173 52.37249328436266 -31.946309509256167 52.37226938754995 -31.946412846246652 52.372166050559464 -31.946602297395877 52.3720797641724 -31.948219693525278 - - - - - - - - - - - - 5596cc48-232b-431a-94d3-6a6d0351f0cf - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 70.0 - 90.0 - - - GRASS - - - - - - - - - - - - - 52.28932777777778 -32.034549999999996 52.288605555555556 -32.03444722222222 52.28855 -32.03562222222222 52.28926666666666 -32.035725 52.28932777777778 -32.034549999999996 - - - - - - - - - - - - - - - - - - 54f9c436-125a-4661-bc57-0d08af3e4f4b - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 70.0 - 90.0 - - - GRASS - - - - - - - - - - - - - 52.28932777777778 -32.034549999999996 52.288605555555556 -32.03444722222222 52.28855 -32.03562222222222 52.28926666666666 -32.035725 52.28932777777778 -32.034549999999996 - - - - - - - - - - - - - - - - - - d4713d5d-860a-46cd-880b-30f13e291c5b - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - 52.288936111111106 -32.035086111111106 - 18 - - - - - - - - - - 9288f255-e6a1-43fa-9c3c-102a802c99b1 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - G - 116.9 - - - 52.37340555555556 -31.962791666666664 - - - - - - - - - - - 4428d037-1cdf-433a-9bfa-d0857aaf448a - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - 09R/27L - 2600.0 - 45.0 - - - CONC_ASPH - 50 - FLEXIBLE - A - Y - ACFT - - - - - - - - - - 5d6513d4-a62a-49e1-9e26-0b8cbf320daf - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - 09R - 85.29 - - - - - - - - 2ad2bc03-323b-41d3-992e-3c9d4e83dd02 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - THR - - - 52.36550555555556 -31.965008333333333 - - - - - - - - - - ee6019d6-29f7-404d-8cee-b6819f325aed - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - 27L - 265.29 - - - - - - - - 6e7b7beb-4bd2-447c-bd1d-52202ddd37d4 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - THR - - - 52.368252777777776 -31.925594444444446 - - - - - - - - - - 7a8f00e8-15f0-402f-9562-3c109999d545 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.37590585931356 -31.964278043969905 52.375111423433644 -31.964228391727417 52.377870286949445 -31.92180984838786 52.378484819142066 -31.921878401779864 52.37590585931356 -31.964278043969905 - - - - - - - - - - - - - - - - - e24947bb-5083-433e-b125-89199c1d1233 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.36589862656441 -31.96504267834769 52.36519841646239 -31.964972171080476 52.36785927788303 -31.925539068377507 52.36850257170318 -31.92561516687336 52.36589862656441 -31.96504267834769 - - - - - - - - - - - - - - - - - a45ec8a1-2259-4140-8322-a441e3006cb3 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - F - 23.0 - - - CONC_ASPH - 80 - RIGID - B - W - TECH - - - - - - - - - - 78396f68-9c03-438a-a6b4-331157b1a79c - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - A - 23.0 - - - CONC_ASPH - 80 - RIGID - B - W - TECH - - - - - - - - - - 51474004-6ec1-47a0-bada-404b866e6549 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - B - 23.0 - - - CONC_ASPH - 80 - RIGID - B - W - TECH - - - - - - - - - - d3a7ea1e-93d2-4298-adb3-141906a7b178 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - C - 23.0 - - - CONC_ASPH - 80 - RIGID - B - W - TECH - - - - - - - - - - 8a3a6406-6d9e-42e5-a5d7-daac00dc0d52 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - D - 23.0 - - - CONC_ASPH - 80 - RIGID - B - W - TECH - - - - - - - - - - 0c049047-56f5-41a1-ba56-d0695817a3d2 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - I - 23.0 - - - CONC_ASPH - 80 - RIGID - B - W - TECH - - - - - - - - - - 125d2cc5-2fd4-4917-8a08-a1586bce481d - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - G - 23.0 - - - CONC_ASPH - 80 - RIGID - B - W - TECH - - - - - - - - - - cf10b08e-3cd0-4ac3-be6d-ec423bac7a90 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.374114061066535 -31.960971595710426 52.3744611279516 -31.95616981216965 52.37453053140269 -31.954519552332492 52.37521579457132 -31.943777975195324 52.37535133179981 -31.941558553078725 52.376147020041884 -31.92837951247149 52.37622521459678 -31.92756498585794 52.37654100007663 -31.922114654922687 52.376575701802174 -31.921983559515066 52.376660528242404 -31.921929579053103 52.37784085296367 -31.922251530702038 52.377870286949445 -31.92180984838786 52.37655754145512 -31.921374583594957 52.37640766855823 -31.921394132233683 52.37627495351409 -31.921509302599247 52.37619398282116 -31.92167509973242 52.37615353625479 -31.921869815775995 52.37490876237152 -31.942638644826488 52.3745158937468 -31.94927834993428 52.37382493754196 -31.960971595710426 52.37367432444154 -31.96407068771583 52.374727292287155 -31.964265101088674 52.375111423433644 -31.964228391727417 52.37514852880121 -31.963669143754903 52.37413010408671 -31.963484475292006 52.37403221201539 -31.963411376762416 52.37398348915221 -31.963265930776455 52.374114061066535 -31.960971595710426 - - - - - - - - - - - - - - - - - d5465b90-8f8b-4332-b9f4-f564ffefd7ea - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.3744611279516 -31.95616981216965 52.374534458374534 -31.95583776746803 52.374603861825626 -31.95566040309301 52.374734957233244 -31.95545990423429 52.37585820657654 -31.952764796553602 52.375960762592015 -31.951171207621044 52.374694569889876 -31.954570921916073 52.37465008049815 -31.954615411307802 52.374575931511934 -31.954573887875526 52.37453053140269 -31.954519552332492 52.3744611279516 -31.95616981216965 - - - - - - - - - - - - - - - - - 867a4fab-e1e7-499c-90fd-38543a4bc19c - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.37521579457132 -31.943777975195324 52.37533561042285 -31.943061454913373 52.37550740385998 -31.942445861763698 52.37671701222849 -31.939541219415187 52.37682671332614 -31.937855848697783 52.37535133179981 -31.941558553078725 52.37521579457132 -31.943777975195324 - - - - - - - - - - - - - - - - - 63f05cec-6e82-49f6-8e0c-20ef2e1b3ac1 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.376147020041884 -31.92837951247149 52.37631186072712 -31.92831215561649 52.37718553237552 -31.928537670382788 52.37741623285176 -31.928785664733155 52.37748253483813 -31.927771164459894 52.377238895008716 -31.927982851524785 52.37640740347544 -31.92780356267792 52.37622521459678 -31.92756498585794 52.376147020041884 -31.92837951247149 - - - - - - - - - - - - - - - - - 3d4a46a4-df85-497a-b19a-e2d7d16cd66b - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.369376203479014 -31.947955104361693 52.36966361235915 -31.943132732858935 52.37044355915342 -31.928666462531368 52.3705558375811 -31.925885568981418 52.36850257170318 -31.92561516687336 52.36847133176303 -31.926078211791108 52.36992989174596 -31.92645630929092 52.37017550284791 -31.926561571191748 52.36985971714541 -31.93303267185691 52.369794555016334 -31.93398504143583 52.36890734756649 -31.947739263143987 52.36874193600805 -31.94818036063317 52.36669067900043 -31.953041507599508 52.36659929409392 -31.95443305049401 52.369376203479014 -31.947955104361693 - - - - - - - - - - - - - - - - - 0a6b3bbb-912b-4afd-9412-33947d8dca61 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.369794555016334 -31.93398504143583 52.369727240094264 -31.933821252142682 52.36962343151356 -31.933735239318672 52.3679875582048 -31.933408647349477 52.36802915351955 -31.932787080998335 52.369693660147306 -31.93309968028133 52.3697861980821 -31.93308811303948 52.36985971714541 -31.93303267185691 52.369794555016334 -31.93398504143583 - - - - - - - - - - - - - - - - - 4d78044e-2ca4-475a-a678-123e5f7f388b - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.373419352744456 -31.94465243187102 52.37341876432026 -31.94356698787013 52.3738353611297 -31.943635384361233 52.37384564168429 -31.944668155420775 52.373419352744456 -31.94465243187102 - - - - - - - - - - - - - - - - - d6cf5b07-9fb4-4afb-9b47-841643da3e99 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - CONC - 80 - RIGID - B - W - TECH - - - - - - - - - - 285fd2af-599a-4f9b-b812-fd24a68416c4 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.369376203479014 -31.947955104361693 52.36948258558073 -31.947865454851 52.372153867201185 -31.9483824951364 52.37336828819957 -31.94861756739893 52.37356087309213 -31.948652735074965 52.37396613869214 -31.948733118334466 52.374096781103304 -31.94875745923603 52.37429500429997 -31.948911632833443 52.3745158937468 -31.94927834993428 52.37490876237152 -31.942638644826488 52.37475453248021 -31.9432259047973 52.3745528472377 -31.943863586078734 52.37433633219796 -31.944296616158216 52.37404882338086 -31.944655400246912 52.37384564168429 -31.944668155420775 52.373419352744456 -31.94465243187102 52.373240585956786 -31.94466222350188 52.373107871178895 -31.94453075660838 52.37298351392235 -31.94438774576335 52.372846720940146 -31.944338002860732 52.37273479940925 -31.944331784997903 52.37259178856422 -31.94439396362618 52.37248632123943 -31.944468912666462 52.3724167440947 -31.944452297228914 52.372079952926995 -31.94441012447827 52.37202325274635 -31.944411474482564 52.370249685946185 -31.94399642025034 52.37006846582388 -31.943919305304682 52.369937370416245 -31.943788209897058 52.3698101307559 -31.943618557016602 52.36966361235915 -31.943132732858935 52.369376203479014 -31.947955104361693 - - - - - - - - - - - - - - - - - 595dfb4d-6614-4b0d-8392-5e76c720bd90 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - 4 - ANG_NI - - - 52.372075 -31.948222222222224 - - - - - - NORMAL - - - - - - - - - 1707f988-e674-4290-933c-047d87b85bd8 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - CONC - 80 - RIGID - B - W - TECH - - - - - - - - - - f2cd7c2f-2d8a-4a78-a101-b14fdd1e742c - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.37044355915342 -31.928666462531368 52.3705558375811 -31.925885568981418 52.37077393114787 -31.925981131191815 52.370994179144176 -31.926235263495247 52.37096876591384 -31.927810883776495 52.37044355915342 -31.928666462531368 - - - - - - - - - - - - - - - - - 9d42afcc-298a-4d7f-9c26-14729d215da4 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - 90.0 - 70.0 - - - GRASS - - - - - - - - - - - - - 52.3732881892009 -31.943560770007306 52.37341876432026 -31.94356698787013 52.3738353611297 -31.943635384361233 52.37402189701452 -31.94364160222406 52.37402189701452 -31.942764883565392 52.37329440706372 -31.94275244783974 52.3732881892009 -31.943560770007306 - - - - - - - - - - - OFZ - - - - - - - 0e131693-cf13-4938-9969-994d7f56a23c - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - CONC - 80 - RIGID - B - W - TECH - - - - - - - - - - 7c413d5e-c678-4d65-8975-c1411a5968ce - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.374727292287155 -31.964265101088674 52.374597782032694 -31.964408744622993 52.37446847054829 -31.964543670223794 52.374403184591124 -31.96479548748714 52.37335843906866 -31.964651876423467 52.37319265266536 -31.964430827885742 52.37314492627653 -31.964227362754418 52.37321871079687 -31.961960211633183 52.3734622004889 -31.96167429078847 52.37366508594749 -31.961349674054734 52.37382493754196 -31.960971595710426 52.37367432444154 -31.96407068771583 52.374727292287155 -31.964265101088674 - - - - - - - - - - - - - - - - - d22653bd-826d-411c-b8d3-838eba2a8325 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - TOWER - BUILDING - - - 12.0 - - - - - - - - - - - 52.373240585956786 -31.94466222350188 52.373239760561745 -31.943667276726224 52.37253439745958 -31.943665099679613 52.37248632123943 -31.944468912666462 52.37259178856422 -31.94439396362618 52.37273479940925 -31.944331784997903 52.372846720940146 -31.944338002860732 52.37298351392235 -31.94438774576335 52.373107871178895 -31.94453075660838 52.373240585956786 -31.94466222350188 - - - - - - - - - 40 - - - - - - - - - - - 14d8289b-4628-41c3-bcaa-be6e26e4b96a - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - AIS-MET - BUILDING - - - - - - - - - - - - - 52.3724167440947 -31.944452297228914 52.3724257628338 -31.943804648367422 52.37207199275941 -31.943801818206826 52.372079952926995 -31.94441012447827 52.3724167440947 -31.944452297228914 - - - - - - - - - - - - - - - - - - - 9c171b9f-90d3-46e8-84b2-a8348e65e839 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - TERMINAL - BUILDING - - - 15.0 - - - - - - - - - - - 52.37202325274635 -31.944411474482564 52.37202671018989 -31.942652773005218 52.37024936933618 -31.942381077588088 52.370249685946185 -31.94399642025034 52.37202325274635 -31.944411474482564 - - - - - - - - - 31.5 - - - - - - - - - - - 6d323fef-9ddb-4f7e-9986-a945276ed585 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - HANGAR - - - 52.372733333333336 -31.94905 - - - - - NORMAL - - - HANGAR - - - - - - - 0a12b87b-fe93-4dbd-8f77-94b97d262083 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - HANGAR - BUILDING - - - 20.0 - - - - - - - - - - - 52.37336828819957 -31.94861756739893 52.373304536303785 -31.94973261520167 52.37212152917504 -31.949528843638824 52.372153867201185 -31.9483824951364 52.37336828819957 -31.94861756739893 - - - - - - - - - 55 - - - - - - - - - - - - 742a1aa1-10a4-435e-9e18-7a0a30d1af59 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - BUILDING - - - - - - - - - - - - - 52.37396613869214 -31.948733118334466 52.37397188482283 -31.949405421842457 52.37355868137594 -31.949377120236502 52.37356087309213 -31.948652735074965 52.37396613869214 -31.948733118334466 - - - - - - - - - - - - - - - - - - - 225d45f0-b285-4d85-a699-84f76c57f4f8 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - PARKING - BUILDING - - - - - - - - - - - - - 52.371823023325824 -31.942040997867267 52.37068117016678 -31.941727301944454 52.37095094866041 -31.936588962728788 52.37164735360905 -31.9357419837372 52.372199458433194 -31.936369375582817 52.37206770614562 -31.93879738202539 52.37200496696106 -31.93947496521866 52.37194222777649 -31.941790041129018 52.371823023325824 -31.942040997867267 - - - - - - - - - - - - - - - - - - - 21a13c9f-a8ff-4fdd-9aaa-5dbfd91514b8 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - P - EAP2 - EAP2_VAARDNOR - - - - - 20000 - GND - - - - - - - - - - - 52.36666666666667 -22.1 - 15.0 - - - - - - - - - - - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - NUCLEAR - ACTIVE - - - CEILING - FLOOR - BETWEEN - - - - - - - - - - - 6a23b1fb-5eba-468e-974a-d37cdecf089f - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - R - EAR1 - EAR1_BRAVO - - - - - 1525 - SFC - GND - - - - - - - - - - - 55.233333333333334 -36.166666666666664 55.23116372807667 -36.89437337916484 - - - 55.233333333333334 -36.166666666666664 - 25.0 - 270.0 - 497.0 - - - 54.92816350530716 -35.674116070018954 55.233333333333334 -36.166666666666664 - - - - - - - - - - - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - SHOOTING - ACTIVE - - - 1525 - SFC - FLOOR - SFC - BETWEEN - - - - - - - - - - - 1e2c1cc2-49a5-4fc2-bce7-7ffc60eb7666 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - R - EAR3 - EAR3_BURGENVALK - - - - - 360 - STD - 230 - STD - - - - - - - - - - - 50.46666666666667 -38.46666666666667 50.43333333333333 -34.0 48.8 -34.0 49.0 -38.46666666666667 50.46666666666667 -38.46666666666667 - - - - - - - - - - - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - AIR_GUN - ACTIVE - - - 360 - STD - 230 - STD - BETWEEN - - - - - - - - - - - cae20e0e-7b7e-4bab-8f22-5b11f0a0a0d6 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - R - EAR5 - EAR5_WINSWUK - - - - - 360 - STD - GND - - - - - - - - - - - 47.333333333333336 -39.666666666666664 43.666666666666664 -36.5 43.0 -38.0 44.03333333333333 -40.0 47.0 -41.0 47.333333333333336 -39.666666666666664 - - - - - - - - - - - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - EXERCISE - ACTIVE - - - 360 - STD - FLOOR - SFC - BETWEEN - - - - - - - - - - - 8c6e9bea-f725-47bc-9106-ba00c27baba9 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - D - EAD4 - EAD4_HORSHAM - - - - - 360 - STD - GND - - - - - - - - - - - 45.501666666666665 -29.006944444444443 - 20.0 - - - - - - - - - - - - - - - - - - - UTC - MON - 07:00 - 17:00 - NO - - - - - UTC - TUE - 07:00 - 17:00 - NO - - - - - UTC - WED - 07:00 - 17:00 - NO - - - - - UTC - THU - 07:00 - 17:00 - NO - - - - - UTC - FRI - 07:00 - 17:00 - NO - - - AIR_DROP - ACTIVE - - - 360 - STD - FLOOR - SFC - BETWEEN - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - - - UTC - MON - 07:00 - 17:00 - NO - YES - - - - - UTC - TUE - 07:00 - 17:00 - NO - YES - - - - - UTC - WED - 07:00 - 17:00 - NO - YES - - - - - UTC - THU - 07:00 - 17:00 - NO - YES - - - - - UTC - FRI - 07:00 - 17:00 - NO - YES - - - AIR_DROP - INACTIVE - - - 360 - STD - FLOOR - SFC - BETWEEN - - - - - - - - - - - 4f745d73-4ecd-486b-8023-54a5e5a94513 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - D - EAD6 - EAD6_DONLON - - - - - 360 - STD - GND - - - - - - - - - - - 52.38333333333333 -31.216666666666665 - 8.0 - - - - - - - - - - - - - - - - - - - UTC - MON - 07:00 - 16:00 - NO - - - - - UTC - TUE - 07:00 - 16:00 - NO - - - - - UTC - WED - 07:00 - 16:00 - NO - - - - - UTC - THU - 07:00 - 16:00 - NO - - - - - UTC - FRI - 07:00 - 16:00 - NO - - - AIR_GUN - ACTIVE - - - 360 - STD - FLOOR - SFC - BETWEEN - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - - - UTC - MON - 07:00 - 16:00 - NO - YES - - - - - UTC - TUE - 07:00 - 16:00 - NO - YES - - - - - UTC - WED - 07:00 - 16:00 - NO - YES - - - - - UTC - THU - 07:00 - 16:00 - NO - YES - - - - - UTC - FRI - 07:00 - 16:00 - NO - YES - - - AIR_GUN - INACTIVE - - - 360 - STD - FLOOR - SFC - BETWEEN - - - - - - - - - - - f0331134-d00a-4f9b-ac4f-34718d462729 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - TMA - NIBORD - - - - - - 450 - STD - 450 - SFC - - - - - - - - - - - 48.848333333333336 -23.236666666666668 - 50.0 - - - - - - - - - - - - - - - - - - - - - 2012-04-07T23:59:00Z - 2012-06-14T23:59:00Z - - - TEMPDELTA - 1 - - - INACTIVE - - - CEILING - FLOOR - BETWEEN - - - - - - - REMARK - - - Class G Airspace. - - - - - - - - - - - - - - - - 04888c9d-6735-4bb2-9dd7-f4728e0fe8ce - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - DECCA - MANGERN CHAIN - - - - - - - b9024736-3a25-4c92-9b2f-bfc0e29ae31b - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - FELDMAD - MASTER - 85.72 - - - - 52.44166666666666 -23.7125 - - - - - OPERATIONAL - - - - - - - - - 7d4ffd7a-4036-40ff-87a5-db946b5af428 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - KYLLSTAD - RED_SLAVE - 114.2928 - - - - 51.36527777777778 -21.534444444444446 - - - - - OPERATIONAL - - - - - - - - - 81c51d5f-b0ad-49d1-9ace-5d5068d107a2 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - VENZE - GREEN_SLAVE - 128.5794 - - - - 54.285555555555554 -24.269444444444442 - - - - - OPERATIONAL - - - - - - - - - 64b7ddc6-43b2-46cb-80b7-6c2b8c40e29a - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - LAUTERBER - PURPLE_SLAVE - 71.433 - - - - 51.32361111111111 -25.989166666666666 - - - - - OPERATIONAL - - - - - - - - - f4569050-2c6f-4195-b92a-a92802cb8524 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - T_COV - DISTANCE - - - - CCA - 000 - 360 - TRUE - 0 - 500 - - - - - - - - - 9481f274-f05b-4c00-9017-eae75d33c45b - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - ATURA - MAR_BCN - WHITE - YES - - - 55.36666666666667 -33.983333333333334 - - - - - - - - - a552aba9-aed1-452f-a50e-347281817f96 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - CETA - MAR_BCN - GREEN - YES - - - 43.2 -33.36666666666667 - - - - - - - - - bf108180-75dd-4326-af29-561bf28a8c31 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2012-07-10T07:00:00Z - 2012-07-10T07:16:00Z - - - BASELINE - 1 - - - 2012-07-10T07:00:00Z - 2012-07-10T07:16:00Z - - - NOTAM_4_02_1 - DIGITAL - SAA.ACT - - - A - 1 - 2012 - N - 2012-07-06T23:15:00 - EAXX - QRRCA - IV - BO - W - 5200N03100W - 999 - EADD - 1207100700 - 1207101600 - TEMPORARY RESERVED AREA ACR001 ACTIVE MILITARY EXERCISE TAKING PLACE. -FOR FURTHER INFORMATION PLEASE CONTACT DONLON ACC ON PHONE (12)123 45 67. - 210 - 330 - - - - - - - - - - 2012-07-10T07:00:00Z - - - PERMDELTA - 1 - - - 2012-07-10T07:00:00Z - 2012-07-10T07:16:00Z - - - NOTAM_4_02_1 - DIGITAL - SAA.ACT - - - A - 1 - 2012 - N - 2012-07-06T23:15:00 - EAXX - QRRCA - IV - BO - W - 5200N03100W - 999 - EADD - 1207100700 - 1207101600 - TEMPORARY RESERVED AREA ACR001 ACTIVE MILITARY EXERCISE TAKING PLACE. -FOR FURTHER INFORMATION PLEASE CONTACT DONLON ACC ON PHONE (12)123 45 67. - 210 - 330 - - - - - - - - - - cc1bdbc7-476c-4b04-81c0-8f5e7ccb454b - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2012-04-07T23:59:00Z - 2012-06-14T23:59:00Z - - - BASELINE - 1 - - - 2012-04-07T23:59:00Z - 2012-06-14T23:59:00Z - - - NOTAM_4_03_2 - DIGITAL - ATSA.ACT - - - A - 2 - 2012 - N - 2012-04-05T11:58:32 - EAXX - QATCD - IV - NBO - AE - 4850N02314W - 050 - EADD - 1204072359 - 1206142359 - TMA (NIBORD) NOT ACTIVE. -CLASS G AIRSPACE. - 000 - 999 - - - - LOCAL_FORMAT - - - - - - - - - - - 2012-04-07T23:59:00Z - - - PERMDELTA - 1 - - - 2012-04-07T23:59:00Z - 2012-06-14T23:59:00Z - - - NOTAM_4_03_2 - DIGITAL - ATSA.ACT - - - A - 2 - 2012 - N - 2012-04-05T11:58:32 - EAXX - QATCD - IV - NBO - AE - 4850N02314W - 050 - EADD - 1204072359 - 1206142359 - TMA (NIBORD) NOT ACTIVE. -CLASS G AIRSPACE. - 000 - 999 - - - - LOCAL_FORMAT - - - - - - - - - - - 4935e16e-2a7d-464b-a537-477c7af1acbb - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2012-11-07T08:00:00Z - 2012-11-17T17:00:00Z - - - BASELINE - 1 - - - 2012-11-07T08:00:00Z - 2012-11-17T17:00:00Z - - - NOTAM_4_04_1 - DIGITAL - SAA.NEW - - - A - 3 - 2012 - N - 2012-11-05T07:52:43 - EAXX - QRRCA - IV - BO - W - 5301N03116W - 999 - EADD - 1211070800 - 1211171700 - DAILY 0800-1700 - TEMPORARY RESTRICTED AREA (EAR0003-12) ESTABLISHED -FOR UNSPECIFIED HAZARD AS FOLLOWS: 525533N 0312746W - 530148N 0313416W - 531005N 0312042W - 531005N 0310842W - 525617N 0305706W - 525235N 0310612W - 525533N 0312746W. - 000 - 600 - - - - LOCAL_FORMAT - - - - - - - - - - - 2012-11-07T08:00:00Z - - - PERMDELTA - 1 - - - 2012-11-07T08:00:00Z - 2012-11-17T17:00:00Z - - - NOTAM_4_04_1 - DIGITAL - SAA.NEW - - - A - 3 - 2012 - N - 2012-11-05T07:52:43 - EAXX - QRRCA - IV - BO - W - 5301N03116W - 999 - EADD - 1211070800 - 1211171700 - DAILY 0800-1700 - TEMPORARY RESTRICTED AREA (EAR0003-12) ESTABLISHED -FOR UNSPECIFIED HAZARD AS FOLLOWS: 525533N 0312746W - 530148N 0313416W - 531005N 0312042W - 531005N 0310842W - 525617N 0305706W - 525235N 0310612W - 525533N 0312746W. - 000 - 600 - - - - LOCAL_FORMAT - - - - - - - - - - - - 028e6905-f99a-4ca7-a736-2c0787cdcf57 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2012-11-07T08:00:00Z - 2012-11-17T17:00:00Z - - - BASELINE - 1 - - - 2012-11-07T08:00:00Z - - - - R - EAR0003-12 - - - 1 - - - 60000 - MSL - GND - - - - - - - - - - - 52.9282371670167 -31.461114091711558 53.03083043591206 -31.568915849359982 53.16843418881167 -31.345348764204196 53.18194444444444 -31.1945 - - - - - - - - - - 52.96333333333334 -30.999444444444446 52.90720345892345 -31.130039397963714 52.9282371670167 -31.461114091711558 - - - - - - - - - - - - - - - - - - - UTC - ANY - 08:00 - 17:00 - NO - - - OTHER - ACTIVE - - - 60000 - FLOOR - BETWEEN - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - NO - - - - - UTC - ANY - 08:00 - 17:00 - NO - YES - - - INACTIVE - - - 60000 - FLOOR - BETWEEN - - - - - - - - - - - - - - - - 2012-11-07T08:00:00Z - - - PERMDELTA - 1 - - - 2012-11-07T08:00:00Z - - - - R - EAR0003-12 - - - 1 - - - 60000 - MSL - 0 - SFC - - - - - - - - - - - 52.9282371670167 -31.461114091711558 53.03083043591206 -31.568915849359982 53.16843418881167 -31.345348764204196 53.18194444444444 -31.1945 - - - - - - - - - - 52.96333333333334 -30.999444444444446 52.90720345892345 -31.130039397963714 52.9282371670167 -31.461114091711558 - - - - - - - - - - - - - - - - - - - UTC - ANY - 08:00 - 17:00 - NO - - - OTHER - ACTIVE - - - 60000 - FLOOR - BETWEEN - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - NO - - - - - UTC - ANY - 08:00 - 17:00 - NO - YES - - - INACTIVE - - - 60000 - FLOOR - BETWEEN - - - - - - - - - - - - - - - - c68d2c5e-9a38-4d55-afcf-4d6450dc1000 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - IFR - YES - - - - - - - e515ea41-5e25-4580-8295-cbc33a2fde5a - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - EVEN - FL - - - 270 - - - - - 290 - - - - - 310 - - - - - - - - - - 4de2394a-6aa4-4913-99d0-ba13183facfc - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ODD - FL - - - 280 - - - - - 300 - - - - - 320 - - - - - - - - - - 5a8ed90a-ad4e-4352-b073-26d27b0ac978 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2012-12-22T08:00:00Z - 2012-12-22T11:00:00Z - - - BASELINE - 1 - - - 2012-12-22T08:00:00Z - 2012-12-22T11:00:00Z - - - NOTAM_4_08_2 - DIGITAL - AD.CLS - - - A - 4 - 2012 - N - 2012-12-21T07:45:00Z - EADD - QFALT - V - NBO - A - 5222N03157W - 999 - EADD - 1212220800 - 1212221100EST - AD CLOSED EXCEPT FOR IFR. -DUE TO WX BELOW MIN VIS 4000 M. - 000 - 999 - - - - - - - - - - 2012-12-22T08:00:00Z - - - PERMDELTA - 1 - - - 2012-12-22T08:00:00Z - 2012-12-22T11:00:00Z - - - NOTAM_4_08_2 - DIGITAL - AD.CLS - - - A - 4 - 2012 - N - 2012-12-21T07:45:00Z - EADD - QFALT - V - NBO - A - 5222N03157W - 999 - EADD - 1212220800 - 1212221100EST - AD CLOSED EXCEPT FOR IFR. -DUE TO WX BELOW MIN VIS 4000 M. - 000 - 999 - - - - - - - - - - ff3ab666-d8d0-428c-8304-5922ee4636b5 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2012-11-22T22:00:00Z - 2012-11-23T04:00:00Z - - - BASELINE - 1 - - - 2012-11-22T22:00:00Z - 2012-11-23T04:00:00Z - - - NOTAM_4_09_1 - DIGITAL - RWY.CLS - - - A - 5 - 2012 - N - 2012-11-21T11:03:00 - EADD - QMRLC - IV - NBO - A - 5222N03157W - 999 - EADD - 1211222200 - 1211230400 - RWY 09L/27R CLOSED. - 000 - 999 - - - - - - - - - - 2012-11-22T22:00:00Z - - - PERMDELTA - 1 - - - 2012-11-22T22:00:00Z - 2012-11-23T04:00:00Z - - - NOTAM_4_09_1 - DIGITAL - RWY.CLS - - - A - 5 - 2012 - N - 2012-11-21T11:03:00 - EADD - QMRLC - IV - NBO - A - 5222N03157W - 999 - EADD - 1211222200 - 1211230400 - RWY 09L/27R CLOSED. - 000 - 999 - - - - - - - - - - 3dbc9405-69ab-4f1a-9010-ab64a1dbcc1a - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2012-10-07T07:00:00Z - 2012-10-07T14:00:00Z - - - BASELINE - 1 - - - 2012-10-07T07:00:00Z - 2012-10-07T14:00:00Z - - - NOTAM_4_09_9_1 - DIGITAL - NAV.UNS - - - A - 6 - 2012 - N - 2012-10-06T09:42:00Z - EAXX - QNMAS - IV - NBO - E - 5522N03223W - 999 - EAXX - 1210070700 - 1210071400 - BOORSPIJK VOR/DME -BOR -115.500 MHZ CH 102X U/S. -DUE TO MAINT. -DO NOT USE, FALSE INDICATIONS POSS. - 000 - 999 - - - - - - - - - - 2012-10-07T07:00:00Z - - - PERMDELTA - 1 - - - 2012-10-07T07:00:00Z - 2012-10-07T14:00:00Z - - - NOTAM_4_09_9_1 - DIGITAL - NAV.UNS - - - A - 6 - 2012 - N - 2012-10-06T09:42:00Z - EAXX - QNMAS - IV - NBO - E - 5522N03223W - 999 - EAXX - 1210070700 - 1210071400 - BOORSPIJK VOR/DME -BOR -115.500 MHZ CH 102X U/S. -DUE TO MAINT. -DO NOT USE, FALSE INDICATIONS POSS. - 000 - 999 - - - - - - - - - - 42875bd3-8d62-4a98-838c-871216e347b1 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2012-10-07T10:00:00Z - 2012-10-07T14:00:00Z - - - BASELINE - 1 - - - 2012-10-07T10:00:00Z - 2012-10-07T14:00:00Z - - - DIGITAL - NAV.UNS - - - A - 7 - 2012 - N - 2012-10-06T09:42:00Z - EADD - QICAS - IV - NBO - A - 5223N03157W - 999 - EADD - 1210070700 - 1210071400 - OXS ILS GP LOC -RWY 27R -U/S. -DUE TO MAINTENANCE. - 000 - 999 - - - - - - - - - - 2012-10-07T10:00:00Z - - - PERMDELTA - 1 - - - 2012-10-07T10:00:00Z - 2012-10-07T14:00:00Z - - - DIGITAL - NAV.UNS - - - A - 7 - 2012 - N - 2012-10-06T09:42:00Z - EADD - QICAS - IV - NBO - A - 5223N03157W - 999 - EADD - 1210070700 - 1210071400 - OXS ILS GP LOC -RWY 27R -U/S. -DUE TO MAINTENANCE. - 000 - 999 - - - - - - - - - - 5266b646-89a9-453f-b6fe-5368c38274d2 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2012-10-01T05:31:00Z - 2012-10-30T18:26:00Z - - - BASELINE - 1 - - - 2012-10-01T05:31:00Z - 2012-10-30T18:26:00Z - - - NOTAM_4_10_1 - DIGITAL - OBS.NEW - - - A - 8 - 2012 - N - 2012-09-30T10:00:00Z - EAXX - QOBCE - IV - NBO - A - 5222N03157W - 005 - EADD - 1210010531 - 1210301826 - TEMPORARY CRANE -LOCATED AT EADD. -522222N 0315632W ELEVATION 858 FT (HEIGHT 85 FT). -500 FT EAST OF CONTROL TOWER. -LIGHTED. -85 FT IS A MAXIMUM HEIGHT. - 000 - 999 - - - - - - - - - - 2012-10-01T05:31:00Z - - - PERMDELTA - 1 - - - 2012-10-01T05:31:00Z - 2012-10-30T18:26:00Z - - - NOTAM_4_10_1 - DIGITAL - OBS.NEW - - - A - 8 - 2012 - N - 2012-09-30T10:00:00Z - EAXX - QOBCE - IV - NBO - A - 5222N03157W - 005 - EADD - 1210010531 - 1210301826 - TEMPORARY CRANE -LOCATED AT EADD. -522222N 0315632W ELEVATION 858 FT (HEIGHT 85 FT). -500 FT EAST OF CONTROL TOWER. -LIGHTED. -85 FT IS A MAXIMUM HEIGHT. - 000 - 999 - - - - - - - - - - df421db4-3698-4003-9d71-93ca57e70ffc - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2012-10-01T05:31:00Z - 2012-10-30T18:26:00Z - - - BASELINE - 1 - - - 2012-10-01T05:31:00Z - - - - EADD_CRANE_1 - CRANE - YES - - - - - - REMARK - - - 500 FT EAST OF CONTROL TOWER - - - - - 85.0 - CRANE - NO - - - 52.3727777777778 -31.9422222222222 - 858 - - - - - - - WARNING - - - located at airport EADD - - - - - - - REMARK - - - 85 FT IS A MAXIMUM HEIGHT - - - - - - - - - - - - - - - - 2012-10-01T05:31:00Z - - - PERMDELTA - 1 - - - 2012-10-01T05:31:00Z - - - - EADD_CRANE_1 - CRANE - YES - - - 85.0 - CRANE - NO - - - 52.3727777777778 -31.9422222222222 - 858 - - - - - - - WARNING - - - located at airport EADD - - - - - - - - horizontalProjectionlocation - REMARK - - - 500 FT EAST OF CONTROL TOWER - - - - - - - REMARK - - - 85 FT IS A MAXIMUM HEIGHT - - - - - - - - - - - - - - - - 7af080ab-a1c2-48b1-a677-e9f51fd32b26 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2012-10-01T04:30:00Z - 2012-10-09T14:29:00Z - - - BASELINE - 1 - - - 2012-10-01T04:30:00Z - 2012-10-09T14:29:00Z - - - NOTAM_4_10_2 - DIGITAL - OBS.NEW - - - A - 9 - 2012 - N - 2012-09-30T02:34:00Z - EAXX - QOBCE - IV - NBO - AE - 5222N03157W - 005 - EADD - 1210010430 - 1210091429 - DAILY 0430-1429 - TEMPORARY MOBILE CRANE -AT PSN 522116N 0315648W ELEVATION 675 FT (HEIGHT 483 FT). -LIGHTED ICAO MARKED. - 000 - 999 - - - - - - - - - - 2012-10-01T04:30:00Z - - - PERMDELTA - 1 - - - 2012-10-01T04:30:00Z - 2012-10-09T14:29:00Z - - - NOTAM_4_10_2 - DIGITAL - OBS.NEW - - - A - 9 - 2012 - N - 2012-09-30T02:34:00Z - EAXX - QOBCE - IV - NBO - AE - 5222N03157W - 005 - EADD - 1210010430 - 1210091429 - DAILY 0430-1429 - TEMPORARY MOBILE CRANE -AT PSN 522116N 0315648W ELEVATION 675 FT (HEIGHT 483 FT). -LIGHTED ICAO MARKED. - 000 - 999 - - - - - - - - - - aa0c0b1e-3e9c-4564-b858-ace28b473c0a - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2012-10-01T04:30:00Z - 2012-10-09T14:29:00Z - - - BASELINE - 1 - - - 2012-10-01T04:30:00Z - - - - EADD_CRANE_2 - CRANE - YES - - - - - UTC - ANY - 04:30 - 14:29 - NO - - - 483.0 - CRANE - YES - - - 52.3544444444444 -31.9466666666667 - 675 - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - - - UTC - ANY - 04:30 - 14:29 - NO - YES - - - 0.0 - - - 52.3544444444444 -31.9466666666667 - 0 - - - - - - - markingICAOStandard - DESCRIPTION - - - ICAO marked. - - - - - - - - - - - 2012-10-01T04:30:00Z - - - PERMDELTA - 1 - - - 2012-10-01T04:30:00Z - - - - EADD_CRANE_2 - CRANE - YES - - - - - UTC - ANY - 04:30 - 14:29 - NO - - - 483.0 - CRANE - YES - - - 52.3544444444444 -31.9466666666667 - 675 - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - - - UTC - ANY - 04:30 - 14:29 - NO - YES - - - 0.0 - - - 52.3544444444444 -31.9466666666667 - 0 - - - - - - - markingICAOStandard - DESCRIPTION - - - ICAO marked. - - - - - - - - - - - c136dd70-0070-4808-9416-949614291cec - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2012-10-01T00:00:00Z - - - - BASELINE - 1 - - - 2012-10-01T00:00:00Z - - - - NOTAM_4_10_3 - DIGITAL - OBS.NEW - - - A - 10 - 2012 - N - 2012-09-28T23:52:00Z - EAXX - QOBCE - IV - NBO - AE - 5226N03205W - 999 - EADD - 1210010000 - PERM - PERMANENT GROUP OF WINDMILL. -522542N 0320519W ELEVATION 499 FT (HEIGHT 493 FT). -LIGHTED DAY AND NIGHT MARKED. -GROUP OF 3. - 000 - 999 - - - - - - - - - - 2012-10-01T00:00:00Z - - - PERMDELTA - 1 - - - 2012-10-01T00:00:00Z - - - - NOTAM_4_10_3 - DIGITAL - OBS.NEW - - - A - 10 - 2012 - N - 2012-09-28T23:52:00Z - EAXX - QOBCE - IV - NBO - AE - 5226N03205W - 999 - EADD - 1210010000 - PERM - PERMANENT GROUP OF WINDMILL. -522542N 0320519W ELEVATION 499 FT (HEIGHT 493 FT). -LIGHTED DAY AND NIGHT MARKED. -GROUP OF 3. - 000 - 999 - - - - - - - - - - 4722e24f-2d13-45a6-8189-32dd4ee82cff - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - 2012-10-01T00:00:00Z - - - - BASELINE - 1 - - - 2012-10-01T00:00:00Z - - - - WINDMILL_FARM - WINDMILL - YES - YES - YES - - - 493.0 - WINDMILL - MARKERS - - - 52.4283333333333 -32.0886111111111 - 499 - - - - - - - markingICAOStandard - DESCRIPTION - - - Day and night marked. - - - - - - - group - DESCRIPTION - - - GROUP OF 3 - - - - - - - - - - - 2012-10-01T00:00:00Z - - - PERMDELTA - 1 - - - 2012-10-01T00:00:00Z - - - - WINDMILL_FARM - WINDMILL - YES - YES - YES - - - 493.0 - WINDMILL - MARKERS - - - 52.4283333333333 -32.0886111111111 - 499 - - - - - - - markingICAOStandard - DESCRIPTION - - - Day and night marked. - - - - - - - group - DESCRIPTION - - - GROUP OF 3 - - - - - - - - - - - - - - e9ce3cc0-b41f-11e3-a5e2-0800200c9a66 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2014-03-25T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data; initially created by COMSOFT (www.comsoft.aero); currently maintained by Eurocontrol. This feature demonstrates a canceled commissioning. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - - 2012-10-01T05:31:00Z - - - PERMDELTA - 1 - - - 2012-10-01T05:31:00Z - - - - EADD_CRANE_3 - CRANE - YES - - - 85.0 - CRANE - NO - - - 52.3727777777778 -31.943 - 858 - - - - - - - WARNING - - - located at airport EADD - - - - - - - - horizontalProjectionlocation - REMARK - - - 250 FT EAST OF CONTROL TOWER - - - - - - - REMARK - - - 85 FT IS A MAXIMUM HEIGHT - - - - - - - - - - - PERMDELTA - 1 - 1 - - - - - - - - - - - - - - - - 8c755520-b42b-11e3-a5e2-0800400c9a66 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2014-03-25T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data; initially created by COMSOFT (www.comsoft.aero); currently maintained by Eurocontrol. This feature demonstrates a canceled decommissioning. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - - 2012-10-01T05:31:00Z - - - PERMDELTA - 1 - - - 2012-10-01T05:31:00Z - - - - EADD_CRANE_4 - CRANE - YES - - - 85.0 - CRANE - NO - - - 52.3727777777778 -31.9435 - 858 - - - - - - - WARNING - - - located at airport EADD - - - - - - - - horizontalProjectionlocation - REMARK - - - 150 FT EAST OF CONTROL TOWER - - - - - - - REMARK - - - 85 FT IS A MAXIMUM HEIGHT - - - - - - - - - - - - 2012-10-30T05:31:00Z - - - PERMDELTA - 2 - - - 2012-10-01T05:31:00Z - 2012-10-30T05:31:00Z - - - - - - - - - PERMDELTA - 2 - 1 - - - - - - - - 2012-11-01T15:30:00Z - - - PERMDELTA - 3 - YES - - - - - - - PERMDELTA - 3 - 1 - - - - - - - - 2012-11-30T05:31:00Z - - - PERMDELTA - 4 - - - 2012-10-01T05:31:00Z - 2012-11-30T05:31:00Z - - - - - - - - - - - - 8c755520-b42b-11e3-a5e2-0800500c9a66 - - - - utf8 - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - 2014-03-25T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - Donlon sample data; initially created by COMSOFT (www.comsoft.aero); currently maintained by Eurocontrol. This feature demonstrates combinations of properties with schedules, PERMDELTAs and TEMPDELTAs. - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - To be used for demonstration purposes only! Any operational usage is prohibited! - - - - - eng - - - transportation - - - - - - - - - - - 2012-10-01T05:31:00Z - - - PERMDELTA - 1 - - - 2012-10-01T05:31:00Z - - - - EADD_CRANE_5 - CRANE - YES - - - - - UTC - ANY - 04:30 - 14:29 - NO - - - 85.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - UTC - ANY - 00:00 - 24:00 - NO - - - - - UTC - ANY - 04:30 - 14:29 - NO - YES - - - 0.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - - - - 2012-10-11T15:30:00Z - - - PERMDELTA - 2 - - - - - UTC - ANY - 04:30 - 17:29 - NO - - - 85.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - UTC - ANY - 00:00 - 24:00 - NO - - - - - UTC - ANY - 04:30 - 17:29 - NO - YES - - - 0.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - - - - 2012-11-01T15:30:00Z - - - PERMDELTA - 3 - - - - - UTC - ANY - 04:30 - 16:29 - NO - - - 85.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - UTC - ANY - 00:00 - 24:00 - NO - - - - - UTC - ANY - 04:30 - 16:29 - NO - YES - - - 0.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - - - - 2012-10-12T00:00:00Z - 2012-10-18T23:59:59Z - - - TEMPDELTA - 1 - NO - - - - - UTC - ANY - 00:00 - 24:00 - NO - - - 0.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - - - - 2012-10-12T00:00:00Z - 2012-10-19T23:59:59Z - - - TEMPDELTA - 1 - 1 - - - - - UTC - ANY - 00:00 - 24:00 - NO - - - 0.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - - - fdaeffb4-6897-41fb-a33d-8861c2e91e69 - - - - - - 2011-01-13T00:00:00Z - - - - BASELINE - 1 - 0 - - - 2002-11-30T00:00:00Z - - - - CTA - EAMM - MAGNETTO OCA - NO - - - BASE - 1 - - - - - FULL_GEOMETRY - - - - - - - - - - UNION - 2 - - - - - FULL_GEOMETRY - - - - - - - - - - - - - - 0df377fe-dd53-4d60-b6c4-6546ef31d26b - - - - - - 2013-09-19T00:00:00Z - - - - BASELINE - 1 - 0 - - - 2010-11-01T00:00:00Z - - - - PART - EAMM - MAGNETTO OCA PART 1 - NO - - - - - 460 - STD - 210 - STD - - - - - - - - - - - 51.99333333333333 -6.0005 52.45333333333333 -5.869333333333333 52.81666666666667 -5.89 53.53333333333333 -5.981666666666667 53.89333333333333 -5.937833333333333 53.905 -6.0038333333333334 53.916666666666664 -6.099333333333333 - - - - - - - - - - - - - - - - - - - - - 010d8451-d751-4abb-9c71-f48ad024045b - - - - - - 2013-09-19T00:00:00Z - - - - BASELINE - 1 - 0 - - - 2010-11-01T00:00:00Z - - - - PART - EAMM2 - MAGNETTO OCA PART 2 - NO - - - - - 460 - STD - 210 - STD - - - - - - - - - - - 53.876666666666665 -5.863333333333333 53.89333333333333 -5.937833333333333 53.53333333333333 -5.981666666666667 52.81666666666667 -5.89 52.45333333333333 -5.869333333333333 52.516666666666666 -5.850666666666667 52.583333333333336 -5.831666666666667 53.3 -5.755 53.7 -5.786666666666667 53.718333333333334 -5.8083333333333336 53.876666666666665 -5.863333333333333 - - - - - - - - - - - - - - - - - - + + + + -32.0886111111111 -47.0 + 57.690815969999996 52.4283333333333 + + + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by + Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational usage + is prohibited! + + + + + + eng + + + transportation + + + + + + + -47.0 + + + 52.4283333333333 + + + 57.690815969999996 + + + -32.0886111111111 + + + + + + + + + + + + 6384a4e0-8497-4f83-8eaa-d73ef549d90e + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + REPUBLIC OF DONLON + STATE + + + + + + + c225ae5c-540f-4a48-8867-809b393b2407 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + CIVIL AVIATION AUTHORITY + NTL_AUTH + + + OWNED_BY + + + + + + + + + + 1e1bdf59-3dd6-4f96-9166-e6095e7231fc + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + DONLON + NTL_AUTH + + + + + + + 74efb6ba-a52a-46c0-a16b-03860d356882 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + DONLON_HELIPORT_AUTHORITY + NTL_AUTH + + + + + + + b6df119e-cc7c-48cc-9575-c4160c64d733 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + HOL + 01-01 + NEWYEARSDAY + + + + + + + + 4d0ecbdb-4cba-4047-8351-29283adf67c7 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2014-01-01T00:00:00Z + 2014-12-31T23:59:59Z + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + HOL + 17-04 + 2014 + MAUNDYTHURSDAY + + + + + + + + 2015-01-01T00:00:00Z + 2015-12-31T23:59:59Z + + + BASELINE + 2 + + + 2009-01-01T00:00:00Z + + + + HOL + 02-04 + 2015 + MAUNDYTHURSDAY + + + + + + + + 20f19a35-401b-45a6-a54e-084122a4cf80 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2014-01-01T00:00:00Z + 2014-12-31T23:59:59Z + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + HOL + 18-04 + 2014 + GOODFRIDAY + + + + + + + + 2015-01-01T00:00:00Z + 2015-12-31T23:59:59Z + + + BASELINE + 2 + + + 2009-01-01T00:00:00Z + + + + HOL + 03-04 + 2015 + GOODFRIDAY + + + + + + + + 39755baa-4c27-4c9f-b08c-df05cff2fb09 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2014-01-01T00:00:00Z + 2014-12-31T23:59:59Z + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + HOL + 21-04 + 2014 + EASTERMONDAY + + + + + + + + 2015-01-01T00:00:00Z + 2015-12-31T23:59:59Z + + + BASELINE + 2 + + + 2009-01-01T00:00:00Z + + + + HOL + 06-04 + 2015 + EASTERMONDAY + + + + + + + + 02e42ef0-7be7-4c60-b8d9-790b79fa3839 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + IF + 1829 + ABOVE_LOWER + + + + + + + 6c8b3cb4-c0fe-4afd-ac63-cb2a9060db73 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TRID + + + + + + + + + + + + + + 9c6a4679-14f3-4ffb-a2bc-2d43f81722b6 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 3a17efd0-adfe-4899-9d4c-5b8ac591645b + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 1a6f046a-e7aa-44e8-9712-aaaf89921734 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 5a99887d-ab43-4163-95a4-b9699c651d98 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + d9d27801-b6ae-4508-a27e-bf55da19fd35 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 1829 + ABOVE_LOWER + + + + + + + 6a2f2658-bba5-49e0-bdc5-9b31aa1e1dbf + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TSI + + + + + + + + + + + + + + + + + + + + + + + + + + + + EKCOMBE + + + + + + + 1c7a5f5d-f4fe-49da-8746-5112d62a4a04 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + IF + 277.0 + TRUE_BRG + 5556.0 + 914.4 + ABOVE_LOWER + + + + + + + 63dae92f-2014-42ca-a83f-73cefcec03e8 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TF + 229.0 + TRUE_BRG + LEFT + 7408.0 + + + + + + + 077bc42e-c2f2-40fc-8a84-b4f2eaaae0bc + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TF + 184.0 + TRUE_BRG + LEFT + 3704.0 + + + + + + + 4fc8c993-ba3e-4513-be88-d379e3c45fe6 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TF + 184.0 + TRUE_BRG + 5741.2 + 914.4 + AS_ASSIGNED + + + + + + + d34158b7-1755-4fa3-a197-5b266698f5b6 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + CF + 184.0 + TRUE_BRG + 4074.4000000000005 + + + + + + + a80b3299-65e5-4f4b-9067-30f282cbb1bc + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + CF + 184.0 + TRUE_BRG + 7408.0 + 399.3 + ABOVE_LOWER + + + + + + + 436adbb9-1838-4bc7-945a-e421100f7dcb + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + CF + 184.0 + TRUE_BRG + 9630.4 + AS_ASSIGNED + + + + + + + c8d2e419-6159-4693-b465-d96a063fa648 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + FM + AS_ASSIGNED + + + + + + + 1a24b3c6-2183-4a01-ad8d-10227fd06931 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TRID + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 231a7794-c9bd-4e9e-a5d1-03f1c1f1687c + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 184.0 + TRUE_BRG + 4630.0 + + + + + + + 754e335c-75ec-4ef4-941d-97fe4581063a + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 119.0 + TRUE_BRG + RIGHT + + + + + + + ed85c0e6-2461-43d8-aca2-39d6afb254e7 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 5741.2 + + + + + + + c1ee96e8-a60c-4e27-9c79-3c9853aa495d + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 1829 + ABOVE_LOWER + + + + + + + 2d6916fc-c635-4ad7-8275-3e0eab65104b + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TSI + + + + + + + + + + + + + + + + + + + + + + + EKCOMB2 + + + + + + + 970f9309-8a52-45c0-b59e-f5ab4a51ef6f + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + d0f4a733-1c13-4764-b488-caae38794349 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 62800d25-a0e8-4915-8bac-fa4eeb437d5e + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + ba6478ff-50bb-4ccb-8bfd-4e4865709823 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 481c1844-4dfd-4d7a-ae94-41027db0a20a + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + d0d29c8d-90e3-44b6-80d0-96530d38bde5 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 8123f5af-b083-41f9-a2fa-6384adef1bdf + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + e99f36b1-6441-4791-a542-d1312b995d79 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + b7fdc9e9-a77b-4db6-b781-9587b7e7407a + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 1c4c9451-bf5a-4ae0-a973-b534f96b2409 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + b19105a1-f1ce-4577-b26b-ce27f6103087 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 0c208527-6f3e-4185-aa2b-149c03f52127 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TRID + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + EKCOMBE + + + + + + + ddbc225d-4f2d-4612-9cde-8671aba24f93 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + RIGHT + + + + + + + 50f3ef75-fe6c-4d4d-8ec2-110c8d4ce106 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TSI + + + + + + + + AROMN8S + + + + + + + 58df8a48-2818-47c2-a291-cd7d9a1242d3 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + IF + 116.0 + TRUE_BRG + 7408.0 + 609.6 + ABOVE_LOWER + + + + + + + edac6cc2-c577-4ba8-a21d-e476c21bd71e + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TF + 93.0 + TRUE_BRG + LEFT + 4444.8 + + + + + + + ef0524c1-a599-4ea3-a43f-5cde190c3271 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TF + 59.0 + TRUE_BRG + LEFT + 5556.0 + + + + + + + 17d08aa6-90b8-4cf4-9175-54e192a525bb + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + FA + 59.0 + TRUE_BRG + 4259.599999999999 + 609.6 + AS_ASSIGNED + + + + + + + 2e083f81-e4b2-4c1b-8eaa-e00165357435 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + CF + 59.0 + TRUE_BRG + 7222.8 + 388.62 + AS_ASSIGNED + + + + + + + 270bdaca-566e-4651-bf90-12625c23188e + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + CF + 59.0 + TRUE_BRG + 362.712 + 609.6 + AS_ASSIGNED + + + + + + + cb2f3317-b447-4b9f-b325-246be839c3f9 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + FM + AS_ASSIGNED + + + + + + + c12b5014-444f-46da-8b25-c27d3c27f6cd + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TRID + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + f739ae66-baef-4bb6-b29a-7108eccf2d59 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 202df567-8449-4342-adf7-43bca6fc7b87 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TRID + + + + + + + + NOTMA4B + + + + + + + a14a8751-5428-46bc-a2d1-32ef84d37b5c + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + U + A + 4 + ATS + BOTH + + + DESCRIPTION + + + BARIM TO VEGAT + + + + + + + + + + + 9e51668f-bf8a-4f5b-ba6e-27087972b9b8 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 09L/27R + 2800.0 + 45.0 + 2920.0 + 300.0 + + + CONC + + + + + + + + + + c8455a6b-9319-4bb7-b797-08e644342d64 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 09L + 85.2300033569336 + + + + + + + + 2012-11-22T22:00:00Z + 2012-11-23T04:00:00Z + + + TEMPDELTA + 1 + + + CLOSED + + + + + + + + + b802d439-e9f3-49f9-96e1-0153b837e113 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 27R + 265.2300109863281 + 20.5 + + + + + + + + 2012-11-22T22:00:00Z + 2012-11-23T04:00:00Z + + + TEMPDELTA + 1 + + + CLOSED + + + + + + + + + e23b1f2b-b2fc-432e-a378-199ccacabe24 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + A + PARALLEL + 23.0 + + + CONC + + + + + + + + + + f16bf89e-aae9-45f7-b630-035c4f81e297 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + B + GND + 23.0 + + + CONC + + + + + + + + + + b7a01065-6ac3-462a-a27d-dc219d980f9f + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + C + FASTEXIT + 23.0 + + + CONC + + + + + + + + + + 0d466e77-319d-4371-87ef-dd02053d7a4d + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + D + EXIT + 23.0 + + + CONC + + + + + + + + + + 9dcbb852-1c24-4ded-80a8-e7456f95ccc8 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + E + PARALLEL + 23.0 + + + CONC + + + + + + + + + + 0cb4da5a-9c98-4484-92ed-edc336b8b437 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + F + GND + 23.0 + + + CONC + + + + + + + + + + 3079c4fc-e4e3-42ec-a180-7e902cb88334 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + G + GND + 23.0 + + + CONC + + + + + + + + + + 0dac7a5f-4cb6-41a2-b0eb-dac1c555351c + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + APRON + + + + + + + + 92cacc21-86bb-4050-aae9-a54e1fccbff1 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + + 1e22a662-0601-43cc-a7ef-8402885a4f2f + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + FATO + FATO + 20.0 + 20.0 + + + CONC + GOOD + + + + + + + + + + 921966d2-bae8-4b4b-bc8a-8012faf991be + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + FATO 03 + 27.329999923706055 + + + + + + + + b9fad726-bed6-4b3b-a92f-64706eaa9ed5 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + FATO 21 + 207.3300018310547 + + + + + + + + 89d085f7-4b68-4e07-9b52-5aabd5f410f3 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + SEPARATED + + + + + + + + + 080c39f8-3e90-44de-bb57-e0abcc0e4b50 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + Trucks 1.5-3.5 tonnes. Up to 10 tonnes handling possible. + + + + + + + + + + + + + 89f1b92f-afd5-4ab1-808e-353446a20b6e + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + Jet A1, AVTUR, AVGAS 100 LL, oil, all types normally + available. + 1 truck 45 000 litres, 50 litres/sec + + + + + + + + + PISTON + + + + + AVIA + + + + + + + + + HYDRAULIC + + + + + HYD + + + + + + + + + TURBO + + + + + TURBO + + + + + + + + + NG + + + + + OX + + + + + + + + + 53bf0a9c-c218-4928-ac31-201af9b80593 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + Available. See AD chart for location. + + + + + + + + + + + + a9d815f8-aed5-482d-ac39-dbdf9d293d02 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + Limited, by prior arrangement only + + + + + + + + + + + + a28a2b0e-3d03-42f4-8b49-ce7b22f9a258 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + Available for aircraft up to 5 700 KG. Major repairs by + arrangement. + + + + + + + + + + + + + 46da4772-4a5e-4e64-ab60-04e803c068bc + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + ANY + 06:00 + 23:00 + + + + + + + Within AD HR + + + + + NORMAL + + + + + + + Rescue equipment : 2 boats of 40 persons + Capability for removal of disabled aircraft : Lifting bags and hydraulic jacks + available + + + + + + + A7 + + + + + + + c1bbe653-e5b1-4bfe-b510-3ada3272305a + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + DONLONRCC + RCC + YES + + + + + + "134 Airport Road" + DONLON + 1 + DONLON + + + + + AFTN + EADDYCYX + + + + + 01236979111 + 01236979112 + + + + + + + + + + + 8323cd6d-f788-4b78-8f93-2a09a70965fb + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + AKVINSAR + SAR + YES + + + 52.618333333 -32.919999999 + 15.0 + + + + + + OWNER + + + + + + + + + + 9d169b60-b5fa-4bf4-abf3-14fd9e67a2b7 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ALL + YES + DONLONAKVINSARS + + SAR + + + + + + + d54e1d65-fefe-4776-891c-2b0e9d74c020 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ALL + YES + DONLONRCCSERVICE + + RCC + + + + + + + 306eff59-8985-488a-ad5b-24a8c13dc17e + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ALL + YES + YES + SMGCS + + + + + + + + 6c7b0abc-0a29-4a53-a5b9-9f3791119cf5 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ALL + YES + DONLONATMS + CLEARANCE + + + + + + + 590950fd-4126-46b7-b245-5944d1362c17 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 87.0 + + + + + + + + 7d6ef61e-83b4-4902-a79e-3248a5bd2935 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + White omnidirectional edge lights at intervals of 12.5 M + + + + + + 12.5 + + + + + + + + 60b87049-5ff7-4d23-917d-88938128e2d3 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + Yellow floodlights at the edge of TLOF at intervals of 5 M + + + + + + 5.0 + + + + + + + + e9350d29-9b29-450e-80af-a1666665ddc3 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + WHITE + + + + + White omnidirectional edge lights at intervals of 12.5 M + + + + + + + + + + + + + 2e7650ef-e19f-47ee-b6f8-2866f536f5d2 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + WHITE + + + + + White omnidirectional edge lights at intervals of 12.5 M + + + + + + + + + + + + + 374cc5b1-ecb9-41c6-bb2e-175e4a38d475 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIM + 600.0 + + + + + + + + 05e2e8d4-93d6-479e-887c-a92bc9485890 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIH + 900.0 + + + + + + + + 46e02ef7-9a57-4951-b26e-c3fb1dcaefbc + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + + 16630bd9-31d6-498a-be44-5cdccb572e94 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + + f7e4b6b4-5ec1-48ac-a328-6dd296a1b244 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + GREEN + CL + + + + + + + + 2cde2811-0b8e-486d-99f5-231d5d9f8df6 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + GREEN + CL + + + + + + + + d1322326-c872-4882-b2cb-ef97ca26977e + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + GREEN + CL + + + + + + + + 980391ed-a43e-401c-a0f1-c0e91c55f6fb + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + GREEN + CL + + + + + + + + 859fb5fd-3241-434e-92ad-dd45152a1902 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BLUE + EDGE + + + + + + + + ecac1a3f-56a4-49b5-960e-010e62fdf6cb + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BLUE + EDGE + + + + + + + + ef878bde-177e-44f3-b1ee-51a4b1c4b95b + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BLUE + EDGE + + + + + + + + a15a6a50-8fa5-4190-9306-1901efad0d18 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BLUE + CL + + + + + + + + 3759baea-683f-4f2f-a732-c7e57adb194a + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIH + WHITE + CL + + + + + + + + 3d619d5f-db7b-490f-8e31-08ac1a3bf2c6 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIH + WHITE + + + + + 2 800 M, 7.5 M + White; + FM 1 900 M- + 2 500 M + Red/White; + FM 2 500 M + Red; LIH + + + + + + CL + + + + + + + + 10ef9ced-a722-43d2-8be9-441b8a990181 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + WHITE + + + + + + + + 0373b89a-697f-42c9-bda5-c536c7aed15a + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OTHER:CYAN + + + + + + + + 5677508e-6e87-437b-85ed-d21e1325f117 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIH + WHITE + + + + + + + + 81604812-820c-4006-be6e-3662c8be416d + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIH + WHITE + + + + + + + + 02573093-d850-4bd9-9e82-aacd57bdd91b + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIM + WHITE + + + + + + + + 8612257e-cedb-4d5c-a258-34f854429e52 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIM + WHITE + + + + + + + + d532589a-7108-4d48-b3c9-f37abd2590c9 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + RED + + + + + + + + dd062d88-3e64-4a5d-bebd-89476db9ebea + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + 0 + + + 2009-01-01T00:00:00Z + + + + EADH + DONLON/DOWNTOWN HELIPORT + -3.0 + 1990 + 0.03 + + + OPERATE + + + + + + 52.288888888888884 -32.035 + 18.0 + + + + + + + + + 1b54b2d6-a5ff-4e57-94c2-f4047a381c64 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + 0 + + + 2009-01-01T00:00:00Z + + + + EADD + DONLON + -3.0 + 1990 + -0.03 + 21.0 + + + DONLON + + + + + OPERATE + + + + + + 52.3716666666667 -31.9494444444444 + 30.0 + 12.0 + + + + + + + UTC + WORK_DAY + 06:00 + 20:00 + YES + + + + + UTC + SAT + 07:00 + 20:00 + YES + + + + + UTC + SUN + 07:00 + 20:00 + YES + + + + + UTC + HOL + 07:00 + 20:00 + YES + + + + NORMAL + + + + PERMIT + + + OR + + + IFR + + + + + VFR + + + + + + + + + + + + + UTC + ANY + 20:00 + 24:00 + YES + + + + + UTC + ANY + 00:00 + 06:00 + YES + + + + + UTC + SAT + 06:00 + 07:00 + YES + + + + + UTC + SUN + 06:00 + 07:00 + YES + + + + + UTC + HOL + 06:00 + 07:00 + YES + + + NORMAL + + + FORBID + ALL + + + + + + + + + + + 2012-12-22T00:00:00Z + 2012-12-22T01:00:00Z + + + TEMPDELTA + 1 + + + + + operationalStatus + REMARK + + + DUE TO WX BELOW MIN VIS 4000 M + + + + + CLOSED + + + PERMIT + + + + + IFR + + + + + + + + + + + + + + + + + + + + 238b5482-8fa0-4169-a745-686c1ca44421 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + NO + LIH + BLUE + + + PINK + LIH + FLOOD + + + + + PINK + LIH + FLOOD + + + + + PINK + LIH + FLOOD + + + + + PINK + LIH + FLOOD + + + EDGE + + + + + + + + 68655945-0f02-47a9-b300-87420ecff373 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + NO + LIL_LIH + PINK + + + PINK + LIL_LIH + STROBE + + + + + PINK + LIL_LIH + STROBE + + + + + PINK + LIL_LIH + STROBE + + + EDGE + + + + + + + + 484494d4-a3e9-4b60-8306-ebfaa78bf7d8 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + NO + LIM + GREEN + EDGE + + + + + + + + 08a1bbd5-ea70-4fe3-836a-ea9686349495 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VOR_DME + BOR + BOORSPIJK + + + 1 + + + + + + 1 + + + + + + 52.36833333333333 -32.375 + 30.0 + + + + + + + + + 2012-10-07T07:00:00Z + 2012-10-07T14:00:00Z + + + TEMPDELTA + 1 + + + UNSERVICEABLE + + + + + + + + + 7692166e-60e6-467d-b5f0-c728aeae85d6 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BOR + BOORSPIJK + + + 52.36833333333333 -32.375 + 30.0 + + + + + + + + 102X + + + + + + + 2012-10-07T07:00:00Z + 2012-10-07T14:00:00Z + + + TEMPDELTA + 1 + + + UNSERVICEABLE + + + + + availability + REMARK + + + DUE TO MAINT. FALSE INDICATIONS POSSIBLE + + + + + + + + + + + + + + + + 0a45a38f-0f96-4ace-b09e-310ac0415693 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BOR + BOORSPIJK + + + 52.36833333333333 -32.375 + 30.0 + + + + + + + + 115.5 + + + + + + + 2012-10-07T07:00:00Z + 2012-10-07T14:00:00Z + + + TEMPDELTA + 1 + + + UNSERVICEABLE + + + + + availability + REMARK + + + DUE TO MAINT. FALSE INDICATIONS POSSIBLE + + + + + + + + + + + + + + + + 51829538-2d2a-4d01-a4bf-87c045d247a8 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VOR_DME + DON + DONLON + + + 1 + + + + + + 1 + + + + + + 52.44333333333333 -32.00083333333333 + 60.0 + + + + + + + + + 8979e959-492b-4b30-83d2-060f362cf5c4 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + DON + DONLON + + + 52.44333333333333 -32.00083333333333 + 60.0 + + + + + + + + 111X + + + + + + + ea10d605-5497-42ee-9d85-a0e5f80f9b26 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + DON + DONLON + -3.0 + 1990 + + + 52.44333333333333 -32.00083333333333 + 60.0 + + + + + + + + VOR + 116.4 + + + + + + + a9c3240c-e2c9-4f9a-a573-9da452cfe84f + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LOC + KL + DONLON + + + 1 + + + + + + 52.38366666666666 -31.85063888888889 + 0.0 + + + + + + + + + 577cb727-cef0-487b-bb5f-10882677a989 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + KL + DONLON + + + 52.38366666666666 -31.85063888888889 + 0.0 + + + + + + + + 411.0 + + + + + + + 92d527c0-ae96-4695-8d0a-9b43edbc4fe6 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VOR + CAA + CALGA + + + 1 + + + + + + 52.38177777777778 -31.743361111111113 + 30.0 + + + + + + + + + b5d16d67-8e4f-4ec8-9572-003e3e58424a + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + CAA + CALGA + -3.0 + 1990 + + + 52.38177777777778 -31.743361111111113 + 30.0 + + + + + + + + VOR + 114.3 + + + + + + + cc271a99-e28c-49e6-86ac-53078e6e59e3 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VOR + EKO + EKCOMBE_VOR + + + 1 + + + + + + 47.1366666666667 -28.6416666666667 + 0.0 + + + + + + + + + 8506a23a-4a97-42fe-bddd-d23b00c2f61c + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + EKO + EKCOMBE_VOR + + + 47.1366666666667 -28.6416666666667 + 0.0 + + + + + + + + VOR + 1120.3 + + + + + + + 3afcdd1d-1ca4-4667-95af-1725ca17a70f + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VOR + LMD + LIMAD_VOR + + + 1 + + + + + + 48.8 -23.2166666666667 + 0.0 + + + + + + + + + 9cd3112a-2aaf-48c3-a01a-59699b4af6e2 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LMD + LIMAD_VOR + + + 48.8 -23.2166666666667 + 0.0 + + + + + + + + VOR + 432.1 + + + + + + + 882e849c-682d-4e95-ac19-a7808d55cdbb + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VOR + WOB + WOBAN_VOR + + + 1 + + + + + + 42.675 -36.17333333333333 + 150.0 + + + + + + + + + fbe82608-bece-4db7-a13b-961963e1b167 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + WOB + WOBAN_VOR + + + 42.675 -36.17333333333333 + 150.0 + + + + + + + + VOR + 123.4 + + + + + + + 6237f900-1320-4f01-95ec-8378ebc26e9f + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VOR + KAV + KAVRAN + + + 1 + + + + + + 52.53841666666666 -31.920166666666667 + 0.0 + + + + + + + + + 13fe226f-271c-4d36-9f42-190563a963de + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + KAV + KAVRAN + -3.0 + 1990 + + + 52.53841666666666 -31.920166666666667 + 0.0 + + + + + + + + VOR + 115.0 + + + + + + + 4316fc95-f2f7-4789-a249-3afc0b5cc27a + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TACAN + OST + OSTO + + + 1 + + + + + + 52.51077777777778 -33.511361111111113 + 15.0 + + + + + + + + + 3e33bd78-0b9c-4d27-9060-901fcb02fa47 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OST + OSTO + -3.0 + 1990 + + + 52.51077777777778 -33.511361111111113 + 15.0 + + + + + + + + 119X + + + + + + + 0f276f15-a407-4ff5-9e51-8522493de27b + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + MKR + OM27 + OM27 + + + 1 + + + + + + 52.38366944444444 -31.850661111111112 + 0 + + + + + + + + + 268cd014-b4e4-41fa-8d90-422c3dbb96b4 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OM27 + OM27 + A3H + NO + YES + FAN + 75 + -.--....----... + + + + + + + 4fd9f4be-8c65-43f6-b083-3ced9a4b2a7f + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + R + ACR001 + + + + + 300000.0 + + + + + 47.4 -41.6 47.45384232494095 -41.49475160936019 + 47.507587336034945 -41.389288333791846 47.56123465591919 + -41.28360971835344 47.61478390603749 -41.17771531001795 + 47.66823470664122 -41.07160465771256 47.72158667679048 + -40.96527731235865 47.774839434355215 -40.85873282691222 + 47.827992596016486 -40.751970756404575 47.8810457772679 + -40.644990657983485 47.93399859241693 -40.53779209095458 + 47.98685065458652 -40.43037461682318 48.03960157571668 + -40.322737799336444 48.092250966566205 -40.21488120452591 + 48.14479843671447 -40.106804400750356 48.19724359456332 + -39.99850695873905 48.24958604733906 -39.88998845163533 + 48.30182540109455 -39.78124845504057 48.353961260711415 + -39.67228654705846 48.40599322990225 -39.563102308339744 + 48.45792091121308 -39.45369532212715 48.509743906025776 + -39.34406517430085 48.56146181456067 -39.23421145342419 + 48.61307423587926 -39.12413375078974 48.664580767886925 + -39.01383166046581 48.715981007335934 -38.90330477934326 + 48.767274549828294 -38.792552707182615 48.81846098981899 + -38.68157504666165 48.86953992061912 -38.57037140342325 + 48.920510934399246 -38.45894138612364 48.97137362219286 + -38.34728460648098 49.02212757389982 -38.23540067932431 + 49.07277237829018 -38.12328922264282 49.12330762300779 + -38.01094985763554 49.17373289457428 -37.8983822087613 + 49.22404777839308 -37.78558590378909 49.27425185875347 + -37.67256057384874 49.32434471883489 -37.55930585348196 + 49.374325940711245 -37.44582138069373 49.424195105355444 + -37.33210679700403 49.47395179264396 -37.21816174749987 + 49.52359558136158 -37.103985880887755 49.57312604920629 + -36.98957884954638 49.622542772794155 -36.874940309579756 + 49.671845327664535 -36.76006992087058 49.721033288285305 + -36.64496734713401 49.770106228058125 -36.52963225597177 + 49.819063719324085 -36.41406431892649 49.86790533336919 + -36.298263211536515 49.9166306404302 -36.182228613390905 + 49.965239209700556 -36.065960208184826 50.01373060933631 + -35.94945768377528 50.062104406462375 -35.832720732237064 + 50.110360167178825 -35.71574904991913 50.15849745656729 + -35.598542337501215 50.2065158386976 -35.48110030005075 + 50.25441487663447 -35.36342264708014 50.30219413244438 + -35.2455090926043 50.3498531672026 -35.12735935519847 + 50.39739154100035 -35.008973158056385 50.444808812952104 + -34.890350229048664 50.492104541203005 -34.77149030078155 + 50.5392782829365 -34.652393110655865 50.586329594382114 + -34.53305840092631 50.63325803082326 -34.413485918761005 + 50.680063146605434 -34.29367541630127 50.72674449514424 + -34.173626650721744 50.77330162893392 -34.05333938429069 + 50.81973409955575 -33.93281338443062 50.86604145768678 + -33.8120484237791 50.91222325310859 -33.6910442802499 + 50.95827903471638 -33.569800737094255 51.004208350527975 + -33.44831758296253 51.05001074769331 -33.326594611965916 + 51.09568577250368 -33.20463162373854 51.14123297040161 + -33.0824284234997 51.186651885990415 -32.95998482211628 + 51.23194206304433 -32.83730063616548 51.277103044518526 + -32.71437568799767 51.3221343725595 -32.59120980579946 + 51.367035588515435 -32.46780282365696 51.41180623294689 + -32.344154581619236 51.45644584563755 -32.22026492576195 + 51.50095396560524 -32.09613370825113 51.54533013111303 + -31.971760787407153 51.589573879680565 -31.847146027768858 + 51.63368474809549 -31.72228930015781 51.67766227242523 + -31.59719048174273 51.721505988028696 -31.471849456104042 + 51.76521542956835 -31.346266113298544 51.808790131022405 + -31.220440349924218 51.85222962569715 -31.09437206918514 + 51.8955334462395 -30.96806118095649 51.93870112464975 + -30.84150760184969 51.98173219229441 -30.7147112552776 + 52.02462617991936 -30.58767207151979 52.06738261766305 + -30.460389987787917 52.11000103506997 -30.332864948291146 + 52.15248096110429 -30.205096904301627 52.19482192416363 + -30.077085814219984 52.23702345209308 -29.948831643640943 + 52.27908507220185 -29.82033436541126 52.321006311267816 + -29.691593959725534 52.36278669556666 -29.562610414146814 + 52.40442575087698 -29.433383723702036 52.44592300249762 + -29.3039138909402 52.48727797526267 -29.174200925997965 + 52.52849019355688 -29.044244846665194 52.5695591813311 + -28.91404567845041 52.610484462117945 -28.783603454646318 + 52.651265559047694 -28.65291821639514 52.69190199486429 + -28.521990012753967 52.73239329194163 -28.390818900759925 + 52.772738972299955 -28.259404945495397 52.81293855762252 + -28.127748220152966 52.85299156927237 -27.995848806100348 + 52.89289752830936 -27.863706792945187 52.932655955507315 + -27.731322278599677 52.97226637137147 -27.59869536934501 + 53.011728296156015 -27.46582617989572 53.05104124988186 + -27.33271483346383 53.090204752354616 -27.199361461822757 + 53.12921832318271 -27.065766205371066 53.168081481795745 + -26.93192921319601 53.20679374746309 -26.79785064313682 + 53.24535463931244 -26.663530661847737 53.283763676348954 + -26.528969444860838 53.322020377474175 -26.394167176648583 + 53.36012426150543 -26.25912405068602 53.398074847195254 + -26.12384026951278 53.43587165325112 -25.988316044794722 + 53.4735141983553 -25.852551597385265 53.511002001184856 + -25.716547157386373 53.54833458043196 -25.5803029642092 + 53.585511454824314 -25.44381926663437 53.62253214314575 + -25.307096322871914 53.65939616425702 -25.170134400620718 + 53.696103037116856 -25.032933777127717 53.73265228080311 + -24.89549473924649 53.769043414534124 -24.757817583495584 + 53.80527595769029 -24.619902616116274 53.84134942983582 + -24.481750153129905 53.87726335074059 -24.34336052039477 + 53.913017240402304 -24.204734053662445 53.948610619068795 + -24.06587109863366 53.98404300726045 -23.926772011013593 + 54.019313925792865 -23.78743715656669 54.05442289579969 + -23.647866911170894 54.089369438755625 -23.50806166087126 + 54.12415307649958 -23.368021801933086 54.15877333125809 + -23.227747740894305 54.19322972566877 -23.087239894617397 + 54.22752178280409 -22.946498690340576 54.261649026195194 + -22.805524565728348 54.29561097985598 -22.664317968921402 + 54.32940716830732 -22.52287935858585 54.36303711660141 + -22.381209203961685 54.39650035034637 -22.239307984910656 + 54.42979639573092 -22.097176191963257 54.462924779549255 + -21.954814326365096 54.49588502922611 -21.812222900122446 + 54.52867667284198 -21.669402436046983 54.56129923915839 + -21.52635346779982 54.59375225764349 -21.383076539934635 + 54.626035258497694 -21.239572207940018 54.658147772679506 + -21.095841038280955 54.69008933193147 -20.951883608439474 + 54.72185946880631 -20.80770050695437 54.7534577166932 + -20.663292333460095 54.78488360984412 -20.51865969872466 + 54.816136683400494 -20.373803224686686 54.8472164734198 + -20.228723544491462 54.87812251690245 -20.083421302526027 + 54.90885435181869 -19.93789715445336 54.939411517135795 + -19.792151767245507 54.96979355284519 -19.64618581921565 55.0 + -19.5 + + + + + + + + + + + + + + + + 2012-07-10T07:00:00Z + 2012-07-10T07:16:00Z + + + TEMPDELTA + 1 + + + EXERCISE + ACTIVE + + + CEILING + FLOOR + + + + + + + activation + REMARK + + + FOR FURTHER INFORMATION PLEASE CONTACT DONLON ACC ON PHONE (12)123 45 + 67 + + + + + + + + + + + + + + + + + f4d5e4d4-d84a-481f-b9e3-b359e42c0dff + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + FIR + AMSWELL + AMSWELL FIR + + + + + UNL + GND + + + + + + + + + + + 57.0833333333333 -40.0 52.85 + -41.7833333333333 48.4666666666667 + -41.3333333333333 44.0333333333333 -40.0 + 42.6 -37.0 40.7333333333333 + -37.1833333333333 41.4 -30.05 + 43.5166666666667 -21.1333333333333 + 56.6666666666667 -21.1333333333333 + 57.0833333333333 -40.0 + + + + + + + + + + + + + + + + + + + + + + cc9c7cc4-e000-4741-854d-b7d93973e099 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + UPPER + 450 + STD + 195 + STD + GDS + 69.3 + + + COMPULSORY + + + + + + + + + 42.5016666666667 -37.0016666666667 42.675 -36.1733333333333 + + + + + + + + COMPULSORY + + + + + + + + + + bc430a08-bb5d-48dd-8ef0-85ff50dcfb9d + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + UPPER + 450 + STD + 195 + STD + GDS + 771.5999755859375 + + + COMPULSORY + + + + + + + + + 42.675 -36.1733333333333 47.1366666666667 -28.6416666666667 + + + + + + + + COMPULSORY + + + + + + + + + + bfca2bc3-5562-4ec4-b199-f0377c93c04e + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + UPPER + 450 + STD + 195 + STD + GDS + 446.0 + + + COMPULSORY + + + + + + + + + 47.1366666666667 -28.6416666666667 48.8 -23.2166666666667 + + + + + + + COMPULSORY + + + + + + + + + + 122f61c4-2704-494f-8ad7-45e2f8adc603 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + UPPER + 450 + STD + 195 + STD + GDS + 163.1999969482422 + + + COMPULSORY + + + + + + + + + 48.8 -23.2166666666667 49.3583333333333 -21.1333333333333 + + + + + + + COMPULSORY + + + + + + + + + + 81e47548-9f00-4970-b641-8ff8f99098a5 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TEMPO + ICAO + TEMPO + + + 56.84 -29.860000000000003 + + + + + + + + + 9fcb360c-6933-46d6-9c85-a337202efe70 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ABOLA + ICAO + ABOLA + + + 45.71 -35.169999999999995 + + + + + + + + + 363838d8-edcc-4085-a608-96b45ceef14e + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ATLIM + ICAO + ATLIM + + + 54.718333333333334 -47.0 + + + + + + + + + c3bf8394-4d5f-4b42-ba87-67563df97555 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + UKORO + ICAO + UKORO + + + 40.92333333333333 -36.81333333333333 + + + + + + + + + 26009f76-2e05-418d-a631-bec02f84ac5b + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VEGAT + ICAO + VEGAT + + + 49.3583333333333 -21.1333333333333 + + + + + + + + + 7f443c8b-d407-4c41-aa9f-1d56a688a432 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + EBOTO + ICAO + EBOTO + + + 42.501666666666665 -26.015 + + + + + + + + + bb9dcfb3-f45a-40f3-8852-fca1349801fc + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BARIM + ICAO + BARIM + + + 42.5016666666667 -37.0016666666667 + + + + + + + + + fe3bbf89-9a15-49e4-b987-f7225b7484bb + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + SANOK + ICAO + SANOK + + + 41.413333333333334 -30.051666666666666 + + + + + + + + + 95638d5c-367f-4a6d-829c-f1e58245961f + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ODMUS + ICAO + ODMUS + + + 49.358333333333334 -20.15 + + + + + + + + + b35409d8-f236-4303-a12d-795e9e9c8759 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ILURU + ICAO + ILURU + + + 50.019999999999996 -41.61333333333334 + + + + + + + + + 6118ba76-0d46-4ba7-af63-17f29755e890 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + REPUBLICOFDONLON + STATE + + + + + 49.96666666666667 -31.383333333333333 51.125 -31.388333333333332 + 51.17111111111111 -31.394444444444446 51.18805555555555 -31.403888888888886 + 51.198055555555555 -31.40833333333333 51.2075 -31.410833333333333 + 51.21666666666667 -31.413055555555555 51.21944444444445 -31.41333333333333 + 51.22638888888889 -31.41472222222222 51.23583333333333 -31.419444444444444 51.24 + -31.42361111111111 51.243611111111115 -31.427222222222223 51.24805555555556 + -31.429722222222225 51.25416666666667 -31.42777777777778 51.25972222222222 + -31.424166666666668 51.265277777777776 -31.421944444444446 51.27111111111111 + -31.420833333333334 51.27583333333333 -31.422222222222224 51.28388888888889 + -31.426944444444445 51.288333333333334 -31.43111111111111 51.29666666666667 + -31.433888888888887 51.30361111111111 -31.435555555555556 51.31472222222222 + -31.43638888888889 51.34055555555556 -31.43777777777778 51.34638888888889 + -31.436944444444446 51.355555555555554 -31.43277777777778 51.36555555555556 + -31.432222222222222 51.38638888888889 -31.43777777777778 51.39055555555556 + -31.441666666666666 51.39555555555555 -31.445555555555554 51.39972222222222 + -31.452777777777776 51.408055555555556 -31.458055555555553 51.41027777777778 + -31.4575 51.41222222222222 -31.454444444444444 51.413333333333334 + -31.445555555555554 51.4175 -31.443333333333335 51.431666666666665 + -31.453055555555554 51.46638888888889 -31.46472222222222 51.46666666666667 + -31.464444444444442 51.48083333333334 -31.460555555555555 51.48888888888889 + -31.464444444444442 51.50138888888889 -31.486944444444447 51.51416666666667 + -31.488611111111112 51.51555555555556 -31.488333333333333 51.51888888888889 + -31.490277777777777 51.52333333333333 -31.5075 51.52444444444444 + -31.511944444444445 51.52833333333333 -31.513055555555557 51.550555555555555 + -31.519166666666667 51.55583333333333 -31.520555555555553 51.55722222222222 + -31.520833333333332 51.55722222222222 -31.51833333333333 51.558055555555555 + -31.509166666666665 51.56111111111111 -31.499444444444446 51.56472222222222 + -31.509166666666665 51.57972222222222 -31.498611111111114 51.58222222222223 + -31.493333333333336 51.586111111111116 -31.49527777777778 51.59777777777778 + -31.491666666666667 51.603611111111114 -31.493055555555557 51.61 + -31.490833333333335 51.60777777777778 -31.483333333333334 51.619166666666665 + -31.476388888888888 51.62388888888889 -31.46944444444444 51.63527777777778 + -31.465833333333332 51.65361111111111 -31.449444444444445 51.67222222222222 + -31.44472222222222 51.70722222222223 -31.43638888888889 51.718611111111116 + -31.43166666666667 51.74666666666667 -31.418333333333333 51.757222222222225 + -31.41583333333333 51.763888888888886 -31.408055555555553 51.765 + -31.398055555555555 51.7875 -31.365555555555556 51.80027777777777 + -31.349722222222223 51.80222222222222 -31.34638888888889 51.815 + -31.325277777777778 51.8525 -31.29527777777778 51.87888888888889 + -31.274444444444445 51.882777777777775 -31.27583333333333 51.888333333333335 + -31.28111111111111 51.903888888888886 -31.27138888888889 51.91416666666667 + -31.26527777777778 51.94972222222222 -31.249722222222225 51.969722222222224 + -31.25722222222222 51.97166666666667 -31.2575 51.97777777777778 -31.2575 + 51.986111111111114 -31.250833333333333 51.99666666666667 -31.209166666666665 + 51.99916666666667 -31.20638888888889 52.006388888888885 -31.198611111111113 + 52.00805555555556 -31.1925 52.00694444444444 -31.18611111111111 + 51.99805555555556 -31.174166666666668 51.9975 -31.169722222222223 + 52.00083333333333 -31.125833333333333 52.007222222222225 -31.115833333333335 + 52.013333333333335 -31.115833333333335 52.020833333333336 -31.120555555555555 + 52.0225 -31.12 52.03666666666666 -31.107222222222223 52.04 -31.09472222222222 + 52.040277777777774 -31.08833333333333 52.038333333333334 -31.08 + 52.02444444444444 -31.05777777777778 52.019444444444446 -31.041944444444447 + 52.020833333333336 -31.023333333333333 52.028055555555554 -30.99361111111111 + 52.033055555555556 -30.990555555555556 52.04666666666667 -30.99888888888889 + 52.05638888888888 -30.993055555555557 52.061388888888885 -30.991666666666667 + 52.06361111111111 -30.991666666666667 52.06777777777778 -30.991666666666667 + 52.07277777777778 -30.993055555555557 52.078611111111115 -30.994444444444447 + 52.125 -30.960277777777776 52.13388888888889 -30.956944444444442 + 52.14722222222222 -30.951666666666664 52.17777777777778 -30.944444444444446 + 52.180277777777775 -30.94361111111111 52.20944444444445 -30.934444444444445 + 52.21388888888889 -30.935 52.215833333333336 -30.935833333333335 + 52.21805555555556 -30.936944444444446 52.217777777777776 -30.950555555555553 + 52.20888888888889 -30.96638888888889 52.20916666666667 -30.97083333333333 + 52.20916666666667 -30.975555555555555 52.20527777777778 -30.990000000000002 + 52.20638888888889 -31.00111111111111 52.20527777777778 -31.005555555555556 + 52.19444444444444 -31.00611111111111 52.19083333333333 -31.01 52.18805555555555 + -31.01388888888889 52.18611111111111 -31.019166666666667 52.18472222222222 + -31.023888888888887 52.18388888888889 -31.026666666666667 52.183055555555555 + -31.035555555555558 52.17805555555555 -31.053055555555556 52.18388888888889 + -31.064444444444444 52.183055555555555 -31.066944444444445 52.176944444444445 + -31.07111111111111 52.175555555555555 -31.074166666666667 52.17611111111111 + -31.081666666666667 52.17611111111111 -31.0825 52.181666666666665 + -31.090555555555554 52.18722222222222 -31.099166666666665 52.18944444444444 + -31.100555555555555 52.21138888888889 -31.114444444444445 52.23222222222223 + -31.133333333333333 52.23444444444444 -31.133888888888887 52.26833333333333 + -31.142777777777777 52.27305555555555 -31.14527777777778 52.27388888888889 + -31.145833333333332 52.27972222222222 -31.151666666666664 52.294444444444444 + -31.17138888888889 52.30333333333333 -31.179722222222225 52.33527777777778 + -31.203055555555554 52.336111111111116 -31.204166666666666 52.34166666666667 + -31.210555555555555 52.37777777777778 -31.249444444444446 52.3975 + -31.26888888888889 52.42222222222222 -31.284166666666668 52.43527777777778 + -31.311944444444446 52.43527777777778 -31.31833333333333 52.434999999999995 + -31.329444444444444 52.43666666666666 -31.330277777777777 52.4375 + -31.330555555555556 52.45 -31.314444444444444 52.46388888888889 + -31.310000000000002 52.47888888888889 -31.295833333333334 52.4825 + -31.296666666666667 52.48416666666667 -31.297222222222224 52.48222222222223 + -31.302222222222223 52.478611111111114 -31.31138888888889 52.480000000000004 + -31.315833333333334 52.48416666666667 -31.316944444444445 52.49888888888889 + -31.313055555555557 52.50805555555556 -31.310555555555556 52.51611111111111 + -31.30611111111111 52.52388888888889 -31.301666666666666 52.54055555555556 + -31.297222222222224 52.54527777777778 -31.294722222222223 52.552499999999995 + -31.28527777777778 52.556666666666665 -31.282777777777778 52.56777777777778 + -31.27638888888889 52.574444444444445 -31.272499999999997 52.590833333333336 + -31.260277777777777 52.60611111111111 -31.255277777777778 52.62361111111111 + -31.240833333333335 52.628055555555555 -31.242222222222225 52.63138888888889 + -31.256666666666668 52.6325 -31.260833333333334 52.63527777777778 + -31.264722222222222 52.638333333333335 -31.26527777777778 52.66694444444444 + -31.264444444444443 52.71888888888889 -31.254722222222224 52.72916666666667 + -31.245 52.73388888888889 -31.234166666666667 52.734722222222224 + -31.231944444444444 52.74611111111111 -31.205 52.74666666666667 + -31.203611111111112 52.75361111111111 -31.19472222222222 52.768055555555556 + -31.185 52.77611111111111 -31.161666666666665 52.77972222222222 + -31.15694444444444 52.7875 -31.15222222222222 52.7975 -31.145833333333332 + 52.81222222222222 -31.12611111111111 52.81444444444444 -31.119722222222222 + 52.81444444444444 -31.118333333333332 52.81472222222222 -31.096666666666664 + 52.82138888888889 -31.084722222222222 52.84027777777778 -31.076666666666668 + 52.84277777777778 -31.07472222222222 52.85472222222222 -31.06388888888889 + 52.85777777777778 -31.05777777777778 52.85888888888889 -31.053333333333335 + 52.86333333333334 -31.037222222222223 52.867777777777775 -31.033611111111114 + 52.87555555555556 -31.03111111111111 52.880833333333335 -31.03222222222222 + 52.896388888888886 -31.043055555555558 52.90083333333333 -31.046111111111113 + 52.907222222222224 -31.048611111111114 52.91222222222222 -31.046111111111113 + 52.920833333333334 -31.026944444444442 52.92194444444444 -31.02583333333333 + 52.92527777777777 -31.022777777777776 52.94138888888889 -31.016944444444444 + 52.96333333333334 -30.999444444444446 52.97138888888889 -30.990277777777777 + 52.999722222222225 -30.96972222222222 53.0225 -30.953611111111112 + 53.02583333333333 -30.953333333333333 53.028888888888886 -30.953333333333333 + 53.032222222222224 -30.955277777777777 53.04083333333333 -30.965833333333332 + 53.044999999999995 -30.966944444444444 53.05916666666666 -30.96222222222222 + 53.078611111111115 -30.976666666666667 53.09638888888889 -31.000833333333333 + 53.1025 -31.011388888888888 53.11666666666667 -31.016666666666666 + 53.11694444444444 -31.035833333333336 53.11694444444444 -31.036944444444448 + 53.11805555555556 -31.043055555555558 53.11694444444444 -31.052500000000002 + 53.10027777777778 -31.098333333333333 53.09916666666667 -31.115555555555556 + 53.10111111111111 -31.12777777777778 53.109722222222224 -31.140277777777776 + 53.11638888888889 -31.14472222222222 53.12111111111111 -31.14527777777778 + 53.13527777777778 -31.141666666666666 53.155833333333334 -31.131666666666668 + 53.16722222222222 -31.133333333333333 53.17444444444444 -31.144166666666667 + 53.17861111111111 -31.172777777777778 53.18194444444444 -31.195 + 53.18527777777778 -31.206666666666667 53.19611111111111 -31.224444444444444 + 53.200833333333335 -31.22972222222222 53.21361111111111 -31.23777777777778 + 53.23916666666667 -31.241666666666667 53.254444444444445 -31.240555555555556 + 53.268055555555556 -31.234166666666667 53.276666666666664 -31.230277777777776 + 53.28111111111111 -31.232499999999998 53.29833333333333 -31.254722222222224 + 53.30555555555555 -31.266111111111112 53.32277777777778 -31.292222222222225 + 53.347500000000004 -31.31277777777778 53.35027777777778 -31.31416666666667 + 53.35944444444445 -31.318055555555556 53.38527777777778 -31.329722222222223 + 53.39 -31.3275 53.401111111111106 -31.30888888888889 53.40611111111111 + -31.303333333333335 53.4075 -31.30138888888889 53.413333333333334 + -31.299444444444447 53.43611111111111 -31.299722222222226 53.45194444444445 + -31.293333333333337 53.45611111111111 -31.294444444444448 53.461111111111116 + -31.300555555555555 53.4675 -31.315 53.47222222222222 -31.3325 + 53.473333333333336 -31.33722222222222 53.47416666666667 -31.33861111111111 + 53.48083333333334 -31.34861111111111 53.480555555555554 -31.359444444444446 + 53.48555555555556 -31.371944444444445 53.489444444444445 -31.37666666666667 + 53.49055555555556 -31.378055555555555 53.49805555555556 -31.3825 + 53.52638888888889 -31.391111111111112 53.53444444444444 -31.404999999999998 + 53.53388888888889 -31.407777777777778 53.53527777777778 -31.415555555555553 + 53.53638888888889 -31.4225 53.54111111111111 -31.43 53.54472222222222 + -31.434722222222224 53.561388888888885 -31.443333333333335 53.56861111111112 + -31.45 53.57166666666667 -31.4525 53.57666666666667 -31.460555555555555 + 53.58027777777778 -31.470277777777778 53.58444444444444 -31.481111111111108 + 53.59305555555556 -31.49277777777778 53.61611111111111 -31.50777777777778 + 53.652499999999996 -31.525555555555556 53.656388888888884 -31.525 + 53.659166666666664 -31.522222222222222 53.659166666666664 -31.521944444444443 + 53.66166666666666 -31.515833333333333 53.665 -31.508333333333333 + 53.66416666666667 -31.488055555555558 53.66611111111111 -31.46611111111111 + 53.65861111111111 -31.423055555555557 53.65833333333333 -31.421944444444446 + 53.653055555555554 -31.403888888888886 53.651944444444446 -31.393055555555556 + 53.65222222222222 -31.391111111111112 53.651944444444446 -31.37138888888889 + 53.64861111111111 -31.326666666666668 53.647777777777776 -31.31361111111111 + 53.6625 -31.264722222222222 53.66611111111111 -31.252777777777776 + 53.66611111111111 -31.251944444444444 53.66611111111111 -31.250555555555554 + 53.66277777777778 -31.183611111111112 53.66222222222222 -31.175833333333333 + 53.66083333333333 -31.170555555555556 53.65833333333333 -31.15888888888889 + 53.657222222222224 -31.150555555555552 53.65694444444444 -31.1475 + 53.65888888888889 -31.136388888888888 53.66361111111111 -31.109722222222224 + 53.663333333333334 -31.105 53.66277777777778 -31.09722222222222 + 53.66138888888889 -31.092222222222222 53.66111111111111 -31.09111111111111 + 53.65611111111111 -31.06833333333333 53.656388888888884 -31.059444444444445 + 53.6625 -31.044444444444448 53.67027777777778 -31.016111111111112 + 53.67194444444444 -31.011944444444445 53.68 -31.00611111111111 53.68611111111111 + -31.0 53.69166666666666 -31.00111111111111 53.69222222222222 -31.00111111111111 + 53.71416666666667 -30.998333333333335 53.71888888888889 -30.995 + 53.72416666666667 -30.99138888888889 53.72805555555556 -30.990555555555556 + 53.73777777777778 -30.991944444444446 53.74277777777778 -30.990833333333335 + 53.76416666666667 -30.97861111111111 53.77027777777778 -30.97722222222222 + 53.778888888888886 -30.97722222222222 53.7975 -30.985555555555557 + 53.80472222222222 -30.983611111111113 53.81111111111111 -30.974999999999998 + 53.81916666666667 -30.96472222222222 53.82055555555556 -30.951666666666664 + 53.82277777777778 -30.945833333333333 53.82361111111111 -30.94361111111111 + 53.83388888888889 -30.929166666666667 53.84527777777778 -30.92777777777778 + 53.850833333333334 -30.916944444444447 53.8675 -30.9025 53.89361111111111 + -30.899722222222223 53.913888888888884 -30.904444444444444 53.921388888888885 + -30.9025 53.930277777777775 -30.8925 53.93388888888889 -30.88861111111111 + 53.943888888888885 -30.885555555555555 53.95805555555556 -30.89 + 53.97166666666667 -30.885555555555555 53.99277777777778 -30.875555555555557 54.0 + -30.87472222222222 54.006388888888885 -30.87027777777778 54.010555555555555 + -30.868333333333332 54.01305555555555 -30.86388888888889 54.01972222222222 + -30.871666666666666 54.020833333333336 -30.873055555555556 54.02333333333333 + -30.875 54.025277777777774 -30.87527777777778 54.02916666666667 + -30.87638888888889 54.030277777777776 -30.87666666666667 54.03194444444444 + -30.878611111111113 54.033055555555556 -30.880277777777778 54.03666666666666 + -30.879444444444445 54.05027777777777 -30.891666666666666 54.05083333333333 + -30.8925 54.05277777777778 -30.89472222222222 54.0575 -30.89527777777778 + 54.059999999999995 -30.894444444444446 54.062777777777775 -30.893333333333334 + 54.062777777777775 -30.896944444444443 54.065 -30.90361111111111 + 54.06583333333333 -30.904166666666665 54.07333333333334 -30.91444444444444 + 54.07694444444445 -30.91722222222222 54.086111111111116 -30.919444444444444 + 54.09138888888889 -30.924722222222222 54.102222222222224 -30.929444444444446 + 54.10333333333333 -30.9325 54.10611111111111 -30.938333333333333 + 54.113055555555555 -30.941111111111113 54.11416666666667 -30.945 + 54.11333333333334 -30.949166666666667 54.115 -30.959444444444443 + 54.120555555555555 -30.982777777777777 54.11666666666667 -30.990277777777777 + 54.125 -31.00027777777778 54.136944444444445 -31.009166666666665 + 54.14555555555555 -31.011388888888888 54.153888888888886 -31.008333333333333 + 54.15888888888889 -31.009166666666665 54.16444444444444 -31.014166666666668 + 54.187777777777775 -31.01861111111111 54.19888888888889 -31.015555555555554 + 54.211666666666666 -31.010277777777777 54.221944444444446 -31.005555555555556 + 54.25527777777778 -30.944444444444446 54.25527777777778 -30.944166666666668 + 54.2575 -30.89611111111111 54.260555555555555 -30.875555555555557 + 54.26694444444444 -30.858055555555556 54.27611111111111 -30.85611111111111 + 54.288888888888884 -30.858611111111113 54.29722222222222 -30.85638888888889 + 54.30611111111111 -30.843888888888888 54.31388888888888 -30.83 + 54.315555555555555 -30.827222222222222 54.33111111111111 -30.789722222222224 + 54.35611111111111 -30.78638888888889 54.35944444444445 -30.784722222222225 + 54.36555555555556 -30.776666666666667 54.36666666666667 -30.775 + 54.37027777777778 -30.77611111111111 54.373333333333335 -30.781944444444445 + 54.375277777777775 -30.792222222222225 54.38166666666667 -30.80138888888889 + 54.38777777777778 -30.809166666666666 54.41444444444444 -30.828333333333333 + 54.41833333333333 -30.83111111111111 54.42638888888889 -30.83 54.43416666666666 + -30.83361111111111 54.45472222222222 -30.84 54.471944444444446 + -30.830555555555556 54.48388888888889 -30.816666666666666 54.50361111111111 + -30.80611111111111 54.510555555555555 -30.799722222222226 54.51222222222222 + -30.795 54.5325 -30.789444444444445 54.54 -30.79416666666667 54.55583333333333 + -30.80611111111111 54.56361111111111 -30.819166666666668 54.5625 + -30.82611111111111 54.56861111111112 -30.837777777777777 54.5925 + -30.822499999999998 54.59388888888889 -30.82111111111111 54.60333333333333 + -30.814444444444444 54.61694444444444 -30.804444444444446 54.63194444444444 + -30.796666666666667 54.64944444444444 -30.79277777777778 54.6675 + -30.799444444444447 54.70888888888889 -30.807222222222222 54.716944444444444 + -30.808611111111112 54.72972222222222 -30.81388888888889 54.7325 + -30.81861111111111 54.73694444444445 -30.819166666666668 54.745 + -30.824166666666667 54.74666666666667 -30.825277777777778 54.768055555555556 + -30.823333333333334 54.78611111111111 -30.822499999999998 54.80694444444444 + -30.815833333333334 54.82333333333334 -30.820555555555554 54.83444444444444 + -30.816666666666666 54.84138888888889 -30.819166666666668 54.843611111111116 + -30.81722222222222 54.845555555555556 -30.803055555555556 54.848888888888894 + -30.798333333333336 54.878055555555555 -30.804722222222225 54.88194444444444 + -30.808333333333334 54.8825 -30.810833333333335 54.88638888888889 + -30.826944444444443 54.890277777777776 -30.829444444444444 54.89472222222222 + -30.836666666666666 54.90138888888889 -30.842777777777776 54.92666666666666 + -30.84361111111111 54.95416666666667 -30.85666666666667 54.958333333333336 + -30.861111111111114 54.96388888888889 -30.8725 54.97222222222222 + -30.878333333333334 54.98222222222223 -30.888055555555557 54.9975 + -30.904444444444444 55.01083333333333 -30.915277777777778 55.01888888888889 + -30.92638888888889 55.02194444444444 -30.928055555555556 55.027499999999996 + -30.928611111111113 55.03 -30.929166666666667 55.03388888888889 + -30.93027777777778 55.0375 -30.92027777777778 55.038888888888884 -30.915 55.0375 + -30.901944444444442 55.03722222222222 -30.90111111111111 55.03611111111111 + -30.89611111111111 55.03611111111111 -30.895833333333332 55.030833333333334 + -30.875 55.03722222222222 -30.823055555555555 55.041666666666664 + -30.811944444444446 55.04416666666666 -30.80666666666667 55.05138888888889 + -30.80027777777778 55.05444444444444 -30.797777777777778 55.06583333333333 + -30.7825 55.07277777777778 -30.77861111111111 55.08861111111111 + -30.77027777777778 55.10611111111111 -30.754166666666666 55.11277777777778 + -30.755555555555556 55.120555555555555 -30.7625 55.128055555555555 + -30.76861111111111 55.13305555555556 -30.76527777777778 55.14194444444444 + -30.74888888888889 55.161944444444444 -30.719166666666666 55.17916666666667 + -30.70111111111111 55.195277777777775 -30.692777777777778 55.209722222222226 + -30.68111111111111 55.221944444444446 -30.675555555555558 55.24 + -30.645833333333332 55.243611111111115 -30.634166666666665 55.24527777777778 + -30.623333333333335 55.245 -30.61888888888889 55.245 -30.61861111111111 + 55.24277777777778 -30.612222222222222 55.23888888888889 -30.596666666666664 + 55.237500000000004 -30.58888888888889 55.23777777777778 -30.575277777777778 + 55.23777777777778 -30.570555555555554 55.24277777777778 -30.5625 + 55.24638888888889 -30.558333333333334 55.25666666666667 -30.543055555555558 + 55.26 -30.529444444444444 55.26583333333333 -30.506666666666668 + 55.29277777777778 -30.472777777777775 55.29972222222222 -30.46 55.30138888888889 + -30.456944444444442 55.30722222222222 -30.440555555555555 55.315555555555555 + -30.428333333333335 55.33416666666667 -30.416666666666668 55.343333333333334 + -30.410555555555554 55.35027777777778 -30.39611111111111 55.35888888888889 + -30.384166666666665 55.36222222222222 -30.38138888888889 55.367222222222225 + -30.383055555555558 55.3675 -30.383333333333333 55.38944444444444 + -30.390277777777776 55.39555555555555 -30.38361111111111 55.395833333333336 + -30.383333333333333 55.39694444444444 -30.37388888888889 55.394999999999996 + -30.365833333333335 55.394444444444446 -30.36527777777778 55.38611111111111 + -30.356944444444444 55.38583333333333 -30.353055555555557 55.38583333333333 + -30.352777777777778 55.38666666666666 -30.341388888888886 55.386944444444445 + -30.340277777777775 55.38777777777778 -30.339166666666664 55.38777777777778 + -30.33888888888889 55.388333333333335 -30.337777777777777 55.38861111111111 + -30.336944444444445 55.39 -30.334444444444443 55.39055555555556 + -30.333888888888886 55.395833333333336 -30.329444444444444 55.403055555555554 + -30.326944444444443 55.407777777777774 -30.325277777777778 55.413333333333334 + -30.32138888888889 55.41722222222222 -30.315 55.424166666666665 + -30.308055555555555 55.43333333333333 -30.304444444444446 55.433611111111105 + -30.304444444444446 55.43666666666666 -30.304722222222225 55.44444444444444 + -30.305555555555557 55.44972222222222 -30.302777777777777 55.47694444444445 + -30.28638888888889 55.481388888888894 -30.285555555555558 55.49583333333334 + -30.27111111111111 55.503055555555555 -30.258333333333333 55.51777777777777 + -30.254166666666666 55.532777777777774 -30.231111111111108 55.54194444444444 + -30.223333333333333 55.55555555555555 -30.21611111111111 55.558611111111105 + -30.211111111111112 55.56444444444444 -30.208055555555553 55.569722222222225 + -30.2025 55.57361111111111 -30.19611111111111 55.57833333333333 + -30.18277777777778 55.58388888888889 -30.184166666666666 55.597500000000004 + -30.197777777777777 55.603611111111114 -30.21833333333333 55.63916666666667 + -30.25111111111111 55.650555555555556 -30.267777777777777 55.655277777777776 + -30.273333333333333 55.65972222222222 -30.284722222222225 55.66 + -30.28611111111111 55.66444444444444 -30.30777777777778 55.66611111111111 + -30.31527777777778 55.67777777777778 -30.341388888888886 55.67777777777778 + -30.341666666666665 55.67916666666667 -30.348333333333333 55.67638888888889 + -30.368055555555557 55.67722222222222 -30.377222222222223 55.68111111111111 + -30.391388888888887 55.68111111111111 -30.409444444444443 55.681666666666665 + -30.412777777777777 55.683055555555555 -30.42 55.68722222222222 -30.4375 + 55.669444444444444 -30.452777777777776 55.658055555555556 -30.496666666666666 + 55.66611111111111 -30.502777777777776 55.67666666666666 -30.5175 55.68 + -30.526944444444442 55.69083333333333 -30.54527777777778 55.69166666666666 + -30.554444444444446 55.69972222222222 -30.549722222222226 55.7 + -30.549444444444447 55.70805555555556 -30.545 55.711666666666666 + -30.54527777777778 55.73166666666667 -30.551944444444445 55.736111111111114 + -30.557222222222222 55.742222222222225 -30.559166666666666 55.7475 + -30.569166666666668 55.75194444444445 -30.56888888888889 55.76083333333333 + -30.55638888888889 55.769444444444446 -30.550555555555555 55.786944444444444 + -30.546666666666667 55.79611111111111 -30.54416666666667 55.801944444444445 + -30.539444444444445 55.81388888888888 -30.53666666666667 55.819722222222225 + -30.53111111111111 55.83444444444444 -30.528055555555554 55.84027777777778 + -30.529166666666665 55.85944444444445 -30.522499999999997 55.86138888888889 + -30.523333333333333 55.86527777777778 -30.52027777777778 55.869166666666665 + -30.51722222222222 55.87388888888889 -30.521944444444443 55.87916666666667 + -30.535 55.88361111111111 -30.560833333333335 55.89611111111111 + -30.55611111111111 55.90416666666667 -30.551944444444445 55.913333333333334 + -30.551666666666666 55.92361111111111 -30.544444444444448 55.93138888888889 + -30.541944444444447 55.94416666666666 -30.551111111111112 55.96472222222223 + -30.56638888888889 55.9675 -30.57138888888889 55.968333333333334 -30.58 + 55.953611111111115 -30.581944444444446 55.9475 -30.589444444444442 + 55.94361111111111 -30.61277777777778 55.940555555555555 -30.64388888888889 + 55.93805555555555 -30.659444444444443 55.936388888888885 -30.674444444444447 + 55.93722222222222 -30.69 55.93888888888888 -30.7075 55.941111111111105 + -30.721666666666664 55.94083333333333 -30.732499999999998 55.94972222222222 + -30.74416666666667 55.973055555555554 -30.754444444444445 55.98527777777778 + -30.767777777777777 55.987500000000004 -30.80027777777778 55.981944444444444 + -30.80388888888889 55.968333333333334 -30.805555555555557 55.95333333333333 + -30.80888888888889 55.945277777777775 -30.825555555555557 55.94444444444444 + -30.843888888888888 55.94638888888888 -30.851944444444445 55.94416666666666 + -30.85527777777778 55.94 -30.873333333333335 55.93861111111111 + -30.88277777777778 55.94138888888889 -30.894444444444446 55.94138888888889 + -30.915555555555553 55.94361111111111 -30.925555555555558 55.947222222222216 + -30.935833333333335 55.94944444444444 -30.93888888888889 55.950833333333335 + -30.940555555555555 55.96138888888889 -30.947777777777777 55.97166666666667 + -30.95888888888889 55.96805555555556 -30.97694444444444 55.95805555555556 + -30.988611111111112 55.94944444444444 -31.00138888888889 55.94888888888889 + -31.013333333333332 55.95194444444445 -31.023055555555555 55.950833333333335 + -31.041944444444447 55.94972222222222 -31.059444444444445 55.95277777777778 + -31.064722222222223 55.97083333333334 -31.078611111111112 55.98527777777778 + -31.114444444444445 55.98388888888889 -31.123055555555556 55.98972222222222 + -31.14472222222222 55.987500000000004 -31.160277777777775 55.98722222222222 + -31.160555555555554 55.985 -31.16638888888889 55.985 -31.166666666666668 + 55.980000000000004 -31.17527777777778 55.97972222222222 -31.175833333333333 + 55.97 -31.18277777777778 55.97 -31.18305555555556 55.966944444444444 + -31.183888888888887 55.96222222222222 -31.185 55.96 -31.185833333333335 + 55.95333333333333 -31.180833333333336 55.95333333333333 -31.180555555555557 + 55.95277777777778 -31.18111111111111 55.94888888888889 -31.18277777777778 + 55.94416666666666 -31.183611111111112 55.94305555555555 -31.183888888888887 + 55.94277777777778 -31.183888888888887 55.91861111111111 -31.174166666666668 + 55.91555555555556 -31.174166666666668 55.913888888888884 -31.174166666666668 + 55.91277777777778 -31.174722222222222 55.911944444444444 -31.17527777777778 + 55.88638888888889 -31.191666666666666 55.88166666666667 -31.201944444444443 + 55.879444444444445 -31.20583333333333 55.87166666666667 -31.219166666666666 + 55.86472222222223 -31.246666666666666 55.848888888888894 -31.290277777777778 + 55.84138888888889 -31.324166666666667 55.84638888888889 -31.35777777777778 + 55.84638888888889 -31.36777777777778 55.83722222222222 -31.384999999999998 + 55.825 -31.393333333333334 55.81944444444445 -31.39611111111111 + 55.814166666666665 -31.404722222222222 55.81222222222222 -31.4175 + 55.82333333333334 -31.42388888888889 55.830000000000005 -31.42138888888889 + 55.83388888888889 -31.42666666666667 55.83555555555556 -31.428611111111113 + 55.844166666666666 -31.44 55.85638888888889 -31.449722222222224 + 55.862500000000004 -31.452222222222222 55.862500000000004 -31.461388888888887 + 55.871944444444445 -31.49388888888889 55.86527777777778 -31.506944444444443 + 55.85611111111111 -31.50861111111111 55.85055555555556 -31.50638888888889 + 55.84861111111111 -31.510277777777777 55.843611111111116 -31.522499999999997 + 55.83888888888889 -31.540833333333335 55.83083333333334 -31.56638888888889 + 55.831388888888895 -31.578055555555554 55.83444444444444 -31.591388888888886 + 55.840833333333336 -31.608611111111113 55.843611111111116 -31.608333333333334 + 55.85861111111111 -31.602222222222224 55.87 -31.59 55.88055555555555 + -31.57472222222222 55.88111111111111 -31.580555555555556 55.87861111111111 + -31.590833333333332 55.882222222222225 -31.610833333333336 55.8825 -31.65 + 55.89138888888889 -31.663055555555555 55.90333333333333 -31.684444444444445 + 55.905277777777776 -31.689444444444444 55.903888888888886 -31.697222222222223 + 55.9 -31.705555555555556 55.89388888888889 -31.718055555555555 55.89388888888889 + -31.734722222222224 55.89555555555555 -31.745 55.894444444444446 + -31.75861111111111 55.88388888888889 -31.780555555555555 55.87972222222222 + -31.796666666666667 55.8775 -31.82 55.876666666666665 -31.83138888888889 + 55.86694444444444 -31.834166666666665 55.86194444444445 -31.842222222222222 + 55.85638888888889 -31.84722222222222 55.852222222222224 -31.874166666666667 + 55.85722222222223 -31.88138888888889 55.86416666666667 -31.884999999999998 + 55.90888888888889 -31.875 55.92305555555555 -31.88277777777778 + 55.925555555555555 -31.892777777777777 55.92472222222222 -31.896944444444443 + 55.91888888888889 -31.90833333333333 55.904444444444444 -31.9075 + 55.89138888888889 -31.90833333333333 55.88472222222222 -31.911666666666665 + 55.87722222222222 -31.920833333333334 55.87416666666667 -31.927222222222223 + 55.86944444444445 -31.96944444444444 55.86638888888889 -31.974166666666665 + 55.852222222222224 -31.983888888888888 55.84805555555556 -31.991666666666667 + 55.831388888888895 -32.00277777777778 55.82777777777778 -32.010555555555555 + 55.825833333333335 -32.025277777777774 55.8175 -32.04138888888889 + 55.81638888888889 -32.04694444444444 55.81361111111111 -32.05972222222222 + 55.80416666666667 -32.065 55.80333333333333 -32.065 55.80138888888889 + -32.07944444444445 55.80138888888889 -32.090833333333336 55.80138888888889 + -32.09527777777778 55.80444444444444 -32.10305555555556 55.806666666666665 + -32.108333333333334 55.806666666666665 -32.10861111111111 55.80888888888889 + -32.11416666666667 55.81055555555555 -32.12777777777778 55.81055555555555 + -32.129444444444445 55.81638888888889 -32.149166666666666 55.85305555555556 + -32.155 55.87361111111111 -32.1625 55.87694444444445 -32.165277777777774 55.88 + -32.16777777777777 55.88138888888889 -32.17194444444444 55.88194444444444 + -32.19416666666666 55.88194444444444 -32.19444444444444 55.89194444444444 + -32.20194444444445 55.89972222222222 -32.2075 55.905 -32.21027777777778 + 55.908055555555556 -32.21194444444445 55.90972222222222 -32.21083333333333 + 55.919999999999995 -32.20944444444445 55.92527777777777 -32.202222222222225 + 55.95138888888889 -32.1825 55.95444444444445 -32.176944444444445 55.96 + -32.17222222222222 55.96083333333333 -32.17166666666667 55.967777777777776 + -32.168055555555554 55.973888888888894 -32.16166666666666 55.99194444444444 + -32.12861111111111 56.00472222222222 -32.11055555555556 56.01027777777778 + -32.096944444444446 56.01638888888889 -32.081388888888895 56.03361111111111 + -32.0775 56.045833333333334 -32.07944444444445 56.05611111111111 + -32.08111111111111 56.07083333333334 -32.094722222222224 56.077222222222225 + -32.11138888888889 56.078611111111115 -32.12361111111111 56.06583333333333 + -32.16722222222222 56.06638888888889 -32.175555555555555 56.07027777777778 + -32.17583333333333 56.085 -32.17833333333333 56.1225 -32.18611111111111 56.135 + -32.18694444444444 56.13944444444444 -32.18722222222222 56.1425 + -32.18722222222222 56.14277777777778 -32.187777777777775 56.14527777777778 + -32.19166666666666 56.14555555555555 -32.19944444444444 56.14083333333333 + -32.20638888888889 56.13666666666666 -32.211111111111116 56.13583333333333 + -32.21416666666667 56.13361111111111 -32.222500000000004 56.132777777777775 + -32.225833333333334 56.1325 -32.23361111111111 56.13194444444444 + -32.242222222222225 56.13138888888889 -32.24333333333333 56.120555555555555 + -32.265 56.11333333333334 -32.279444444444444 56.10277777777778 + -32.30833333333333 56.094722222222224 -32.31722222222223 56.09027777777778 + -32.331388888888895 56.09166666666667 -32.35638888888889 56.09027777777778 + -32.36222222222222 56.081944444444446 -32.38305555555556 56.07916666666667 + -32.41222222222222 56.081388888888895 -32.42916666666667 56.078611111111115 + -32.473888888888894 56.078611111111115 -32.480000000000004 56.07833333333333 + -32.48555555555556 56.07972222222222 -32.50277777777778 56.075833333333335 + -32.51638888888889 56.056666666666665 -32.53055555555555 56.05444444444444 + -32.58972222222222 56.05555555555555 -32.59805555555556 56.05222222222222 + -32.61472222222223 56.04833333333333 -32.6275 56.032222222222224 + -32.64555555555555 56.00527777777778 -32.65694444444444 55.99111111111111 + -32.67472222222222 55.980555555555554 -32.70055555555556 55.973888888888894 + -32.72361111111111 55.931666666666665 -32.75333333333333 55.925 + -32.76111111111111 55.91916666666666 -32.77388888888889 55.91277777777778 + -32.79361111111111 55.907777777777774 -32.80638888888888 55.885555555555555 + -32.837500000000006 55.8725 -32.85722222222223 55.934999999999995 + -33.39944444444444 + + + + + + + + + + + + ebccbb64-c1b3-4b27-8e5a-a32d2763208a + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + 52.375597222222225 -31.964263888888887 + + + + + + + + + + e9240179-b707-4133-b49f-39725663e736 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + 52.37818888888889 -31.921847222222222 + + + + + + + + + + fc5b84ee-08bc-4d04-a358-f4cca8609a8f + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ILS + OXS + OXS + + + 1 + + + + + + 2 + + + + + + 52.3755833333333 -31.9652222222222 + 0.0 + + + + + + + + + + + 2012-10-07T10:00:00Z + 2012-10-07T14:00:00Z + + + TEMPDELTA + 1 + + + UNSERVICEABLE + + + + + operationalStatus + REMARK + + + DUE TO MAINTENANCE + + + + + + + + + + + 2ad9861c-7624-481b-b344-c1f601e51939 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OXS + OXS_LLZ + + + 52.3755833333333 -31.9652222222222 + 0.0 + + + 109.1 + + + + + + + 2012-10-07T10:00:00Z + 2012-10-07T14:00:00Z + + + TEMPDELTA + 1 + + + UNSERVICEABLE + + + + + + + + + c9bfcce2-76ad-46b7-a1e7-2c246893db56 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + SNAPSHOT + + + 2009-01-01T00:00:00Z + + + + OXS + OXS_GP + + + 52.3784444444444 -31.9267777777778 + + + 331.4 + + + + + + + 2012-10-07T10:00:00Z + 2012-10-07T14:00:00Z + + + TEMPDELTA + 1 + + + UNSERVICEABLE + + + + + + + + + f37a6ecd-4765-48ed-88f1-6a42643fc13a + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 90.0 + MAG_BRG + 270.0 + RIGHT + 4267.2 + 1066.8 + 256.1933112 + + + 60.0 + + + + + + + 52.36833333333333 -32.375 + + + + + + + + + + + 5ec34a95-b680-4f4b-a2d7-99f2f14b4560 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 90.0 + MAG_BRG + 270.0 + RIGHT + 6096.0 + 4572.0 + 256.1933112 + + + 90.0 + + + + + + + 52.36833333333333 -32.375 + + + + + + + + + + + 39f50cab-cf8a-43c7-b6c4-1705c3886ae7 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 90.0 + MAG_BRG + 270.0 + RIGHT + 10363.2 + 6400.8 + 256.1933112 + + + 90.0 + + + + + + + 52.36833333333333 -32.375 + + + + + + + + + + + 39845412-b7b9-4932-93e0-807c92b7cbb5 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 90.0 + MAG_BRG + 270.0 + RIGHT + 14020.8 + 10668.0 + 256.1933112 + + + 90.0 + + + + + + + 52.36833333333333 -32.375 + + + + + + + + + + + 91d8e5e6-74b3-4652-9138-52018a34196e + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BUILDING + NO + + + + + 52.37558611111111 -31.965180555555555 + 31.5 + + + + + + + + + + + 5f68d835-828c-4ccd-91b7-791058d9dd4d + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ANTENNA + NO + + + + + 52.36171388888889 -32.03756666666666 + 93 + + + + + + + + + + + 95db0e0f-64d9-4dc0-9a6a-60955f4c489b + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OTHER:POWER_LINE + NO + + + + + 52.36439444444444 -31.9792 + 65 + + + + + + + + + + + aeb69042-44b3-4063-ba80-f862f2cdc0d7 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TOWER + NO + + + + + 52.3676 -31.915894444444444 + 40 + + + + + + + + + + + c0406eae-7f49-4bbe-94a2-747b297c8022 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OTHER:MOBILE_OBST + NO + + + + + 52.37884722222222 -31.915438888888886 + 28 + + + + + + + + + + + 1568f948-fe6d-43d8-81fd-12e37500d0b2 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OTHER:MAST + NO + + + + + 52.354261111111114 -31.92560277777778 + 20 + + + + + + + + + + + c12f97f8-2c91-44e8-9770-ec1966311f18 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OTHER:CHIMNEY + NO + + + + + 52.360597222222225 -31.907077777777776 + 35 + + + + + + + + + + + 17778204-955f-44f2-96ad-cde7d2c347a9 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BUILDING + NO + + + + + 52.35690555555556 -31.914494444444443 + 30 + + + + + + + + + + + 3d9a60b5-6d7f-471d-9744-b767df4a8575 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TLOF + 20.0 + 20.0 + 1.0 + + + 52.288936111111106 -32.035086111111106 + + + + + + + + + + + + + 52.28903333333333 -32.034952777777775 + 52.28885555555556 -32.034927777777774 52.28883888888889 + -32.035219444444444 52.28901666666666 + -32.035244444444444 52.28903333333333 + -32.034952777777775 + + + + + + + + + + 18 + + + + + CONC + + + + + + + + + + 69677242-f98d-40d0-8c04-cf396497270f + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 70.0 + 90.0 + + + GRASS + + + + + + + + + + + + + 52.28932777777778 -32.034549999999996 + 52.288605555555556 -32.03444722222222 52.28855 + -32.03562222222222 52.28926666666666 -32.035725 + 52.28932777777778 -32.034549999999996 + + + + + + + + + + + + + + + + + + + 66ec0e97-5d40-4ca8-bf42-35f8e93723bb + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 242 + + + + + 52.37464269376479 -31.94655407346698 52.372661895885464 + -31.946298658872173 52.37249328436266 -31.946309509256167 52.37226938754995 + -31.946412846246652 52.372166050559464 -31.946602297395877 52.3720797641724 + -31.948219693525278 + + + + + + + + + + + + + 5596cc48-232b-431a-94d3-6a6d0351f0cf + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 70.0 + 90.0 + + + GRASS + + + + + + + + + + + + + 52.28932777777778 -32.034549999999996 + 52.288605555555556 -32.03444722222222 52.28855 + -32.03562222222222 52.28926666666666 -32.035725 + 52.28932777777778 -32.034549999999996 + + + + + + + + + + + + + + + + + + + 54f9c436-125a-4661-bc57-0d08af3e4f4b + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 70.0 + 90.0 + + + GRASS + + + + + + + + + + + + + 52.28932777777778 -32.034549999999996 + 52.288605555555556 -32.03444722222222 52.28855 + -32.03562222222222 52.28926666666666 -32.035725 + 52.28932777777778 -32.034549999999996 + + + + + + + + + + + + + + + + + + + d4713d5d-860a-46cd-880b-30f13e291c5b + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + 52.288936111111106 -32.035086111111106 + 18 + + + + + + + + + + 9288f255-e6a1-43fa-9c3c-102a802c99b1 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + G + 116.9 + + + 52.37340555555556 -31.962791666666664 + + + + + + + + + + + 4428d037-1cdf-433a-9bfa-d0857aaf448a + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + 09R/27L + 2600.0 + 45.0 + + + CONC_ASPH + 50 + FLEXIBLE + A + Y + ACFT + + + + + + + + + + 5d6513d4-a62a-49e1-9e26-0b8cbf320daf + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + 09R + 85.29 + + + + + + + + 2ad2bc03-323b-41d3-992e-3c9d4e83dd02 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + THR + + + 52.36550555555556 -31.965008333333333 + + + + + + + + + + ee6019d6-29f7-404d-8cee-b6819f325aed + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + 27L + 265.29 + + + + + + + + 6e7b7beb-4bd2-447c-bd1d-52202ddd37d4 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + THR + + + 52.368252777777776 -31.925594444444446 + + + + + + + + + + 7a8f00e8-15f0-402f-9562-3c109999d545 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.37590585931356 -31.964278043969905 + 52.375111423433644 -31.964228391727417 + 52.377870286949445 -31.92180984838786 52.378484819142066 + -31.921878401779864 52.37590585931356 + -31.964278043969905 + + + + + + + + + + + + + + + + + + e24947bb-5083-433e-b125-89199c1d1233 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.36589862656441 -31.96504267834769 + 52.36519841646239 -31.964972171080476 52.36785927788303 + -31.925539068377507 52.36850257170318 -31.92561516687336 + 52.36589862656441 -31.96504267834769 + + + + + + + + + + + + + + + + + + a45ec8a1-2259-4140-8322-a441e3006cb3 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + F + 23.0 + + + CONC_ASPH + 80 + RIGID + B + W + TECH + + + + + + + + + + 78396f68-9c03-438a-a6b4-331157b1a79c + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + A + 23.0 + + + CONC_ASPH + 80 + RIGID + B + W + TECH + + + + + + + + + + 51474004-6ec1-47a0-bada-404b866e6549 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + B + 23.0 + + + CONC_ASPH + 80 + RIGID + B + W + TECH + + + + + + + + + + d3a7ea1e-93d2-4298-adb3-141906a7b178 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + C + 23.0 + + + CONC_ASPH + 80 + RIGID + B + W + TECH + + + + + + + + + + 8a3a6406-6d9e-42e5-a5d7-daac00dc0d52 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + D + 23.0 + + + CONC_ASPH + 80 + RIGID + B + W + TECH + + + + + + + + + + 0c049047-56f5-41a1-ba56-d0695817a3d2 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + I + 23.0 + + + CONC_ASPH + 80 + RIGID + B + W + TECH + + + + + + + + + + 125d2cc5-2fd4-4917-8a08-a1586bce481d + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + G + 23.0 + + + CONC_ASPH + 80 + RIGID + B + W + TECH + + + + + + + + + + cf10b08e-3cd0-4ac3-be6d-ec423bac7a90 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.374114061066535 -31.960971595710426 + 52.3744611279516 -31.95616981216965 52.37453053140269 + -31.954519552332492 52.37521579457132 + -31.943777975195324 52.37535133179981 + -31.941558553078725 52.376147020041884 + -31.92837951247149 52.37622521459678 -31.92756498585794 + 52.37654100007663 -31.922114654922687 52.376575701802174 + -31.921983559515066 52.376660528242404 + -31.921929579053103 52.37784085296367 + -31.922251530702038 52.377870286949445 + -31.92180984838786 52.37655754145512 -31.921374583594957 + 52.37640766855823 -31.921394132233683 52.37627495351409 + -31.921509302599247 52.37619398282116 -31.92167509973242 + 52.37615353625479 -31.921869815775995 52.37490876237152 + -31.942638644826488 52.3745158937468 -31.94927834993428 + 52.37382493754196 -31.960971595710426 52.37367432444154 + -31.96407068771583 52.374727292287155 + -31.964265101088674 52.375111423433644 + -31.964228391727417 52.37514852880121 + -31.963669143754903 52.37413010408671 + -31.963484475292006 52.37403221201539 + -31.963411376762416 52.37398348915221 + -31.963265930776455 52.374114061066535 + -31.960971595710426 + + + + + + + + + + + + + + + + + + d5465b90-8f8b-4332-b9f4-f564ffefd7ea + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.3744611279516 -31.95616981216965 + 52.374534458374534 -31.95583776746803 52.374603861825626 + -31.95566040309301 52.374734957233244 -31.95545990423429 + 52.37585820657654 -31.952764796553602 52.375960762592015 + -31.951171207621044 52.374694569889876 + -31.954570921916073 52.37465008049815 + -31.954615411307802 52.374575931511934 + -31.954573887875526 52.37453053140269 + -31.954519552332492 52.3744611279516 -31.95616981216965 + + + + + + + + + + + + + + + + + + 867a4fab-e1e7-499c-90fd-38543a4bc19c + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.37521579457132 -31.943777975195324 + 52.37533561042285 -31.943061454913373 52.37550740385998 + -31.942445861763698 52.37671701222849 + -31.939541219415187 52.37682671332614 + -31.937855848697783 52.37535133179981 + -31.941558553078725 52.37521579457132 + -31.943777975195324 + + + + + + + + + + + + + + + + + + 63f05cec-6e82-49f6-8e0c-20ef2e1b3ac1 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.376147020041884 -31.92837951247149 + 52.37631186072712 -31.92831215561649 52.37718553237552 + -31.928537670382788 52.37741623285176 + -31.928785664733155 52.37748253483813 + -31.927771164459894 52.377238895008716 + -31.927982851524785 52.37640740347544 -31.92780356267792 + 52.37622521459678 -31.92756498585794 52.376147020041884 + -31.92837951247149 + + + + + + + + + + + + + + + + + + 3d4a46a4-df85-497a-b19a-e2d7d16cd66b + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.369376203479014 -31.947955104361693 + 52.36966361235915 -31.943132732858935 52.37044355915342 + -31.928666462531368 52.3705558375811 -31.925885568981418 + 52.36850257170318 -31.92561516687336 52.36847133176303 + -31.926078211791108 52.36992989174596 -31.92645630929092 + 52.37017550284791 -31.926561571191748 52.36985971714541 + -31.93303267185691 52.369794555016334 -31.93398504143583 + 52.36890734756649 -31.947739263143987 52.36874193600805 + -31.94818036063317 52.36669067900043 -31.953041507599508 + 52.36659929409392 -31.95443305049401 52.369376203479014 + -31.947955104361693 + + + + + + + + + + + + + + + + + + 0a6b3bbb-912b-4afd-9412-33947d8dca61 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.369794555016334 -31.93398504143583 + 52.369727240094264 -31.933821252142682 52.36962343151356 + -31.933735239318672 52.3679875582048 -31.933408647349477 + 52.36802915351955 -31.932787080998335 52.369693660147306 + -31.93309968028133 52.3697861980821 -31.93308811303948 + 52.36985971714541 -31.93303267185691 52.369794555016334 + -31.93398504143583 + + + + + + + + + + + + + + + + + + 4d78044e-2ca4-475a-a678-123e5f7f388b + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.373419352744456 -31.94465243187102 + 52.37341876432026 -31.94356698787013 52.3738353611297 + -31.943635384361233 52.37384564168429 + -31.944668155420775 52.373419352744456 + -31.94465243187102 + + + + + + + + + + + + + + + + + + d6cf5b07-9fb4-4afb-9b47-841643da3e99 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + CONC + 80 + RIGID + B + W + TECH + + + + + + + + + + 285fd2af-599a-4f9b-b812-fd24a68416c4 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.369376203479014 -31.947955104361693 + 52.36948258558073 -31.947865454851 52.372153867201185 + -31.9483824951364 52.37336828819957 -31.94861756739893 + 52.37356087309213 -31.948652735074965 52.37396613869214 + -31.948733118334466 52.374096781103304 + -31.94875745923603 52.37429500429997 -31.948911632833443 + 52.3745158937468 -31.94927834993428 52.37490876237152 + -31.942638644826488 52.37475453248021 -31.9432259047973 + 52.3745528472377 -31.943863586078734 52.37433633219796 + -31.944296616158216 52.37404882338086 + -31.944655400246912 52.37384564168429 + -31.944668155420775 52.373419352744456 + -31.94465243187102 52.373240585956786 -31.94466222350188 + 52.373107871178895 -31.94453075660838 52.37298351392235 + -31.94438774576335 52.372846720940146 + -31.944338002860732 52.37273479940925 + -31.944331784997903 52.37259178856422 -31.94439396362618 + 52.37248632123943 -31.944468912666462 52.3724167440947 + -31.944452297228914 52.372079952926995 + -31.94441012447827 52.37202325274635 -31.944411474482564 + 52.370249685946185 -31.94399642025034 52.37006846582388 + -31.943919305304682 52.369937370416245 + -31.943788209897058 52.3698101307559 -31.943618557016602 + 52.36966361235915 -31.943132732858935 52.369376203479014 + -31.947955104361693 + + + + + + + + + + + + + + + + + + 595dfb4d-6614-4b0d-8392-5e76c720bd90 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + 4 + ANG_NI + + + 52.372075 -31.948222222222224 + + + + + + NORMAL + + + + + + + + + 1707f988-e674-4290-933c-047d87b85bd8 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + CONC + 80 + RIGID + B + W + TECH + + + + + + + + + + f2cd7c2f-2d8a-4a78-a101-b14fdd1e742c + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.37044355915342 -31.928666462531368 + 52.3705558375811 -31.925885568981418 52.37077393114787 + -31.925981131191815 52.370994179144176 + -31.926235263495247 52.37096876591384 + -31.927810883776495 52.37044355915342 + -31.928666462531368 + + + + + + + + + + + + + + + + + + 9d42afcc-298a-4d7f-9c26-14729d215da4 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + 90.0 + 70.0 + + + GRASS + + + + + + + + + + + + + 52.3732881892009 -31.943560770007306 + 52.37341876432026 -31.94356698787013 52.3738353611297 + -31.943635384361233 52.37402189701452 -31.94364160222406 + 52.37402189701452 -31.942764883565392 52.37329440706372 + -31.94275244783974 52.3732881892009 -31.943560770007306 + + + + + + + + + + + + OFZ + + + + + + + 0e131693-cf13-4938-9969-994d7f56a23c + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + CONC + 80 + RIGID + B + W + TECH + + + + + + + + + + 7c413d5e-c678-4d65-8975-c1411a5968ce + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.374727292287155 -31.964265101088674 + 52.374597782032694 -31.964408744622993 52.37446847054829 + -31.964543670223794 52.374403184591124 + -31.96479548748714 52.37335843906866 -31.964651876423467 + 52.37319265266536 -31.964430827885742 52.37314492627653 + -31.964227362754418 52.37321871079687 + -31.961960211633183 52.3734622004889 -31.96167429078847 + 52.37366508594749 -31.961349674054734 52.37382493754196 + -31.960971595710426 52.37367432444154 -31.96407068771583 + 52.374727292287155 -31.964265101088674 + + + + + + + + + + + + + + + + + + d22653bd-826d-411c-b8d3-838eba2a8325 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + TOWER + BUILDING + + + 12.0 + + + + + + + + + + + 52.373240585956786 -31.94466222350188 + 52.373239760561745 -31.943667276726224 + 52.37253439745958 -31.943665099679613 + 52.37248632123943 -31.944468912666462 + 52.37259178856422 -31.94439396362618 + 52.37273479940925 -31.944331784997903 + 52.372846720940146 -31.944338002860732 + 52.37298351392235 -31.94438774576335 + 52.373107871178895 -31.94453075660838 + 52.373240585956786 -31.94466222350188 + + + + + + + + + + 40 + + + + + + + + + + + 14d8289b-4628-41c3-bcaa-be6e26e4b96a + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + AIS-MET + BUILDING + + + + + + + + + + + + + 52.3724167440947 -31.944452297228914 + 52.3724257628338 -31.943804648367422 + 52.37207199275941 -31.943801818206826 + 52.372079952926995 -31.94441012447827 + 52.3724167440947 -31.944452297228914 + + + + + + + + + + + + + + + + + + + + 9c171b9f-90d3-46e8-84b2-a8348e65e839 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + TERMINAL + BUILDING + + + 15.0 + + + + + + + + + + + 52.37202325274635 -31.944411474482564 + 52.37202671018989 -31.942652773005218 + 52.37024936933618 -31.942381077588088 + 52.370249685946185 -31.94399642025034 + 52.37202325274635 -31.944411474482564 + + + + + + + + + + 31.5 + + + + + + + + + + + 6d323fef-9ddb-4f7e-9986-a945276ed585 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + HANGAR + + + 52.372733333333336 -31.94905 + + + + + NORMAL + + + HANGAR + + + + + + + 0a12b87b-fe93-4dbd-8f77-94b97d262083 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + HANGAR + BUILDING + + + 20.0 + + + + + + + + + + + 52.37336828819957 -31.94861756739893 + 52.373304536303785 -31.94973261520167 + 52.37212152917504 -31.949528843638824 + 52.372153867201185 -31.9483824951364 + 52.37336828819957 -31.94861756739893 + + + + + + + + + + 55 + + + + + + + + + + + + 742a1aa1-10a4-435e-9e18-7a0a30d1af59 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + BUILDING + + + + + + + + + + + + + 52.37396613869214 -31.948733118334466 + 52.37397188482283 -31.949405421842457 + 52.37355868137594 -31.949377120236502 + 52.37356087309213 -31.948652735074965 + 52.37396613869214 -31.948733118334466 + + + + + + + + + + + + + + + + + + + + 225d45f0-b285-4d85-a699-84f76c57f4f8 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + PARKING + BUILDING + + + + + + + + + + + + + 52.371823023325824 -31.942040997867267 + 52.37068117016678 -31.941727301944454 + 52.37095094866041 -31.936588962728788 + 52.37164735360905 -31.9357419837372 + 52.372199458433194 -31.936369375582817 + 52.37206770614562 -31.93879738202539 + 52.37200496696106 -31.93947496521866 + 52.37194222777649 -31.941790041129018 + 52.371823023325824 -31.942040997867267 + + + + + + + + + + + + + + + + + + + + 21a13c9f-a8ff-4fdd-9aaa-5dbfd91514b8 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + P + EAP2 + EAP2_VAARDNOR + + + + + 20000 + GND + + + + + + + + + + + 52.36666666666667 -22.1 + + 15.0 + + + + + + + + + + + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + NUCLEAR + ACTIVE + + + CEILING + FLOOR + BETWEEN + + + + + + + + + + + 6a23b1fb-5eba-468e-974a-d37cdecf089f + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + R + EAR1 + EAR1_BRAVO + + + + + 1525 + SFC + GND + + + + + + + + + + + 55.233333333333334 + -36.166666666666664 55.23116372807667 + -36.89437337916484 + + + + 55.233333333333334 + -36.166666666666664 + + 25.0 + 270.0 + + 497.0 + + + 54.92816350530716 + -35.674116070018954 55.233333333333334 + -36.166666666666664 + + + + + + + + + + + + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + SHOOTING + ACTIVE + + + 1525 + SFC + FLOOR + SFC + BETWEEN + + + + + + + + + + + 1e2c1cc2-49a5-4fc2-bce7-7ffc60eb7666 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + R + EAR3 + EAR3_BURGENVALK + + + + + 360 + STD + 230 + STD + + + + + + + + + + + 50.46666666666667 + -38.46666666666667 50.43333333333333 + -34.0 48.8 -34.0 49.0 -38.46666666666667 + 50.46666666666667 -38.46666666666667 + + + + + + + + + + + + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + AIR_GUN + ACTIVE + + + 360 + STD + 230 + STD + BETWEEN + + + + + + + + + + + cae20e0e-7b7e-4bab-8f22-5b11f0a0a0d6 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + R + EAR5 + EAR5_WINSWUK + + + + + 360 + STD + GND + + + + + + + + + + + 47.333333333333336 + -39.666666666666664 43.666666666666664 + -36.5 43.0 -38.0 44.03333333333333 -40.0 + 47.0 -41.0 47.333333333333336 + -39.666666666666664 + + + + + + + + + + + + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + EXERCISE + ACTIVE + + + 360 + STD + FLOOR + SFC + BETWEEN + + + + + + + + + + + 8c6e9bea-f725-47bc-9106-ba00c27baba9 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + D + EAD4 + EAD4_HORSHAM + + + + + 360 + STD + GND + + + + + + + + + + + 45.501666666666665 + -29.006944444444443 + + 20.0 + + + + + + + + + + + + + + + + + + + UTC + MON + 07:00 + 17:00 + NO + + + + + UTC + TUE + 07:00 + 17:00 + NO + + + + + UTC + WED + 07:00 + 17:00 + NO + + + + + UTC + THU + 07:00 + 17:00 + NO + + + + + UTC + FRI + 07:00 + 17:00 + NO + + + AIR_DROP + ACTIVE + + + 360 + STD + FLOOR + SFC + BETWEEN + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + + + UTC + MON + 07:00 + 17:00 + NO + YES + + + + + UTC + TUE + 07:00 + 17:00 + NO + YES + + + + + UTC + WED + 07:00 + 17:00 + NO + YES + + + + + UTC + THU + 07:00 + 17:00 + NO + YES + + + + + UTC + FRI + 07:00 + 17:00 + NO + YES + + + AIR_DROP + INACTIVE + + + 360 + STD + FLOOR + SFC + BETWEEN + + + + + + + + + + + 4f745d73-4ecd-486b-8023-54a5e5a94513 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + D + EAD6 + EAD6_DONLON + + + + + 360 + STD + GND + + + + + + + + + + + 52.38333333333333 + -31.216666666666665 + + 8.0 + + + + + + + + + + + + + + + + + + + UTC + MON + 07:00 + 16:00 + NO + + + + + UTC + TUE + 07:00 + 16:00 + NO + + + + + UTC + WED + 07:00 + 16:00 + NO + + + + + UTC + THU + 07:00 + 16:00 + NO + + + + + UTC + FRI + 07:00 + 16:00 + NO + + + AIR_GUN + ACTIVE + + + 360 + STD + FLOOR + SFC + BETWEEN + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + + + UTC + MON + 07:00 + 16:00 + NO + YES + + + + + UTC + TUE + 07:00 + 16:00 + NO + YES + + + + + UTC + WED + 07:00 + 16:00 + NO + YES + + + + + UTC + THU + 07:00 + 16:00 + NO + YES + + + + + UTC + FRI + 07:00 + 16:00 + NO + YES + + + AIR_GUN + INACTIVE + + + 360 + STD + FLOOR + SFC + BETWEEN + + + + + + + + + + + f0331134-d00a-4f9b-ac4f-34718d462729 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + TMA + NIBORD + + + + + + 450 + STD + 450 + SFC + + + + + + + + + + + 48.848333333333336 + -23.236666666666668 + + 50.0 + + + + + + + + + + + + + + + + + + + + + 2012-04-07T23:59:00Z + 2012-06-14T23:59:00Z + + + TEMPDELTA + 1 + + + INACTIVE + + + CEILING + FLOOR + BETWEEN + + + + + + + REMARK + + + Class G Airspace. + + + + + + + + + + + + + + + + 04888c9d-6735-4bb2-9dd7-f4728e0fe8ce + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + DECCA + MANGERN CHAIN + + + + + + + b9024736-3a25-4c92-9b2f-bfc0e29ae31b + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + FELDMAD + MASTER + 85.72 + + + + 52.44166666666666 -23.7125 + + + + + OPERATIONAL + + + + + + + + + 7d4ffd7a-4036-40ff-87a5-db946b5af428 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + KYLLSTAD + RED_SLAVE + 114.2928 + + + + 51.36527777777778 -21.534444444444446 + + + + + OPERATIONAL + + + + + + + + + 81c51d5f-b0ad-49d1-9ace-5d5068d107a2 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + VENZE + GREEN_SLAVE + 128.5794 + + + + 54.285555555555554 -24.269444444444442 + + + + + OPERATIONAL + + + + + + + + + 64b7ddc6-43b2-46cb-80b7-6c2b8c40e29a + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + LAUTERBER + PURPLE_SLAVE + 71.433 + + + + 51.32361111111111 -25.989166666666666 + + + + + OPERATIONAL + + + + + + + + + f4569050-2c6f-4195-b92a-a92802cb8524 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + T_COV + DISTANCE + + + + CCA + 000 + 360 + TRUE + 0 + 500 + + + + + + + + + 9481f274-f05b-4c00-9017-eae75d33c45b + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + ATURA + MAR_BCN + WHITE + YES + + + 55.36666666666667 -33.983333333333334 + + + + + + + + + a552aba9-aed1-452f-a50e-347281817f96 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + CETA + MAR_BCN + GREEN + YES + + + 43.2 -33.36666666666667 + + + + + + + + + bf108180-75dd-4326-af29-561bf28a8c31 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2012-07-10T07:00:00Z + 2012-07-10T07:16:00Z + + + BASELINE + 1 + + + 2012-07-10T07:00:00Z + 2012-07-10T07:16:00Z + + + NOTAM_4_02_1 + DIGITAL + SAA.ACT + + + A + 1 + 2012 + N + 2012-07-06T23:15:00 + EAXX + QRRCA + IV + BO + W + 5200N03100W + 999 + EADD + 1207100700 + 1207101600 + TEMPORARY RESERVED AREA ACR001 ACTIVE MILITARY EXERCISE TAKING PLACE. + FOR FURTHER INFORMATION PLEASE CONTACT DONLON ACC ON PHONE (12)123 45 67. + + 210 + 330 + + + + + + + + + + 2012-07-10T07:00:00Z + + + PERMDELTA + 1 + + + 2012-07-10T07:00:00Z + 2012-07-10T07:16:00Z + + + NOTAM_4_02_1 + DIGITAL + SAA.ACT + + + A + 1 + 2012 + N + 2012-07-06T23:15:00 + EAXX + QRRCA + IV + BO + W + 5200N03100W + 999 + EADD + 1207100700 + 1207101600 + TEMPORARY RESERVED AREA ACR001 ACTIVE MILITARY EXERCISE TAKING PLACE. + FOR FURTHER INFORMATION PLEASE CONTACT DONLON ACC ON PHONE (12)123 45 67. + + 210 + 330 + + + + + + + + + + cc1bdbc7-476c-4b04-81c0-8f5e7ccb454b + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2012-04-07T23:59:00Z + 2012-06-14T23:59:00Z + + + BASELINE + 1 + + + 2012-04-07T23:59:00Z + 2012-06-14T23:59:00Z + + + NOTAM_4_03_2 + DIGITAL + ATSA.ACT + + + A + 2 + 2012 + N + 2012-04-05T11:58:32 + EAXX + QATCD + IV + NBO + AE + 4850N02314W + 050 + EADD + 1204072359 + 1206142359 + TMA (NIBORD) NOT ACTIVE. + CLASS G AIRSPACE. + + 000 + 999 + + + + LOCAL_FORMAT + + + + + + + + + + + 2012-04-07T23:59:00Z + + + PERMDELTA + 1 + + + 2012-04-07T23:59:00Z + 2012-06-14T23:59:00Z + + + NOTAM_4_03_2 + DIGITAL + ATSA.ACT + + + A + 2 + 2012 + N + 2012-04-05T11:58:32 + EAXX + QATCD + IV + NBO + AE + 4850N02314W + 050 + EADD + 1204072359 + 1206142359 + TMA (NIBORD) NOT ACTIVE. + CLASS G AIRSPACE. + + 000 + 999 + + + + LOCAL_FORMAT + + + + + + + + + + + 4935e16e-2a7d-464b-a537-477c7af1acbb + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2012-11-07T08:00:00Z + 2012-11-17T17:00:00Z + + + BASELINE + 1 + + + 2012-11-07T08:00:00Z + 2012-11-17T17:00:00Z + + + NOTAM_4_04_1 + DIGITAL + SAA.NEW + + + A + 3 + 2012 + N + 2012-11-05T07:52:43 + EAXX + QRRCA + IV + BO + W + 5301N03116W + 999 + EADD + 1211070800 + 1211171700 + DAILY 0800-1700 + TEMPORARY RESTRICTED AREA (EAR0003-12) ESTABLISHED + FOR UNSPECIFIED HAZARD AS FOLLOWS: 525533N 0312746W - 530148N 0313416W - 531005N + 0312042W - 531005N 0310842W - 525617N 0305706W - 525235N 0310612W - 525533N 0312746W. + + 000 + 600 + + + + LOCAL_FORMAT + + + + + + + + + + + 2012-11-07T08:00:00Z + + + PERMDELTA + 1 + + + 2012-11-07T08:00:00Z + 2012-11-17T17:00:00Z + + + NOTAM_4_04_1 + DIGITAL + SAA.NEW + + + A + 3 + 2012 + N + 2012-11-05T07:52:43 + EAXX + QRRCA + IV + BO + W + 5301N03116W + 999 + EADD + 1211070800 + 1211171700 + DAILY 0800-1700 + TEMPORARY RESTRICTED AREA (EAR0003-12) ESTABLISHED + FOR UNSPECIFIED HAZARD AS FOLLOWS: 525533N 0312746W - 530148N 0313416W - 531005N + 0312042W - 531005N 0310842W - 525617N 0305706W - 525235N 0310612W - 525533N 0312746W. + + 000 + 600 + + + + LOCAL_FORMAT + + + + + + + + + + + + 028e6905-f99a-4ca7-a736-2c0787cdcf57 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2012-11-07T08:00:00Z + 2012-11-17T17:00:00Z + + + BASELINE + 1 + + + 2012-11-07T08:00:00Z + + + + R + EAR0003-12 + + + 1 + + + 60000 + MSL + GND + + + + + + + + + + + 52.9282371670167 + -31.461114091711558 53.03083043591206 + -31.568915849359982 53.16843418881167 + -31.345348764204196 53.18194444444444 + -31.1945 + + + + + + + + + + + 52.96333333333334 + -30.999444444444446 52.90720345892345 + -31.130039397963714 52.9282371670167 + -31.461114091711558 + + + + + + + + + + + + + + + + + + + + UTC + ANY + 08:00 + 17:00 + NO + + + OTHER + ACTIVE + + + 60000 + FLOOR + BETWEEN + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + NO + + + + + UTC + ANY + 08:00 + 17:00 + NO + YES + + + INACTIVE + + + 60000 + FLOOR + BETWEEN + + + + + + + + + + + + + + + + 2012-11-07T08:00:00Z + + + PERMDELTA + 1 + + + 2012-11-07T08:00:00Z + + + + R + EAR0003-12 + + + 1 + + + 60000 + MSL + 0 + SFC + + + + + + + + + + + 52.9282371670167 + -31.461114091711558 53.03083043591206 + -31.568915849359982 53.16843418881167 + -31.345348764204196 53.18194444444444 + -31.1945 + + + + + + + + + + + 52.96333333333334 + -30.999444444444446 52.90720345892345 + -31.130039397963714 52.9282371670167 + -31.461114091711558 + + + + + + + + + + + + + + + + + + + + UTC + ANY + 08:00 + 17:00 + NO + + + OTHER + ACTIVE + + + 60000 + FLOOR + BETWEEN + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + NO + + + + + UTC + ANY + 08:00 + 17:00 + NO + YES + + + INACTIVE + + + 60000 + FLOOR + BETWEEN + + + + + + + + + + + + + + + + c68d2c5e-9a38-4d55-afcf-4d6450dc1000 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + IFR + YES + + + + + + + e515ea41-5e25-4580-8295-cbc33a2fde5a + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + EVEN + FL + + + 270 + + + + + 290 + + + + + 310 + + + + + + + + + + 4de2394a-6aa4-4913-99d0-ba13183facfc + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ODD + FL + + + 280 + + + + + 300 + + + + + 320 + + + + + + + + + + 5a8ed90a-ad4e-4352-b073-26d27b0ac978 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2012-12-22T08:00:00Z + 2012-12-22T11:00:00Z + + + BASELINE + 1 + + + 2012-12-22T08:00:00Z + 2012-12-22T11:00:00Z + + + NOTAM_4_08_2 + DIGITAL + AD.CLS + + + A + 4 + 2012 + N + 2012-12-21T07:45:00Z + EADD + QFALT + V + NBO + A + 5222N03157W + 999 + EADD + 1212220800 + 1212221100EST + AD CLOSED EXCEPT FOR IFR. + DUE TO WX BELOW MIN VIS 4000 M. + + 000 + 999 + + + + + + + + + + 2012-12-22T08:00:00Z + + + PERMDELTA + 1 + + + 2012-12-22T08:00:00Z + 2012-12-22T11:00:00Z + + + NOTAM_4_08_2 + DIGITAL + AD.CLS + + + A + 4 + 2012 + N + 2012-12-21T07:45:00Z + EADD + QFALT + V + NBO + A + 5222N03157W + 999 + EADD + 1212220800 + 1212221100EST + AD CLOSED EXCEPT FOR IFR. + DUE TO WX BELOW MIN VIS 4000 M. + + 000 + 999 + + + + + + + + + + ff3ab666-d8d0-428c-8304-5922ee4636b5 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2012-11-22T22:00:00Z + 2012-11-23T04:00:00Z + + + BASELINE + 1 + + + 2012-11-22T22:00:00Z + 2012-11-23T04:00:00Z + + + NOTAM_4_09_1 + DIGITAL + RWY.CLS + + + A + 5 + 2012 + N + 2012-11-21T11:03:00 + EADD + QMRLC + IV + NBO + A + 5222N03157W + 999 + EADD + 1211222200 + 1211230400 + RWY 09L/27R CLOSED. + 000 + 999 + + + + + + + + + + 2012-11-22T22:00:00Z + + + PERMDELTA + 1 + + + 2012-11-22T22:00:00Z + 2012-11-23T04:00:00Z + + + NOTAM_4_09_1 + DIGITAL + RWY.CLS + + + A + 5 + 2012 + N + 2012-11-21T11:03:00 + EADD + QMRLC + IV + NBO + A + 5222N03157W + 999 + EADD + 1211222200 + 1211230400 + RWY 09L/27R CLOSED. + 000 + 999 + + + + + + + + + + 3dbc9405-69ab-4f1a-9010-ab64a1dbcc1a + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2012-10-07T07:00:00Z + 2012-10-07T14:00:00Z + + + BASELINE + 1 + + + 2012-10-07T07:00:00Z + 2012-10-07T14:00:00Z + + + NOTAM_4_09_9_1 + DIGITAL + NAV.UNS + + + A + 6 + 2012 + N + 2012-10-06T09:42:00Z + EAXX + QNMAS + IV + NBO + E + 5522N03223W + 999 + EAXX + 1210070700 + 1210071400 + BOORSPIJK VOR/DME + BOR + 115.500 MHZ CH 102X U/S. + DUE TO MAINT. + DO NOT USE, FALSE INDICATIONS POSS. + + 000 + 999 + + + + + + + + + + 2012-10-07T07:00:00Z + + + PERMDELTA + 1 + + + 2012-10-07T07:00:00Z + 2012-10-07T14:00:00Z + + + NOTAM_4_09_9_1 + DIGITAL + NAV.UNS + + + A + 6 + 2012 + N + 2012-10-06T09:42:00Z + EAXX + QNMAS + IV + NBO + E + 5522N03223W + 999 + EAXX + 1210070700 + 1210071400 + BOORSPIJK VOR/DME + BOR + 115.500 MHZ CH 102X U/S. + DUE TO MAINT. + DO NOT USE, FALSE INDICATIONS POSS. + + 000 + 999 + + + + + + + + + + 42875bd3-8d62-4a98-838c-871216e347b1 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2012-10-07T10:00:00Z + 2012-10-07T14:00:00Z + + + BASELINE + 1 + + + 2012-10-07T10:00:00Z + 2012-10-07T14:00:00Z + + + DIGITAL + NAV.UNS + + + A + 7 + 2012 + N + 2012-10-06T09:42:00Z + EADD + QICAS + IV + NBO + A + 5223N03157W + 999 + EADD + 1210070700 + 1210071400 + OXS ILS GP LOC + RWY 27R + U/S. + DUE TO MAINTENANCE. + + 000 + 999 + + + + + + + + + + 2012-10-07T10:00:00Z + + + PERMDELTA + 1 + + + 2012-10-07T10:00:00Z + 2012-10-07T14:00:00Z + + + DIGITAL + NAV.UNS + + + A + 7 + 2012 + N + 2012-10-06T09:42:00Z + EADD + QICAS + IV + NBO + A + 5223N03157W + 999 + EADD + 1210070700 + 1210071400 + OXS ILS GP LOC + RWY 27R + U/S. + DUE TO MAINTENANCE. + + 000 + 999 + + + + + + + + + + 5266b646-89a9-453f-b6fe-5368c38274d2 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2012-10-01T05:31:00Z + 2012-10-30T18:26:00Z + + + BASELINE + 1 + + + 2012-10-01T05:31:00Z + 2012-10-30T18:26:00Z + + + NOTAM_4_10_1 + DIGITAL + OBS.NEW + + + A + 8 + 2012 + N + 2012-09-30T10:00:00Z + EAXX + QOBCE + IV + NBO + A + 5222N03157W + 005 + EADD + 1210010531 + 1210301826 + TEMPORARY CRANE + LOCATED AT EADD. + 522222N 0315632W ELEVATION 858 FT (HEIGHT 85 FT). + 500 FT EAST OF CONTROL TOWER. + LIGHTED. + 85 FT IS A MAXIMUM HEIGHT. + + 000 + 999 + + + + + + + + + + 2012-10-01T05:31:00Z + + + PERMDELTA + 1 + + + 2012-10-01T05:31:00Z + 2012-10-30T18:26:00Z + + + NOTAM_4_10_1 + DIGITAL + OBS.NEW + + + A + 8 + 2012 + N + 2012-09-30T10:00:00Z + EAXX + QOBCE + IV + NBO + A + 5222N03157W + 005 + EADD + 1210010531 + 1210301826 + TEMPORARY CRANE + LOCATED AT EADD. + 522222N 0315632W ELEVATION 858 FT (HEIGHT 85 FT). + 500 FT EAST OF CONTROL TOWER. + LIGHTED. + 85 FT IS A MAXIMUM HEIGHT. + + 000 + 999 + + + + + + + + + + df421db4-3698-4003-9d71-93ca57e70ffc + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2012-10-01T05:31:00Z + 2012-10-30T18:26:00Z + + + BASELINE + 1 + + + 2012-10-01T05:31:00Z + + + + EADD_CRANE_1 + CRANE + YES + + + + + + REMARK + + + 500 FT EAST OF CONTROL TOWER + + + + + 85.0 + CRANE + NO + + + 52.3727777777778 -31.9422222222222 + 858 + + + + + + + WARNING + + + located at airport EADD + + + + + + + REMARK + + + 85 FT IS A MAXIMUM HEIGHT + + + + + + + + + + + + + + + + 2012-10-01T05:31:00Z + + + PERMDELTA + 1 + + + 2012-10-01T05:31:00Z + + + + EADD_CRANE_1 + CRANE + YES + + + 85.0 + CRANE + NO + + + 52.3727777777778 -31.9422222222222 + 858 + + + + + + + WARNING + + + located at airport EADD + + + + + + + + horizontalProjectionlocation + REMARK + + + 500 FT EAST OF CONTROL TOWER + + + + + + + REMARK + + + 85 FT IS A MAXIMUM HEIGHT + + + + + + + + + + + + + + + + 7af080ab-a1c2-48b1-a677-e9f51fd32b26 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2012-10-01T04:30:00Z + 2012-10-09T14:29:00Z + + + BASELINE + 1 + + + 2012-10-01T04:30:00Z + 2012-10-09T14:29:00Z + + + NOTAM_4_10_2 + DIGITAL + OBS.NEW + + + A + 9 + 2012 + N + 2012-09-30T02:34:00Z + EAXX + QOBCE + IV + NBO + AE + 5222N03157W + 005 + EADD + 1210010430 + 1210091429 + DAILY 0430-1429 + TEMPORARY MOBILE CRANE + AT PSN 522116N 0315648W ELEVATION 675 FT (HEIGHT 483 FT). + LIGHTED ICAO MARKED. + + 000 + 999 + + + + + + + + + + 2012-10-01T04:30:00Z + + + PERMDELTA + 1 + + + 2012-10-01T04:30:00Z + 2012-10-09T14:29:00Z + + + NOTAM_4_10_2 + DIGITAL + OBS.NEW + + + A + 9 + 2012 + N + 2012-09-30T02:34:00Z + EAXX + QOBCE + IV + NBO + AE + 5222N03157W + 005 + EADD + 1210010430 + 1210091429 + DAILY 0430-1429 + TEMPORARY MOBILE CRANE + AT PSN 522116N 0315648W ELEVATION 675 FT (HEIGHT 483 FT). + LIGHTED ICAO MARKED. + + 000 + 999 + + + + + + + + + + aa0c0b1e-3e9c-4564-b858-ace28b473c0a + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2012-10-01T04:30:00Z + 2012-10-09T14:29:00Z + + + BASELINE + 1 + + + 2012-10-01T04:30:00Z + + + + EADD_CRANE_2 + CRANE + YES + + + + + UTC + ANY + 04:30 + 14:29 + NO + + + 483.0 + CRANE + YES + + + 52.3544444444444 -31.9466666666667 + 675 + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + + + UTC + ANY + 04:30 + 14:29 + NO + YES + + + 0.0 + + + 52.3544444444444 -31.9466666666667 + 0 + + + + + + + markingICAOStandard + DESCRIPTION + + + ICAO marked. + + + + + + + + + + + 2012-10-01T04:30:00Z + + + PERMDELTA + 1 + + + 2012-10-01T04:30:00Z + + + + EADD_CRANE_2 + CRANE + YES + + + + + UTC + ANY + 04:30 + 14:29 + NO + + + 483.0 + CRANE + YES + + + 52.3544444444444 -31.9466666666667 + 675 + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + + + UTC + ANY + 04:30 + 14:29 + NO + YES + + + 0.0 + + + 52.3544444444444 -31.9466666666667 + 0 + + + + + + + markingICAOStandard + DESCRIPTION + + + ICAO marked. + + + + + + + + + + + c136dd70-0070-4808-9416-949614291cec + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2012-10-01T00:00:00Z + + + + BASELINE + 1 + + + 2012-10-01T00:00:00Z + + + + NOTAM_4_10_3 + DIGITAL + OBS.NEW + + + A + 10 + 2012 + N + 2012-09-28T23:52:00Z + EAXX + QOBCE + IV + NBO + AE + 5226N03205W + 999 + EADD + 1210010000 + PERM + PERMANENT GROUP OF WINDMILL. + 522542N 0320519W ELEVATION 499 FT (HEIGHT 493 FT). + LIGHTED DAY AND NIGHT MARKED. + GROUP OF 3. + + 000 + 999 + + + + + + + + + + 2012-10-01T00:00:00Z + + + PERMDELTA + 1 + + + 2012-10-01T00:00:00Z + + + + NOTAM_4_10_3 + DIGITAL + OBS.NEW + + + A + 10 + 2012 + N + 2012-09-28T23:52:00Z + EAXX + QOBCE + IV + NBO + AE + 5226N03205W + 999 + EADD + 1210010000 + PERM + PERMANENT GROUP OF WINDMILL. + 522542N 0320519W ELEVATION 499 FT (HEIGHT 493 FT). + LIGHTED DAY AND NIGHT MARKED. + GROUP OF 3. + + 000 + 999 + + + + + + + + + + 4722e24f-2d13-45a6-8189-32dd4ee82cff + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data, including Digital NOTAM Events; initially + created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + 2012-10-01T00:00:00Z + + + + BASELINE + 1 + + + 2012-10-01T00:00:00Z + + + + WINDMILL_FARM + WINDMILL + YES + YES + YES + + + 493.0 + WINDMILL + MARKERS + + + 52.4283333333333 -32.0886111111111 + 499 + + + + + + + markingICAOStandard + DESCRIPTION + + + Day and night marked. + + + + + + + group + DESCRIPTION + + + GROUP OF 3 + + + + + + + + + + + 2012-10-01T00:00:00Z + + + PERMDELTA + 1 + + + 2012-10-01T00:00:00Z + + + + WINDMILL_FARM + WINDMILL + YES + YES + YES + + + 493.0 + WINDMILL + MARKERS + + + 52.4283333333333 -32.0886111111111 + 499 + + + + + + + markingICAOStandard + DESCRIPTION + + + Day and night marked. + + + + + + + group + DESCRIPTION + + + GROUP OF 3 + + + + + + + + + + + + + + e9ce3cc0-b41f-11e3-a5e2-0800200c9a66 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2014-03-25T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data; initially created by COMSOFT + (www.comsoft.aero); currently maintained by Eurocontrol. This feature demonstrates a + canceled commissioning. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + + 2012-10-01T05:31:00Z + + + PERMDELTA + 1 + + + 2012-10-01T05:31:00Z + + + + EADD_CRANE_3 + CRANE + YES + + + 85.0 + CRANE + NO + + + 52.3727777777778 -31.943 + 858 + + + + + + + WARNING + + + located at airport EADD + + + + + + + + horizontalProjectionlocation + REMARK + + + 250 FT EAST OF CONTROL TOWER + + + + + + + REMARK + + + 85 FT IS A MAXIMUM HEIGHT + + + + + + + + + + + PERMDELTA + 1 + 1 + + + + + + + + + + + + + + + + 8c755520-b42b-11e3-a5e2-0800400c9a66 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2014-03-25T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data; initially created by COMSOFT + (www.comsoft.aero); currently maintained by Eurocontrol. This feature demonstrates a + canceled decommissioning. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + + 2012-10-01T05:31:00Z + + + PERMDELTA + 1 + + + 2012-10-01T05:31:00Z + + + + EADD_CRANE_4 + CRANE + YES + + + 85.0 + CRANE + NO + + + 52.3727777777778 -31.9435 + 858 + + + + + + + WARNING + + + located at airport EADD + + + + + + + + horizontalProjectionlocation + REMARK + + + 150 FT EAST OF CONTROL TOWER + + + + + + + REMARK + + + 85 FT IS A MAXIMUM HEIGHT + + + + + + + + + + + + 2012-10-30T05:31:00Z + + + PERMDELTA + 2 + + + 2012-10-01T05:31:00Z + 2012-10-30T05:31:00Z + + + + + + + + + PERMDELTA + 2 + 1 + + + + + + + + 2012-11-01T15:30:00Z + + + PERMDELTA + 3 + YES + + + + + + + PERMDELTA + 3 + 1 + + + + + + + + 2012-11-30T05:31:00Z + + + PERMDELTA + 4 + + + 2012-10-01T05:31:00Z + 2012-11-30T05:31:00Z + + + + + + + + + + + + 8c755520-b42b-11e3-a5e2-0800500c9a66 + + + + utf8 + + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + + 2014-03-25T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + + Donlon sample data; initially created by COMSOFT + (www.comsoft.aero); currently maintained by Eurocontrol. This feature demonstrates + combinations of properties with schedules, PERMDELTAs and TEMPDELTAs. + + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + + To be used for demonstration purposes only! Any operational + usage is prohibited! + + + + + + eng + + + transportation + + + + + + + + + + + 2012-10-01T05:31:00Z + + + PERMDELTA + 1 + + + 2012-10-01T05:31:00Z + + + + EADD_CRANE_5 + CRANE + YES + + + + + UTC + ANY + 04:30 + 14:29 + NO + + + 85.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + UTC + ANY + 00:00 + 24:00 + NO + + + + + UTC + ANY + 04:30 + 14:29 + NO + YES + + + 0.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + + + + 2012-10-11T15:30:00Z + + + PERMDELTA + 2 + + + + + UTC + ANY + 04:30 + 17:29 + NO + + + 85.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + UTC + ANY + 00:00 + 24:00 + NO + + + + + UTC + ANY + 04:30 + 17:29 + NO + YES + + + 0.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + + + + 2012-11-01T15:30:00Z + + + PERMDELTA + 3 + + + + + UTC + ANY + 04:30 + 16:29 + NO + + + 85.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + UTC + ANY + 00:00 + 24:00 + NO + + + + + UTC + ANY + 04:30 + 16:29 + NO + YES + + + 0.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + + + + 2012-10-12T00:00:00Z + 2012-10-18T23:59:59Z + + + TEMPDELTA + 1 + NO + + + + + UTC + ANY + 00:00 + 24:00 + NO + + + 0.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + + + + 2012-10-12T00:00:00Z + 2012-10-19T23:59:59Z + + + TEMPDELTA + 1 + 1 + + + + + UTC + ANY + 00:00 + 24:00 + NO + + + 0.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + + + fdaeffb4-6897-41fb-a33d-8861c2e91e69 + + + + + + 2011-01-13T00:00:00Z + + + + BASELINE + 1 + 0 + + + 2002-11-30T00:00:00Z + + + + CTA + EAMM + MAGNETTO OCA + NO + + + BASE + 1 + + + + + FULL_GEOMETRY + + + + + + + + + + UNION + 2 + + + + + FULL_GEOMETRY + + + + + + + + + + + + + + 0df377fe-dd53-4d60-b6c4-6546ef31d26b + + + + + + 2013-09-19T00:00:00Z + + + + BASELINE + 1 + 0 + + + 2010-11-01T00:00:00Z + + + + PART + EAMM + MAGNETTO OCA PART 1 + NO + + + + + 460 + STD + 210 + STD + + + + + + + + + + + 51.99333333333333 -6.0005 + 52.45333333333333 -5.869333333333333 + 52.81666666666667 -5.89 + 53.53333333333333 -5.981666666666667 + 53.89333333333333 -5.937833333333333 + 53.905 -6.0038333333333334 + 53.916666666666664 -6.099333333333333 + + + + + + + + + + + + + + + + + + + + + + 010d8451-d751-4abb-9c71-f48ad024045b + + + + + + 2013-09-19T00:00:00Z + + + + BASELINE + 1 + 0 + + + 2010-11-01T00:00:00Z + + + + PART + EAMM2 + MAGNETTO OCA PART 2 + NO + + + + + 460 + STD + 210 + STD + + + + + + + + + + + 53.876666666666665 + -5.863333333333333 53.89333333333333 + -5.937833333333333 53.53333333333333 + -5.981666666666667 52.81666666666667 + -5.89 52.45333333333333 + -5.869333333333333 52.516666666666666 + -5.850666666666667 52.583333333333336 + -5.831666666666667 53.3 -5.755 53.7 + -5.786666666666667 53.718333333333334 + -5.8083333333333336 53.876666666666665 + -5.863333333333333 + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/test_base.py b/tests/test_base.py index a2c7b03..3efa46d 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -1,5 +1,6 @@ from pathlib import Path from unittest import TestCase + from aixm_geo.base import MultiPointAixm, SinglePointAixm from aixm_geo.factory import AixmFeatureFactory from aixm_geo.settings import NAMESPACES @@ -8,12 +9,13 @@ class TestSinglePointAixm(TestCase): def setUp(self) -> None: file_loc = Path().absolute().joinpath('..', Path('test_data/donlon.xml')) - features = AixmFeatureFactory(file_loc).root.findall('.//message:hasMember', NAMESPACES) - self.ah = SinglePointAixm(features[0]) + ah_feature = AixmFeatureFactory(file_loc).root.xpath("/message:AIXMBasicMessage/message:hasMember/aixm" + ":AirportHeliport", namespaces=NAMESPACES) + self.ah = SinglePointAixm(ah_feature[0]) def test_get_first_value(self): name = self.ah.get_first_value('.//aixm:name') - self.assertEqual('REPUBLIC OF DONLON', name) + self.assertEqual('DONLON/DOWNTOWN HELIPORT', name) self.assertNotEqual('RANDOM AIRPORT NAME', name) self.assertTrue(isinstance(name, str)) @@ -26,9 +28,24 @@ def test_get_first_value_attribute(self): self.assertTrue(isinstance(attribute, dict)) self.assertEqual('unknown', attribute['indeterminatePosition']) + def test_get_elevation(self): + elevation = self.ah.get_elevation() + self.assertEqual(elevation, (0.0, 'FT')) + self.assertNotEqual(elevation, (0.0, 'M')) + self.assertTrue(isinstance(elevation, tuple)) + class TestMultiPointAixm(TestCase): def setUp(self) -> None: file_loc = Path().absolute().joinpath('..', Path('test_data/donlon.xml')) - features = AixmFeatureFactory(file_loc).root.findall('.//message:hasMember', NAMESPACES) - self.airspace = MultiPointAixm(features[0]) + airspace_feature = AixmFeatureFactory(file_loc).root.xpath("/message:AIXMBasicMessage/message:hasMember/" + "aixm:Airspace", namespaces=NAMESPACES) + self.airspace = MultiPointAixm(airspace_feature[0]) + + def test_get_coordinate_list(self): + subroot = self.airspace._root.xpath('.//aixm:geometryComponent', namespaces=NAMESPACES) + coordinate_list = self.airspace.get_coordinate_list(subroot) + self.assertTrue(isinstance(coordinate_list, list)) + self.assertTrue(isinstance(coordinate_list[0], str)) + self.assertEqual(len(coordinate_list), 177) + self.assertNotEqual(len(coordinate_list), 0) diff --git a/tests/test_factory.py b/tests/test_factory.py index c231ccf..00e32eb 100644 --- a/tests/test_factory.py +++ b/tests/test_factory.py @@ -1,6 +1,8 @@ from pathlib import Path from unittest import TestCase + from lxml import etree + from aixm_geo.factory import AixmFeatureFactory From e5c56bc30172a49ab3fd04d91ac14c1768b7d207 Mon Sep 17 00:00:00 2001 From: Mark Henderson Date: Tue, 20 Jun 2023 17:53:54 +0100 Subject: [PATCH 2/3] Fixed test xml issue --- test_data/donlon.xml | 72078 +++++++++++++++++++---------------------- tests/test_base.py | 8 - 2 files changed, 33716 insertions(+), 38370 deletions(-) diff --git a/test_data/donlon.xml b/test_data/donlon.xml index 4a101d1..137a09d 100644 --- a/test_data/donlon.xml +++ b/test_data/donlon.xml @@ -1,38365 +1,33719 @@ - - - - -32.0886111111111 -47.0 - 57.690815969999996 52.4283333333333 - - - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially created by - Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational usage - is prohibited! - - - - - - eng - - - transportation - - - - - - - -47.0 - - - 52.4283333333333 - - - 57.690815969999996 - - - -32.0886111111111 - - - - - - - - - - - - 6384a4e0-8497-4f83-8eaa-d73ef549d90e - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - REPUBLIC OF DONLON - STATE - - - - - - - c225ae5c-540f-4a48-8867-809b393b2407 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - CIVIL AVIATION AUTHORITY - NTL_AUTH - - - OWNED_BY - - - - - - - - - - 1e1bdf59-3dd6-4f96-9166-e6095e7231fc - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - DONLON - NTL_AUTH - - - - - - - 74efb6ba-a52a-46c0-a16b-03860d356882 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - DONLON_HELIPORT_AUTHORITY - NTL_AUTH - - - - - - - b6df119e-cc7c-48cc-9575-c4160c64d733 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - HOL - 01-01 - NEWYEARSDAY - - - - - - - - 4d0ecbdb-4cba-4047-8351-29283adf67c7 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2014-01-01T00:00:00Z - 2014-12-31T23:59:59Z - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - HOL - 17-04 - 2014 - MAUNDYTHURSDAY - - - - - - - - 2015-01-01T00:00:00Z - 2015-12-31T23:59:59Z - - - BASELINE - 2 - - - 2009-01-01T00:00:00Z - - - - HOL - 02-04 - 2015 - MAUNDYTHURSDAY - - - - - - - - 20f19a35-401b-45a6-a54e-084122a4cf80 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2014-01-01T00:00:00Z - 2014-12-31T23:59:59Z - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - HOL - 18-04 - 2014 - GOODFRIDAY - - - - - - - - 2015-01-01T00:00:00Z - 2015-12-31T23:59:59Z - - - BASELINE - 2 - - - 2009-01-01T00:00:00Z - - - - HOL - 03-04 - 2015 - GOODFRIDAY - - - - - - - - 39755baa-4c27-4c9f-b08c-df05cff2fb09 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2014-01-01T00:00:00Z - 2014-12-31T23:59:59Z - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - HOL - 21-04 - 2014 - EASTERMONDAY - - - - - - - - 2015-01-01T00:00:00Z - 2015-12-31T23:59:59Z - - - BASELINE - 2 - - - 2009-01-01T00:00:00Z - - - - HOL - 06-04 - 2015 - EASTERMONDAY - - - - - - - - 02e42ef0-7be7-4c60-b8d9-790b79fa3839 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - IF - 1829 - ABOVE_LOWER - - - - - - - 6c8b3cb4-c0fe-4afd-ac63-cb2a9060db73 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TRID - - - - - - - - - - - - - - 9c6a4679-14f3-4ffb-a2bc-2d43f81722b6 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 3a17efd0-adfe-4899-9d4c-5b8ac591645b - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 1a6f046a-e7aa-44e8-9712-aaaf89921734 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 5a99887d-ab43-4163-95a4-b9699c651d98 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - d9d27801-b6ae-4508-a27e-bf55da19fd35 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 1829 - ABOVE_LOWER - - - - - - - 6a2f2658-bba5-49e0-bdc5-9b31aa1e1dbf - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TSI - - - - - - - - - - - - - - - - - - - - - - - - - - - - EKCOMBE - - - - - - - 1c7a5f5d-f4fe-49da-8746-5112d62a4a04 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - IF - 277.0 - TRUE_BRG - 5556.0 - 914.4 - ABOVE_LOWER - - - - - - - 63dae92f-2014-42ca-a83f-73cefcec03e8 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TF - 229.0 - TRUE_BRG - LEFT - 7408.0 - - - - - - - 077bc42e-c2f2-40fc-8a84-b4f2eaaae0bc - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TF - 184.0 - TRUE_BRG - LEFT - 3704.0 - - - - - - - 4fc8c993-ba3e-4513-be88-d379e3c45fe6 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TF - 184.0 - TRUE_BRG - 5741.2 - 914.4 - AS_ASSIGNED - - - - - - - d34158b7-1755-4fa3-a197-5b266698f5b6 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - CF - 184.0 - TRUE_BRG - 4074.4000000000005 - - - - - - - a80b3299-65e5-4f4b-9067-30f282cbb1bc - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - CF - 184.0 - TRUE_BRG - 7408.0 - 399.3 - ABOVE_LOWER - - - - - - - 436adbb9-1838-4bc7-945a-e421100f7dcb - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - CF - 184.0 - TRUE_BRG - 9630.4 - AS_ASSIGNED - - - - - - - c8d2e419-6159-4693-b465-d96a063fa648 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - FM - AS_ASSIGNED - - - - - - - 1a24b3c6-2183-4a01-ad8d-10227fd06931 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TRID - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 231a7794-c9bd-4e9e-a5d1-03f1c1f1687c - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 184.0 - TRUE_BRG - 4630.0 - - - - - - - 754e335c-75ec-4ef4-941d-97fe4581063a - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 119.0 - TRUE_BRG - RIGHT - - - - - - - ed85c0e6-2461-43d8-aca2-39d6afb254e7 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 5741.2 - - - - - - - c1ee96e8-a60c-4e27-9c79-3c9853aa495d - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 1829 - ABOVE_LOWER - - - - - - - 2d6916fc-c635-4ad7-8275-3e0eab65104b - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TSI - - - - - - - - - - - - - - - - - - - - - - - EKCOMB2 - - - - - - - 970f9309-8a52-45c0-b59e-f5ab4a51ef6f - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - d0f4a733-1c13-4764-b488-caae38794349 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 62800d25-a0e8-4915-8bac-fa4eeb437d5e - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - ba6478ff-50bb-4ccb-8bfd-4e4865709823 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 481c1844-4dfd-4d7a-ae94-41027db0a20a - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - d0d29c8d-90e3-44b6-80d0-96530d38bde5 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 8123f5af-b083-41f9-a2fa-6384adef1bdf - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - e99f36b1-6441-4791-a542-d1312b995d79 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - b7fdc9e9-a77b-4db6-b781-9587b7e7407a - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 1c4c9451-bf5a-4ae0-a973-b534f96b2409 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - b19105a1-f1ce-4577-b26b-ce27f6103087 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 0c208527-6f3e-4185-aa2b-149c03f52127 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TRID - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EKCOMBE - - - - - - - ddbc225d-4f2d-4612-9cde-8671aba24f93 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - RIGHT - - - - - - - 50f3ef75-fe6c-4d4d-8ec2-110c8d4ce106 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TSI - - - - - - - - AROMN8S - - - - - - - 58df8a48-2818-47c2-a291-cd7d9a1242d3 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - IF - 116.0 - TRUE_BRG - 7408.0 - 609.6 - ABOVE_LOWER - - - - - - - edac6cc2-c577-4ba8-a21d-e476c21bd71e - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TF - 93.0 - TRUE_BRG - LEFT - 4444.8 - - - - - - - ef0524c1-a599-4ea3-a43f-5cde190c3271 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TF - 59.0 - TRUE_BRG - LEFT - 5556.0 - - - - - - - 17d08aa6-90b8-4cf4-9175-54e192a525bb - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - FA - 59.0 - TRUE_BRG - 4259.599999999999 - 609.6 - AS_ASSIGNED - - - - - - - 2e083f81-e4b2-4c1b-8eaa-e00165357435 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - CF - 59.0 - TRUE_BRG - 7222.8 - 388.62 - AS_ASSIGNED - - - - - - - 270bdaca-566e-4651-bf90-12625c23188e - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - CF - 59.0 - TRUE_BRG - 362.712 - 609.6 - AS_ASSIGNED - - - - - - - cb2f3317-b447-4b9f-b325-246be839c3f9 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - FM - AS_ASSIGNED - - - - - - - c12b5014-444f-46da-8b25-c27d3c27f6cd - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TRID - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - f739ae66-baef-4bb6-b29a-7108eccf2d59 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - 202df567-8449-4342-adf7-43bca6fc7b87 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - TRID - - - - - - - - NOTMA4B - - - - - - - a14a8751-5428-46bc-a2d1-32ef84d37b5c - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - U - A - 4 - ATS - BOTH - - - DESCRIPTION - - - BARIM TO VEGAT - - - - - - - - - - - 9e51668f-bf8a-4f5b-ba6e-27087972b9b8 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 09L/27R - 2800.0 - 45.0 - 2920.0 - 300.0 - - - CONC - - - - - - - - - - c8455a6b-9319-4bb7-b797-08e644342d64 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 09L - 85.2300033569336 - - - - - - - - 2012-11-22T22:00:00Z - 2012-11-23T04:00:00Z - - - TEMPDELTA - 1 - - - CLOSED - - - - - - - - - b802d439-e9f3-49f9-96e1-0153b837e113 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 27R - 265.2300109863281 - 20.5 - - - - - - - - 2012-11-22T22:00:00Z - 2012-11-23T04:00:00Z - - - TEMPDELTA - 1 - - - CLOSED - - - - - - - - - e23b1f2b-b2fc-432e-a378-199ccacabe24 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - A - PARALLEL - 23.0 - - - CONC - - - - - - - - - - f16bf89e-aae9-45f7-b630-035c4f81e297 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - B - GND - 23.0 - - - CONC - - - - - - - - - - b7a01065-6ac3-462a-a27d-dc219d980f9f - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - C - FASTEXIT - 23.0 - - - CONC - - - - - - - - - - 0d466e77-319d-4371-87ef-dd02053d7a4d - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - D - EXIT - 23.0 - - - CONC - - - - - - - - - - 9dcbb852-1c24-4ded-80a8-e7456f95ccc8 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - E - PARALLEL - 23.0 - - - CONC - - - - - - - - - - 0cb4da5a-9c98-4484-92ed-edc336b8b437 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - F - GND - 23.0 - - - CONC - - - - - - - - - - 3079c4fc-e4e3-42ec-a180-7e902cb88334 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - G - GND - 23.0 - - - CONC - - - - - - - - - - 0dac7a5f-4cb6-41a2-b0eb-dac1c555351c - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - APRON - - - - - - - - 92cacc21-86bb-4050-aae9-a54e1fccbff1 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - - 1e22a662-0601-43cc-a7ef-8402885a4f2f - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - FATO - FATO - 20.0 - 20.0 - - - CONC - GOOD - - - - - - - - - - 921966d2-bae8-4b4b-bc8a-8012faf991be - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - FATO 03 - 27.329999923706055 - - - - - - - - b9fad726-bed6-4b3b-a92f-64706eaa9ed5 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - FATO 21 - 207.3300018310547 - - - - - - - - 89d085f7-4b68-4e07-9b52-5aabd5f410f3 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - SEPARATED - - - - - - - - - 080c39f8-3e90-44de-bb57-e0abcc0e4b50 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - Trucks 1.5-3.5 tonnes. Up to 10 tonnes handling possible. - - - - - - - - - - - - - 89f1b92f-afd5-4ab1-808e-353446a20b6e - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - Jet A1, AVTUR, AVGAS 100 LL, oil, all types normally - available. - 1 truck 45 000 litres, 50 litres/sec - - - - - - - - - PISTON - - - - - AVIA - - - - - - - - - HYDRAULIC - - - - - HYD - - - - - - - - - TURBO - - - - - TURBO - - - - - - - - - NG - - - - - OX - - - - - - - - - 53bf0a9c-c218-4928-ac31-201af9b80593 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - Available. See AD chart for location. - - - - - - - - - - - - a9d815f8-aed5-482d-ac39-dbdf9d293d02 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - Limited, by prior arrangement only - - - - - - - - - - - - a28a2b0e-3d03-42f4-8b49-ce7b22f9a258 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - Available for aircraft up to 5 700 KG. Major repairs by - arrangement. - - - - - - - - - - - - - 46da4772-4a5e-4e64-ab60-04e803c068bc - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - ANY - 06:00 - 23:00 - - - - - - - Within AD HR - - - - - NORMAL - - - - - - - Rescue equipment : 2 boats of 40 persons - Capability for removal of disabled aircraft : Lifting bags and hydraulic jacks - available - - - - - - - A7 - - - - - - - c1bbe653-e5b1-4bfe-b510-3ada3272305a - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - DONLONRCC - RCC - YES - - - - - - "134 Airport Road" - DONLON - 1 - DONLON - - - - - AFTN - EADDYCYX - - - - - 01236979111 - 01236979112 - - - - - - - - - - - 8323cd6d-f788-4b78-8f93-2a09a70965fb - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - AKVINSAR - SAR - YES - - - 52.618333333 -32.919999999 - 15.0 - - - - - - OWNER - - - - - - - - - - 9d169b60-b5fa-4bf4-abf3-14fd9e67a2b7 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ALL - YES - DONLONAKVINSARS - - SAR - - - - - - - d54e1d65-fefe-4776-891c-2b0e9d74c020 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ALL - YES - DONLONRCCSERVICE - - RCC - - - - - - - 306eff59-8985-488a-ad5b-24a8c13dc17e - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ALL - YES - YES - SMGCS - - - - - - - - 6c7b0abc-0a29-4a53-a5b9-9f3791119cf5 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ALL - YES - DONLONATMS - CLEARANCE - - - - - - - 590950fd-4126-46b7-b245-5944d1362c17 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 87.0 - - - - - - - - 7d6ef61e-83b4-4902-a79e-3248a5bd2935 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - White omnidirectional edge lights at intervals of 12.5 M - - - - - - 12.5 - - - - - - - - 60b87049-5ff7-4d23-917d-88938128e2d3 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - Yellow floodlights at the edge of TLOF at intervals of 5 M - - - - - - 5.0 - - - - - - - - e9350d29-9b29-450e-80af-a1666665ddc3 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - WHITE - - - - - White omnidirectional edge lights at intervals of 12.5 M - - - - - - - - - - - - - 2e7650ef-e19f-47ee-b6f8-2866f536f5d2 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - WHITE - - - - - White omnidirectional edge lights at intervals of 12.5 M - - - - - - - - - - - - - 374cc5b1-ecb9-41c6-bb2e-175e4a38d475 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIM - 600.0 - - - - - - - - 05e2e8d4-93d6-479e-887c-a92bc9485890 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIH - 900.0 - - - - - - - - 46e02ef7-9a57-4951-b26e-c3fb1dcaefbc - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - - 16630bd9-31d6-498a-be44-5cdccb572e94 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - - - - - - f7e4b6b4-5ec1-48ac-a328-6dd296a1b244 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - GREEN - CL - - - - - - - - 2cde2811-0b8e-486d-99f5-231d5d9f8df6 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - GREEN - CL - - - - - - - - d1322326-c872-4882-b2cb-ef97ca26977e - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - GREEN - CL - - - - - - - - 980391ed-a43e-401c-a0f1-c0e91c55f6fb - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - GREEN - CL - - - - - - - - 859fb5fd-3241-434e-92ad-dd45152a1902 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BLUE - EDGE - - - - - - - - ecac1a3f-56a4-49b5-960e-010e62fdf6cb - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BLUE - EDGE - - - - - - - - ef878bde-177e-44f3-b1ee-51a4b1c4b95b - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BLUE - EDGE - - - - - - - - a15a6a50-8fa5-4190-9306-1901efad0d18 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BLUE - CL - - - - - - - - 3759baea-683f-4f2f-a732-c7e57adb194a - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIH - WHITE - CL - - - - - - - - 3d619d5f-db7b-490f-8e31-08ac1a3bf2c6 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIH - WHITE - - - - - 2 800 M, 7.5 M - White; - FM 1 900 M- - 2 500 M - Red/White; - FM 2 500 M - Red; LIH - - - - - - CL - - - - - - - - 10ef9ced-a722-43d2-8be9-441b8a990181 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - WHITE - - - - - - - - 0373b89a-697f-42c9-bda5-c536c7aed15a - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OTHER:CYAN - - - - - - - - 5677508e-6e87-437b-85ed-d21e1325f117 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIH - WHITE - - - - - - - - 81604812-820c-4006-be6e-3662c8be416d - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIH - WHITE - - - - - - - - 02573093-d850-4bd9-9e82-aacd57bdd91b - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIM - WHITE - - - - - - - - 8612257e-cedb-4d5c-a258-34f854429e52 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LIM - WHITE - - - - - - - - d532589a-7108-4d48-b3c9-f37abd2590c9 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - RED - - - - - - - - dd062d88-3e64-4a5d-bebd-89476db9ebea - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - 0 - - - 2009-01-01T00:00:00Z - - - - EADH - DONLON/DOWNTOWN HELIPORT - -3.0 - 1990 - 0.03 - - - OPERATE - - - - - - 52.288888888888884 -32.035 - 18.0 - - - - - - - - - 1b54b2d6-a5ff-4e57-94c2-f4047a381c64 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - 0 - - - 2009-01-01T00:00:00Z - - - - EADD - DONLON - -3.0 - 1990 - -0.03 - 21.0 - - - DONLON - - - - - OPERATE - - - - - - 52.3716666666667 -31.9494444444444 - 30.0 - 12.0 - - - - - - - UTC - WORK_DAY - 06:00 - 20:00 - YES - - - - - UTC - SAT - 07:00 - 20:00 - YES - - - - - UTC - SUN - 07:00 - 20:00 - YES - - - - - UTC - HOL - 07:00 - 20:00 - YES - - - - NORMAL - - - - PERMIT - - - OR - - - IFR - - - - - VFR - - - - - - - - - - - - - UTC - ANY - 20:00 - 24:00 - YES - - - - - UTC - ANY - 00:00 - 06:00 - YES - - - - - UTC - SAT - 06:00 - 07:00 - YES - - - - - UTC - SUN - 06:00 - 07:00 - YES - - - - - UTC - HOL - 06:00 - 07:00 - YES - - - NORMAL - - - FORBID - ALL - - - - - - - - - - - 2012-12-22T00:00:00Z - 2012-12-22T01:00:00Z - - - TEMPDELTA - 1 - - - - - operationalStatus - REMARK - - - DUE TO WX BELOW MIN VIS 4000 M - - - - - CLOSED - - - PERMIT - - - - - IFR - - - - - - - - - - - - - - - - - - - - 238b5482-8fa0-4169-a745-686c1ca44421 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - NO - LIH - BLUE - - - PINK - LIH - FLOOD - - - - - PINK - LIH - FLOOD - - - - - PINK - LIH - FLOOD - - - - - PINK - LIH - FLOOD - - - EDGE - - - - - - - - 68655945-0f02-47a9-b300-87420ecff373 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - NO - LIL_LIH - PINK - - - PINK - LIL_LIH - STROBE - - - - - PINK - LIL_LIH - STROBE - - - - - PINK - LIL_LIH - STROBE - - - EDGE - - - - - - - - 484494d4-a3e9-4b60-8306-ebfaa78bf7d8 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - NO - LIM - GREEN - EDGE - - - - - - - - 08a1bbd5-ea70-4fe3-836a-ea9686349495 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VOR_DME - BOR - BOORSPIJK - - - 1 - - - - - - 1 - - - - - - 52.36833333333333 -32.375 - 30.0 - - - - - - - - - 2012-10-07T07:00:00Z - 2012-10-07T14:00:00Z - - - TEMPDELTA - 1 - - - UNSERVICEABLE - - - - - - - - - 7692166e-60e6-467d-b5f0-c728aeae85d6 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BOR - BOORSPIJK - - - 52.36833333333333 -32.375 - 30.0 - - - - - - - - 102X - - - - - - - 2012-10-07T07:00:00Z - 2012-10-07T14:00:00Z - - - TEMPDELTA - 1 - - - UNSERVICEABLE - - - - - availability - REMARK - - - DUE TO MAINT. FALSE INDICATIONS POSSIBLE - - - - - - - - - - - - - - - - 0a45a38f-0f96-4ace-b09e-310ac0415693 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BOR - BOORSPIJK - - - 52.36833333333333 -32.375 - 30.0 - - - - - - - - 115.5 - - - - - - - 2012-10-07T07:00:00Z - 2012-10-07T14:00:00Z - - - TEMPDELTA - 1 - - - UNSERVICEABLE - - - - - availability - REMARK - - - DUE TO MAINT. FALSE INDICATIONS POSSIBLE - - - - - - - - - - - - - - - - 51829538-2d2a-4d01-a4bf-87c045d247a8 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VOR_DME - DON - DONLON - - - 1 - - - - - - 1 - - - - - - 52.44333333333333 -32.00083333333333 - 60.0 - - - - - - - - - 8979e959-492b-4b30-83d2-060f362cf5c4 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - DON - DONLON - - - 52.44333333333333 -32.00083333333333 - 60.0 - - - - - - - - 111X - - - - - - - ea10d605-5497-42ee-9d85-a0e5f80f9b26 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - DON - DONLON - -3.0 - 1990 - - - 52.44333333333333 -32.00083333333333 - 60.0 - - - - - - - - VOR - 116.4 - - - - - - - a9c3240c-e2c9-4f9a-a573-9da452cfe84f - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LOC - KL - DONLON - - - 1 - - - - - - 52.38366666666666 -31.85063888888889 - 0.0 - - - - - - - - - 577cb727-cef0-487b-bb5f-10882677a989 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - KL - DONLON - - - 52.38366666666666 -31.85063888888889 - 0.0 - - - - - - - - 411.0 - - - - - - - 92d527c0-ae96-4695-8d0a-9b43edbc4fe6 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VOR - CAA - CALGA - - - 1 - - - - - - 52.38177777777778 -31.743361111111113 - 30.0 - - - - - - - - - b5d16d67-8e4f-4ec8-9572-003e3e58424a - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - CAA - CALGA - -3.0 - 1990 - - - 52.38177777777778 -31.743361111111113 - 30.0 - - - - - - - - VOR - 114.3 - - - - - - - cc271a99-e28c-49e6-86ac-53078e6e59e3 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VOR - EKO - EKCOMBE_VOR - - - 1 - - - - - - 47.1366666666667 -28.6416666666667 - 0.0 - - - - - - - - - 8506a23a-4a97-42fe-bddd-d23b00c2f61c - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - EKO - EKCOMBE_VOR - - - 47.1366666666667 -28.6416666666667 - 0.0 - - - - - - - - VOR - 1120.3 - - - - - - - 3afcdd1d-1ca4-4667-95af-1725ca17a70f - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VOR - LMD - LIMAD_VOR - - - 1 - - - - - - 48.8 -23.2166666666667 - 0.0 - - - - - - - - - 9cd3112a-2aaf-48c3-a01a-59699b4af6e2 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - LMD - LIMAD_VOR - - - 48.8 -23.2166666666667 - 0.0 - - - - - - - - VOR - 432.1 - - - - - - - 882e849c-682d-4e95-ac19-a7808d55cdbb - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VOR - WOB - WOBAN_VOR - - - 1 - - - - - - 42.675 -36.17333333333333 - 150.0 - - - - - - - - - fbe82608-bece-4db7-a13b-961963e1b167 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - WOB - WOBAN_VOR - - - 42.675 -36.17333333333333 - 150.0 - - - - - - - - VOR - 123.4 - - - - - - - 6237f900-1320-4f01-95ec-8378ebc26e9f - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VOR - KAV - KAVRAN - - - 1 - - - - - - 52.53841666666666 -31.920166666666667 - 0.0 - - - - - - - - - 13fe226f-271c-4d36-9f42-190563a963de - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - KAV - KAVRAN - -3.0 - 1990 - - - 52.53841666666666 -31.920166666666667 - 0.0 - - - - - - - - VOR - 115.0 - - - - - - - 4316fc95-f2f7-4789-a249-3afc0b5cc27a - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TACAN - OST - OSTO - - - 1 - - - - - - 52.51077777777778 -33.511361111111113 - 15.0 - - - - - - - - - 3e33bd78-0b9c-4d27-9060-901fcb02fa47 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OST - OSTO - -3.0 - 1990 - - - 52.51077777777778 -33.511361111111113 - 15.0 - - - - - - - - 119X - - - - - - - 0f276f15-a407-4ff5-9e51-8522493de27b - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - MKR - OM27 - OM27 - - - 1 - - - - - - 52.38366944444444 -31.850661111111112 - 0 - - - - - - - - - 268cd014-b4e4-41fa-8d90-422c3dbb96b4 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OM27 - OM27 - A3H - NO - YES - FAN - 75 - -.--....----... - - - - - - - 4fd9f4be-8c65-43f6-b083-3ced9a4b2a7f - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - R - ACR001 - - - - - 300000.0 - - - - - 47.4 -41.6 47.45384232494095 -41.49475160936019 - 47.507587336034945 -41.389288333791846 47.56123465591919 - -41.28360971835344 47.61478390603749 -41.17771531001795 - 47.66823470664122 -41.07160465771256 47.72158667679048 - -40.96527731235865 47.774839434355215 -40.85873282691222 - 47.827992596016486 -40.751970756404575 47.8810457772679 - -40.644990657983485 47.93399859241693 -40.53779209095458 - 47.98685065458652 -40.43037461682318 48.03960157571668 - -40.322737799336444 48.092250966566205 -40.21488120452591 - 48.14479843671447 -40.106804400750356 48.19724359456332 - -39.99850695873905 48.24958604733906 -39.88998845163533 - 48.30182540109455 -39.78124845504057 48.353961260711415 - -39.67228654705846 48.40599322990225 -39.563102308339744 - 48.45792091121308 -39.45369532212715 48.509743906025776 - -39.34406517430085 48.56146181456067 -39.23421145342419 - 48.61307423587926 -39.12413375078974 48.664580767886925 - -39.01383166046581 48.715981007335934 -38.90330477934326 - 48.767274549828294 -38.792552707182615 48.81846098981899 - -38.68157504666165 48.86953992061912 -38.57037140342325 - 48.920510934399246 -38.45894138612364 48.97137362219286 - -38.34728460648098 49.02212757389982 -38.23540067932431 - 49.07277237829018 -38.12328922264282 49.12330762300779 - -38.01094985763554 49.17373289457428 -37.8983822087613 - 49.22404777839308 -37.78558590378909 49.27425185875347 - -37.67256057384874 49.32434471883489 -37.55930585348196 - 49.374325940711245 -37.44582138069373 49.424195105355444 - -37.33210679700403 49.47395179264396 -37.21816174749987 - 49.52359558136158 -37.103985880887755 49.57312604920629 - -36.98957884954638 49.622542772794155 -36.874940309579756 - 49.671845327664535 -36.76006992087058 49.721033288285305 - -36.64496734713401 49.770106228058125 -36.52963225597177 - 49.819063719324085 -36.41406431892649 49.86790533336919 - -36.298263211536515 49.9166306404302 -36.182228613390905 - 49.965239209700556 -36.065960208184826 50.01373060933631 - -35.94945768377528 50.062104406462375 -35.832720732237064 - 50.110360167178825 -35.71574904991913 50.15849745656729 - -35.598542337501215 50.2065158386976 -35.48110030005075 - 50.25441487663447 -35.36342264708014 50.30219413244438 - -35.2455090926043 50.3498531672026 -35.12735935519847 - 50.39739154100035 -35.008973158056385 50.444808812952104 - -34.890350229048664 50.492104541203005 -34.77149030078155 - 50.5392782829365 -34.652393110655865 50.586329594382114 - -34.53305840092631 50.63325803082326 -34.413485918761005 - 50.680063146605434 -34.29367541630127 50.72674449514424 - -34.173626650721744 50.77330162893392 -34.05333938429069 - 50.81973409955575 -33.93281338443062 50.86604145768678 - -33.8120484237791 50.91222325310859 -33.6910442802499 - 50.95827903471638 -33.569800737094255 51.004208350527975 - -33.44831758296253 51.05001074769331 -33.326594611965916 - 51.09568577250368 -33.20463162373854 51.14123297040161 - -33.0824284234997 51.186651885990415 -32.95998482211628 - 51.23194206304433 -32.83730063616548 51.277103044518526 - -32.71437568799767 51.3221343725595 -32.59120980579946 - 51.367035588515435 -32.46780282365696 51.41180623294689 - -32.344154581619236 51.45644584563755 -32.22026492576195 - 51.50095396560524 -32.09613370825113 51.54533013111303 - -31.971760787407153 51.589573879680565 -31.847146027768858 - 51.63368474809549 -31.72228930015781 51.67766227242523 - -31.59719048174273 51.721505988028696 -31.471849456104042 - 51.76521542956835 -31.346266113298544 51.808790131022405 - -31.220440349924218 51.85222962569715 -31.09437206918514 - 51.8955334462395 -30.96806118095649 51.93870112464975 - -30.84150760184969 51.98173219229441 -30.7147112552776 - 52.02462617991936 -30.58767207151979 52.06738261766305 - -30.460389987787917 52.11000103506997 -30.332864948291146 - 52.15248096110429 -30.205096904301627 52.19482192416363 - -30.077085814219984 52.23702345209308 -29.948831643640943 - 52.27908507220185 -29.82033436541126 52.321006311267816 - -29.691593959725534 52.36278669556666 -29.562610414146814 - 52.40442575087698 -29.433383723702036 52.44592300249762 - -29.3039138909402 52.48727797526267 -29.174200925997965 - 52.52849019355688 -29.044244846665194 52.5695591813311 - -28.91404567845041 52.610484462117945 -28.783603454646318 - 52.651265559047694 -28.65291821639514 52.69190199486429 - -28.521990012753967 52.73239329194163 -28.390818900759925 - 52.772738972299955 -28.259404945495397 52.81293855762252 - -28.127748220152966 52.85299156927237 -27.995848806100348 - 52.89289752830936 -27.863706792945187 52.932655955507315 - -27.731322278599677 52.97226637137147 -27.59869536934501 - 53.011728296156015 -27.46582617989572 53.05104124988186 - -27.33271483346383 53.090204752354616 -27.199361461822757 - 53.12921832318271 -27.065766205371066 53.168081481795745 - -26.93192921319601 53.20679374746309 -26.79785064313682 - 53.24535463931244 -26.663530661847737 53.283763676348954 - -26.528969444860838 53.322020377474175 -26.394167176648583 - 53.36012426150543 -26.25912405068602 53.398074847195254 - -26.12384026951278 53.43587165325112 -25.988316044794722 - 53.4735141983553 -25.852551597385265 53.511002001184856 - -25.716547157386373 53.54833458043196 -25.5803029642092 - 53.585511454824314 -25.44381926663437 53.62253214314575 - -25.307096322871914 53.65939616425702 -25.170134400620718 - 53.696103037116856 -25.032933777127717 53.73265228080311 - -24.89549473924649 53.769043414534124 -24.757817583495584 - 53.80527595769029 -24.619902616116274 53.84134942983582 - -24.481750153129905 53.87726335074059 -24.34336052039477 - 53.913017240402304 -24.204734053662445 53.948610619068795 - -24.06587109863366 53.98404300726045 -23.926772011013593 - 54.019313925792865 -23.78743715656669 54.05442289579969 - -23.647866911170894 54.089369438755625 -23.50806166087126 - 54.12415307649958 -23.368021801933086 54.15877333125809 - -23.227747740894305 54.19322972566877 -23.087239894617397 - 54.22752178280409 -22.946498690340576 54.261649026195194 - -22.805524565728348 54.29561097985598 -22.664317968921402 - 54.32940716830732 -22.52287935858585 54.36303711660141 - -22.381209203961685 54.39650035034637 -22.239307984910656 - 54.42979639573092 -22.097176191963257 54.462924779549255 - -21.954814326365096 54.49588502922611 -21.812222900122446 - 54.52867667284198 -21.669402436046983 54.56129923915839 - -21.52635346779982 54.59375225764349 -21.383076539934635 - 54.626035258497694 -21.239572207940018 54.658147772679506 - -21.095841038280955 54.69008933193147 -20.951883608439474 - 54.72185946880631 -20.80770050695437 54.7534577166932 - -20.663292333460095 54.78488360984412 -20.51865969872466 - 54.816136683400494 -20.373803224686686 54.8472164734198 - -20.228723544491462 54.87812251690245 -20.083421302526027 - 54.90885435181869 -19.93789715445336 54.939411517135795 - -19.792151767245507 54.96979355284519 -19.64618581921565 55.0 - -19.5 - - - - - - - - - - - - - - - - 2012-07-10T07:00:00Z - 2012-07-10T07:16:00Z - - - TEMPDELTA - 1 - - - EXERCISE - ACTIVE - - - CEILING - FLOOR - - - - - - - activation - REMARK - - - FOR FURTHER INFORMATION PLEASE CONTACT DONLON ACC ON PHONE (12)123 45 - 67 - - - - - - - - - - - - - - - - - f4d5e4d4-d84a-481f-b9e3-b359e42c0dff - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - FIR - AMSWELL - AMSWELL FIR - - - - - UNL - GND - - - - - - - - - - - 57.0833333333333 -40.0 52.85 - -41.7833333333333 48.4666666666667 - -41.3333333333333 44.0333333333333 -40.0 - 42.6 -37.0 40.7333333333333 - -37.1833333333333 41.4 -30.05 - 43.5166666666667 -21.1333333333333 - 56.6666666666667 -21.1333333333333 - 57.0833333333333 -40.0 - - - - - - - - - - - - - - - - - - - - - - cc9c7cc4-e000-4741-854d-b7d93973e099 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - UPPER - 450 - STD - 195 - STD - GDS - 69.3 - - - COMPULSORY - - - - - - - - - 42.5016666666667 -37.0016666666667 42.675 -36.1733333333333 - - - - - - - - COMPULSORY - - - - - - - - - - bc430a08-bb5d-48dd-8ef0-85ff50dcfb9d - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - UPPER - 450 - STD - 195 - STD - GDS - 771.5999755859375 - - - COMPULSORY - - - - - - - - - 42.675 -36.1733333333333 47.1366666666667 -28.6416666666667 - - - - - - - - COMPULSORY - - - - - - - - - - bfca2bc3-5562-4ec4-b199-f0377c93c04e - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - UPPER - 450 - STD - 195 - STD - GDS - 446.0 - - - COMPULSORY - - - - - - - - - 47.1366666666667 -28.6416666666667 48.8 -23.2166666666667 - - - - - - - COMPULSORY - - - - - - - - - - 122f61c4-2704-494f-8ad7-45e2f8adc603 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - UPPER - 450 - STD - 195 - STD - GDS - 163.1999969482422 - - - COMPULSORY - - - - - - - - - 48.8 -23.2166666666667 49.3583333333333 -21.1333333333333 - - - - - - - COMPULSORY - - - - - - - - - - 81e47548-9f00-4970-b641-8ff8f99098a5 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TEMPO - ICAO - TEMPO - - - 56.84 -29.860000000000003 - - - - - - - - - 9fcb360c-6933-46d6-9c85-a337202efe70 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ABOLA - ICAO - ABOLA - - - 45.71 -35.169999999999995 - - - - - - - - - 363838d8-edcc-4085-a608-96b45ceef14e - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ATLIM - ICAO - ATLIM - - - 54.718333333333334 -47.0 - - - - - - - - - c3bf8394-4d5f-4b42-ba87-67563df97555 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - UKORO - ICAO - UKORO - - - 40.92333333333333 -36.81333333333333 - - - - - - - - - 26009f76-2e05-418d-a631-bec02f84ac5b - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - VEGAT - ICAO - VEGAT - - - 49.3583333333333 -21.1333333333333 - - - - - - - - - 7f443c8b-d407-4c41-aa9f-1d56a688a432 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - EBOTO - ICAO - EBOTO - - - 42.501666666666665 -26.015 - - - - - - - - - bb9dcfb3-f45a-40f3-8852-fca1349801fc - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BARIM - ICAO - BARIM - - - 42.5016666666667 -37.0016666666667 - - - - - - - - - fe3bbf89-9a15-49e4-b987-f7225b7484bb - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - SANOK - ICAO - SANOK - - - 41.413333333333334 -30.051666666666666 - - - - - - - - - 95638d5c-367f-4a6d-829c-f1e58245961f - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ODMUS - ICAO - ODMUS - - - 49.358333333333334 -20.15 - - - - - - - - - b35409d8-f236-4303-a12d-795e9e9c8759 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ILURU - ICAO - ILURU - - - 50.019999999999996 -41.61333333333334 - - - - - - - - - 6118ba76-0d46-4ba7-af63-17f29755e890 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - REPUBLICOFDONLON - STATE - - - - - 49.96666666666667 -31.383333333333333 51.125 -31.388333333333332 - 51.17111111111111 -31.394444444444446 51.18805555555555 -31.403888888888886 - 51.198055555555555 -31.40833333333333 51.2075 -31.410833333333333 - 51.21666666666667 -31.413055555555555 51.21944444444445 -31.41333333333333 - 51.22638888888889 -31.41472222222222 51.23583333333333 -31.419444444444444 51.24 - -31.42361111111111 51.243611111111115 -31.427222222222223 51.24805555555556 - -31.429722222222225 51.25416666666667 -31.42777777777778 51.25972222222222 - -31.424166666666668 51.265277777777776 -31.421944444444446 51.27111111111111 - -31.420833333333334 51.27583333333333 -31.422222222222224 51.28388888888889 - -31.426944444444445 51.288333333333334 -31.43111111111111 51.29666666666667 - -31.433888888888887 51.30361111111111 -31.435555555555556 51.31472222222222 - -31.43638888888889 51.34055555555556 -31.43777777777778 51.34638888888889 - -31.436944444444446 51.355555555555554 -31.43277777777778 51.36555555555556 - -31.432222222222222 51.38638888888889 -31.43777777777778 51.39055555555556 - -31.441666666666666 51.39555555555555 -31.445555555555554 51.39972222222222 - -31.452777777777776 51.408055555555556 -31.458055555555553 51.41027777777778 - -31.4575 51.41222222222222 -31.454444444444444 51.413333333333334 - -31.445555555555554 51.4175 -31.443333333333335 51.431666666666665 - -31.453055555555554 51.46638888888889 -31.46472222222222 51.46666666666667 - -31.464444444444442 51.48083333333334 -31.460555555555555 51.48888888888889 - -31.464444444444442 51.50138888888889 -31.486944444444447 51.51416666666667 - -31.488611111111112 51.51555555555556 -31.488333333333333 51.51888888888889 - -31.490277777777777 51.52333333333333 -31.5075 51.52444444444444 - -31.511944444444445 51.52833333333333 -31.513055555555557 51.550555555555555 - -31.519166666666667 51.55583333333333 -31.520555555555553 51.55722222222222 - -31.520833333333332 51.55722222222222 -31.51833333333333 51.558055555555555 - -31.509166666666665 51.56111111111111 -31.499444444444446 51.56472222222222 - -31.509166666666665 51.57972222222222 -31.498611111111114 51.58222222222223 - -31.493333333333336 51.586111111111116 -31.49527777777778 51.59777777777778 - -31.491666666666667 51.603611111111114 -31.493055555555557 51.61 - -31.490833333333335 51.60777777777778 -31.483333333333334 51.619166666666665 - -31.476388888888888 51.62388888888889 -31.46944444444444 51.63527777777778 - -31.465833333333332 51.65361111111111 -31.449444444444445 51.67222222222222 - -31.44472222222222 51.70722222222223 -31.43638888888889 51.718611111111116 - -31.43166666666667 51.74666666666667 -31.418333333333333 51.757222222222225 - -31.41583333333333 51.763888888888886 -31.408055555555553 51.765 - -31.398055555555555 51.7875 -31.365555555555556 51.80027777777777 - -31.349722222222223 51.80222222222222 -31.34638888888889 51.815 - -31.325277777777778 51.8525 -31.29527777777778 51.87888888888889 - -31.274444444444445 51.882777777777775 -31.27583333333333 51.888333333333335 - -31.28111111111111 51.903888888888886 -31.27138888888889 51.91416666666667 - -31.26527777777778 51.94972222222222 -31.249722222222225 51.969722222222224 - -31.25722222222222 51.97166666666667 -31.2575 51.97777777777778 -31.2575 - 51.986111111111114 -31.250833333333333 51.99666666666667 -31.209166666666665 - 51.99916666666667 -31.20638888888889 52.006388888888885 -31.198611111111113 - 52.00805555555556 -31.1925 52.00694444444444 -31.18611111111111 - 51.99805555555556 -31.174166666666668 51.9975 -31.169722222222223 - 52.00083333333333 -31.125833333333333 52.007222222222225 -31.115833333333335 - 52.013333333333335 -31.115833333333335 52.020833333333336 -31.120555555555555 - 52.0225 -31.12 52.03666666666666 -31.107222222222223 52.04 -31.09472222222222 - 52.040277777777774 -31.08833333333333 52.038333333333334 -31.08 - 52.02444444444444 -31.05777777777778 52.019444444444446 -31.041944444444447 - 52.020833333333336 -31.023333333333333 52.028055555555554 -30.99361111111111 - 52.033055555555556 -30.990555555555556 52.04666666666667 -30.99888888888889 - 52.05638888888888 -30.993055555555557 52.061388888888885 -30.991666666666667 - 52.06361111111111 -30.991666666666667 52.06777777777778 -30.991666666666667 - 52.07277777777778 -30.993055555555557 52.078611111111115 -30.994444444444447 - 52.125 -30.960277777777776 52.13388888888889 -30.956944444444442 - 52.14722222222222 -30.951666666666664 52.17777777777778 -30.944444444444446 - 52.180277777777775 -30.94361111111111 52.20944444444445 -30.934444444444445 - 52.21388888888889 -30.935 52.215833333333336 -30.935833333333335 - 52.21805555555556 -30.936944444444446 52.217777777777776 -30.950555555555553 - 52.20888888888889 -30.96638888888889 52.20916666666667 -30.97083333333333 - 52.20916666666667 -30.975555555555555 52.20527777777778 -30.990000000000002 - 52.20638888888889 -31.00111111111111 52.20527777777778 -31.005555555555556 - 52.19444444444444 -31.00611111111111 52.19083333333333 -31.01 52.18805555555555 - -31.01388888888889 52.18611111111111 -31.019166666666667 52.18472222222222 - -31.023888888888887 52.18388888888889 -31.026666666666667 52.183055555555555 - -31.035555555555558 52.17805555555555 -31.053055555555556 52.18388888888889 - -31.064444444444444 52.183055555555555 -31.066944444444445 52.176944444444445 - -31.07111111111111 52.175555555555555 -31.074166666666667 52.17611111111111 - -31.081666666666667 52.17611111111111 -31.0825 52.181666666666665 - -31.090555555555554 52.18722222222222 -31.099166666666665 52.18944444444444 - -31.100555555555555 52.21138888888889 -31.114444444444445 52.23222222222223 - -31.133333333333333 52.23444444444444 -31.133888888888887 52.26833333333333 - -31.142777777777777 52.27305555555555 -31.14527777777778 52.27388888888889 - -31.145833333333332 52.27972222222222 -31.151666666666664 52.294444444444444 - -31.17138888888889 52.30333333333333 -31.179722222222225 52.33527777777778 - -31.203055555555554 52.336111111111116 -31.204166666666666 52.34166666666667 - -31.210555555555555 52.37777777777778 -31.249444444444446 52.3975 - -31.26888888888889 52.42222222222222 -31.284166666666668 52.43527777777778 - -31.311944444444446 52.43527777777778 -31.31833333333333 52.434999999999995 - -31.329444444444444 52.43666666666666 -31.330277777777777 52.4375 - -31.330555555555556 52.45 -31.314444444444444 52.46388888888889 - -31.310000000000002 52.47888888888889 -31.295833333333334 52.4825 - -31.296666666666667 52.48416666666667 -31.297222222222224 52.48222222222223 - -31.302222222222223 52.478611111111114 -31.31138888888889 52.480000000000004 - -31.315833333333334 52.48416666666667 -31.316944444444445 52.49888888888889 - -31.313055555555557 52.50805555555556 -31.310555555555556 52.51611111111111 - -31.30611111111111 52.52388888888889 -31.301666666666666 52.54055555555556 - -31.297222222222224 52.54527777777778 -31.294722222222223 52.552499999999995 - -31.28527777777778 52.556666666666665 -31.282777777777778 52.56777777777778 - -31.27638888888889 52.574444444444445 -31.272499999999997 52.590833333333336 - -31.260277777777777 52.60611111111111 -31.255277777777778 52.62361111111111 - -31.240833333333335 52.628055555555555 -31.242222222222225 52.63138888888889 - -31.256666666666668 52.6325 -31.260833333333334 52.63527777777778 - -31.264722222222222 52.638333333333335 -31.26527777777778 52.66694444444444 - -31.264444444444443 52.71888888888889 -31.254722222222224 52.72916666666667 - -31.245 52.73388888888889 -31.234166666666667 52.734722222222224 - -31.231944444444444 52.74611111111111 -31.205 52.74666666666667 - -31.203611111111112 52.75361111111111 -31.19472222222222 52.768055555555556 - -31.185 52.77611111111111 -31.161666666666665 52.77972222222222 - -31.15694444444444 52.7875 -31.15222222222222 52.7975 -31.145833333333332 - 52.81222222222222 -31.12611111111111 52.81444444444444 -31.119722222222222 - 52.81444444444444 -31.118333333333332 52.81472222222222 -31.096666666666664 - 52.82138888888889 -31.084722222222222 52.84027777777778 -31.076666666666668 - 52.84277777777778 -31.07472222222222 52.85472222222222 -31.06388888888889 - 52.85777777777778 -31.05777777777778 52.85888888888889 -31.053333333333335 - 52.86333333333334 -31.037222222222223 52.867777777777775 -31.033611111111114 - 52.87555555555556 -31.03111111111111 52.880833333333335 -31.03222222222222 - 52.896388888888886 -31.043055555555558 52.90083333333333 -31.046111111111113 - 52.907222222222224 -31.048611111111114 52.91222222222222 -31.046111111111113 - 52.920833333333334 -31.026944444444442 52.92194444444444 -31.02583333333333 - 52.92527777777777 -31.022777777777776 52.94138888888889 -31.016944444444444 - 52.96333333333334 -30.999444444444446 52.97138888888889 -30.990277777777777 - 52.999722222222225 -30.96972222222222 53.0225 -30.953611111111112 - 53.02583333333333 -30.953333333333333 53.028888888888886 -30.953333333333333 - 53.032222222222224 -30.955277777777777 53.04083333333333 -30.965833333333332 - 53.044999999999995 -30.966944444444444 53.05916666666666 -30.96222222222222 - 53.078611111111115 -30.976666666666667 53.09638888888889 -31.000833333333333 - 53.1025 -31.011388888888888 53.11666666666667 -31.016666666666666 - 53.11694444444444 -31.035833333333336 53.11694444444444 -31.036944444444448 - 53.11805555555556 -31.043055555555558 53.11694444444444 -31.052500000000002 - 53.10027777777778 -31.098333333333333 53.09916666666667 -31.115555555555556 - 53.10111111111111 -31.12777777777778 53.109722222222224 -31.140277777777776 - 53.11638888888889 -31.14472222222222 53.12111111111111 -31.14527777777778 - 53.13527777777778 -31.141666666666666 53.155833333333334 -31.131666666666668 - 53.16722222222222 -31.133333333333333 53.17444444444444 -31.144166666666667 - 53.17861111111111 -31.172777777777778 53.18194444444444 -31.195 - 53.18527777777778 -31.206666666666667 53.19611111111111 -31.224444444444444 - 53.200833333333335 -31.22972222222222 53.21361111111111 -31.23777777777778 - 53.23916666666667 -31.241666666666667 53.254444444444445 -31.240555555555556 - 53.268055555555556 -31.234166666666667 53.276666666666664 -31.230277777777776 - 53.28111111111111 -31.232499999999998 53.29833333333333 -31.254722222222224 - 53.30555555555555 -31.266111111111112 53.32277777777778 -31.292222222222225 - 53.347500000000004 -31.31277777777778 53.35027777777778 -31.31416666666667 - 53.35944444444445 -31.318055555555556 53.38527777777778 -31.329722222222223 - 53.39 -31.3275 53.401111111111106 -31.30888888888889 53.40611111111111 - -31.303333333333335 53.4075 -31.30138888888889 53.413333333333334 - -31.299444444444447 53.43611111111111 -31.299722222222226 53.45194444444445 - -31.293333333333337 53.45611111111111 -31.294444444444448 53.461111111111116 - -31.300555555555555 53.4675 -31.315 53.47222222222222 -31.3325 - 53.473333333333336 -31.33722222222222 53.47416666666667 -31.33861111111111 - 53.48083333333334 -31.34861111111111 53.480555555555554 -31.359444444444446 - 53.48555555555556 -31.371944444444445 53.489444444444445 -31.37666666666667 - 53.49055555555556 -31.378055555555555 53.49805555555556 -31.3825 - 53.52638888888889 -31.391111111111112 53.53444444444444 -31.404999999999998 - 53.53388888888889 -31.407777777777778 53.53527777777778 -31.415555555555553 - 53.53638888888889 -31.4225 53.54111111111111 -31.43 53.54472222222222 - -31.434722222222224 53.561388888888885 -31.443333333333335 53.56861111111112 - -31.45 53.57166666666667 -31.4525 53.57666666666667 -31.460555555555555 - 53.58027777777778 -31.470277777777778 53.58444444444444 -31.481111111111108 - 53.59305555555556 -31.49277777777778 53.61611111111111 -31.50777777777778 - 53.652499999999996 -31.525555555555556 53.656388888888884 -31.525 - 53.659166666666664 -31.522222222222222 53.659166666666664 -31.521944444444443 - 53.66166666666666 -31.515833333333333 53.665 -31.508333333333333 - 53.66416666666667 -31.488055555555558 53.66611111111111 -31.46611111111111 - 53.65861111111111 -31.423055555555557 53.65833333333333 -31.421944444444446 - 53.653055555555554 -31.403888888888886 53.651944444444446 -31.393055555555556 - 53.65222222222222 -31.391111111111112 53.651944444444446 -31.37138888888889 - 53.64861111111111 -31.326666666666668 53.647777777777776 -31.31361111111111 - 53.6625 -31.264722222222222 53.66611111111111 -31.252777777777776 - 53.66611111111111 -31.251944444444444 53.66611111111111 -31.250555555555554 - 53.66277777777778 -31.183611111111112 53.66222222222222 -31.175833333333333 - 53.66083333333333 -31.170555555555556 53.65833333333333 -31.15888888888889 - 53.657222222222224 -31.150555555555552 53.65694444444444 -31.1475 - 53.65888888888889 -31.136388888888888 53.66361111111111 -31.109722222222224 - 53.663333333333334 -31.105 53.66277777777778 -31.09722222222222 - 53.66138888888889 -31.092222222222222 53.66111111111111 -31.09111111111111 - 53.65611111111111 -31.06833333333333 53.656388888888884 -31.059444444444445 - 53.6625 -31.044444444444448 53.67027777777778 -31.016111111111112 - 53.67194444444444 -31.011944444444445 53.68 -31.00611111111111 53.68611111111111 - -31.0 53.69166666666666 -31.00111111111111 53.69222222222222 -31.00111111111111 - 53.71416666666667 -30.998333333333335 53.71888888888889 -30.995 - 53.72416666666667 -30.99138888888889 53.72805555555556 -30.990555555555556 - 53.73777777777778 -30.991944444444446 53.74277777777778 -30.990833333333335 - 53.76416666666667 -30.97861111111111 53.77027777777778 -30.97722222222222 - 53.778888888888886 -30.97722222222222 53.7975 -30.985555555555557 - 53.80472222222222 -30.983611111111113 53.81111111111111 -30.974999999999998 - 53.81916666666667 -30.96472222222222 53.82055555555556 -30.951666666666664 - 53.82277777777778 -30.945833333333333 53.82361111111111 -30.94361111111111 - 53.83388888888889 -30.929166666666667 53.84527777777778 -30.92777777777778 - 53.850833333333334 -30.916944444444447 53.8675 -30.9025 53.89361111111111 - -30.899722222222223 53.913888888888884 -30.904444444444444 53.921388888888885 - -30.9025 53.930277777777775 -30.8925 53.93388888888889 -30.88861111111111 - 53.943888888888885 -30.885555555555555 53.95805555555556 -30.89 - 53.97166666666667 -30.885555555555555 53.99277777777778 -30.875555555555557 54.0 - -30.87472222222222 54.006388888888885 -30.87027777777778 54.010555555555555 - -30.868333333333332 54.01305555555555 -30.86388888888889 54.01972222222222 - -30.871666666666666 54.020833333333336 -30.873055555555556 54.02333333333333 - -30.875 54.025277777777774 -30.87527777777778 54.02916666666667 - -30.87638888888889 54.030277777777776 -30.87666666666667 54.03194444444444 - -30.878611111111113 54.033055555555556 -30.880277777777778 54.03666666666666 - -30.879444444444445 54.05027777777777 -30.891666666666666 54.05083333333333 - -30.8925 54.05277777777778 -30.89472222222222 54.0575 -30.89527777777778 - 54.059999999999995 -30.894444444444446 54.062777777777775 -30.893333333333334 - 54.062777777777775 -30.896944444444443 54.065 -30.90361111111111 - 54.06583333333333 -30.904166666666665 54.07333333333334 -30.91444444444444 - 54.07694444444445 -30.91722222222222 54.086111111111116 -30.919444444444444 - 54.09138888888889 -30.924722222222222 54.102222222222224 -30.929444444444446 - 54.10333333333333 -30.9325 54.10611111111111 -30.938333333333333 - 54.113055555555555 -30.941111111111113 54.11416666666667 -30.945 - 54.11333333333334 -30.949166666666667 54.115 -30.959444444444443 - 54.120555555555555 -30.982777777777777 54.11666666666667 -30.990277777777777 - 54.125 -31.00027777777778 54.136944444444445 -31.009166666666665 - 54.14555555555555 -31.011388888888888 54.153888888888886 -31.008333333333333 - 54.15888888888889 -31.009166666666665 54.16444444444444 -31.014166666666668 - 54.187777777777775 -31.01861111111111 54.19888888888889 -31.015555555555554 - 54.211666666666666 -31.010277777777777 54.221944444444446 -31.005555555555556 - 54.25527777777778 -30.944444444444446 54.25527777777778 -30.944166666666668 - 54.2575 -30.89611111111111 54.260555555555555 -30.875555555555557 - 54.26694444444444 -30.858055555555556 54.27611111111111 -30.85611111111111 - 54.288888888888884 -30.858611111111113 54.29722222222222 -30.85638888888889 - 54.30611111111111 -30.843888888888888 54.31388888888888 -30.83 - 54.315555555555555 -30.827222222222222 54.33111111111111 -30.789722222222224 - 54.35611111111111 -30.78638888888889 54.35944444444445 -30.784722222222225 - 54.36555555555556 -30.776666666666667 54.36666666666667 -30.775 - 54.37027777777778 -30.77611111111111 54.373333333333335 -30.781944444444445 - 54.375277777777775 -30.792222222222225 54.38166666666667 -30.80138888888889 - 54.38777777777778 -30.809166666666666 54.41444444444444 -30.828333333333333 - 54.41833333333333 -30.83111111111111 54.42638888888889 -30.83 54.43416666666666 - -30.83361111111111 54.45472222222222 -30.84 54.471944444444446 - -30.830555555555556 54.48388888888889 -30.816666666666666 54.50361111111111 - -30.80611111111111 54.510555555555555 -30.799722222222226 54.51222222222222 - -30.795 54.5325 -30.789444444444445 54.54 -30.79416666666667 54.55583333333333 - -30.80611111111111 54.56361111111111 -30.819166666666668 54.5625 - -30.82611111111111 54.56861111111112 -30.837777777777777 54.5925 - -30.822499999999998 54.59388888888889 -30.82111111111111 54.60333333333333 - -30.814444444444444 54.61694444444444 -30.804444444444446 54.63194444444444 - -30.796666666666667 54.64944444444444 -30.79277777777778 54.6675 - -30.799444444444447 54.70888888888889 -30.807222222222222 54.716944444444444 - -30.808611111111112 54.72972222222222 -30.81388888888889 54.7325 - -30.81861111111111 54.73694444444445 -30.819166666666668 54.745 - -30.824166666666667 54.74666666666667 -30.825277777777778 54.768055555555556 - -30.823333333333334 54.78611111111111 -30.822499999999998 54.80694444444444 - -30.815833333333334 54.82333333333334 -30.820555555555554 54.83444444444444 - -30.816666666666666 54.84138888888889 -30.819166666666668 54.843611111111116 - -30.81722222222222 54.845555555555556 -30.803055555555556 54.848888888888894 - -30.798333333333336 54.878055555555555 -30.804722222222225 54.88194444444444 - -30.808333333333334 54.8825 -30.810833333333335 54.88638888888889 - -30.826944444444443 54.890277777777776 -30.829444444444444 54.89472222222222 - -30.836666666666666 54.90138888888889 -30.842777777777776 54.92666666666666 - -30.84361111111111 54.95416666666667 -30.85666666666667 54.958333333333336 - -30.861111111111114 54.96388888888889 -30.8725 54.97222222222222 - -30.878333333333334 54.98222222222223 -30.888055555555557 54.9975 - -30.904444444444444 55.01083333333333 -30.915277777777778 55.01888888888889 - -30.92638888888889 55.02194444444444 -30.928055555555556 55.027499999999996 - -30.928611111111113 55.03 -30.929166666666667 55.03388888888889 - -30.93027777777778 55.0375 -30.92027777777778 55.038888888888884 -30.915 55.0375 - -30.901944444444442 55.03722222222222 -30.90111111111111 55.03611111111111 - -30.89611111111111 55.03611111111111 -30.895833333333332 55.030833333333334 - -30.875 55.03722222222222 -30.823055555555555 55.041666666666664 - -30.811944444444446 55.04416666666666 -30.80666666666667 55.05138888888889 - -30.80027777777778 55.05444444444444 -30.797777777777778 55.06583333333333 - -30.7825 55.07277777777778 -30.77861111111111 55.08861111111111 - -30.77027777777778 55.10611111111111 -30.754166666666666 55.11277777777778 - -30.755555555555556 55.120555555555555 -30.7625 55.128055555555555 - -30.76861111111111 55.13305555555556 -30.76527777777778 55.14194444444444 - -30.74888888888889 55.161944444444444 -30.719166666666666 55.17916666666667 - -30.70111111111111 55.195277777777775 -30.692777777777778 55.209722222222226 - -30.68111111111111 55.221944444444446 -30.675555555555558 55.24 - -30.645833333333332 55.243611111111115 -30.634166666666665 55.24527777777778 - -30.623333333333335 55.245 -30.61888888888889 55.245 -30.61861111111111 - 55.24277777777778 -30.612222222222222 55.23888888888889 -30.596666666666664 - 55.237500000000004 -30.58888888888889 55.23777777777778 -30.575277777777778 - 55.23777777777778 -30.570555555555554 55.24277777777778 -30.5625 - 55.24638888888889 -30.558333333333334 55.25666666666667 -30.543055555555558 - 55.26 -30.529444444444444 55.26583333333333 -30.506666666666668 - 55.29277777777778 -30.472777777777775 55.29972222222222 -30.46 55.30138888888889 - -30.456944444444442 55.30722222222222 -30.440555555555555 55.315555555555555 - -30.428333333333335 55.33416666666667 -30.416666666666668 55.343333333333334 - -30.410555555555554 55.35027777777778 -30.39611111111111 55.35888888888889 - -30.384166666666665 55.36222222222222 -30.38138888888889 55.367222222222225 - -30.383055555555558 55.3675 -30.383333333333333 55.38944444444444 - -30.390277777777776 55.39555555555555 -30.38361111111111 55.395833333333336 - -30.383333333333333 55.39694444444444 -30.37388888888889 55.394999999999996 - -30.365833333333335 55.394444444444446 -30.36527777777778 55.38611111111111 - -30.356944444444444 55.38583333333333 -30.353055555555557 55.38583333333333 - -30.352777777777778 55.38666666666666 -30.341388888888886 55.386944444444445 - -30.340277777777775 55.38777777777778 -30.339166666666664 55.38777777777778 - -30.33888888888889 55.388333333333335 -30.337777777777777 55.38861111111111 - -30.336944444444445 55.39 -30.334444444444443 55.39055555555556 - -30.333888888888886 55.395833333333336 -30.329444444444444 55.403055555555554 - -30.326944444444443 55.407777777777774 -30.325277777777778 55.413333333333334 - -30.32138888888889 55.41722222222222 -30.315 55.424166666666665 - -30.308055555555555 55.43333333333333 -30.304444444444446 55.433611111111105 - -30.304444444444446 55.43666666666666 -30.304722222222225 55.44444444444444 - -30.305555555555557 55.44972222222222 -30.302777777777777 55.47694444444445 - -30.28638888888889 55.481388888888894 -30.285555555555558 55.49583333333334 - -30.27111111111111 55.503055555555555 -30.258333333333333 55.51777777777777 - -30.254166666666666 55.532777777777774 -30.231111111111108 55.54194444444444 - -30.223333333333333 55.55555555555555 -30.21611111111111 55.558611111111105 - -30.211111111111112 55.56444444444444 -30.208055555555553 55.569722222222225 - -30.2025 55.57361111111111 -30.19611111111111 55.57833333333333 - -30.18277777777778 55.58388888888889 -30.184166666666666 55.597500000000004 - -30.197777777777777 55.603611111111114 -30.21833333333333 55.63916666666667 - -30.25111111111111 55.650555555555556 -30.267777777777777 55.655277777777776 - -30.273333333333333 55.65972222222222 -30.284722222222225 55.66 - -30.28611111111111 55.66444444444444 -30.30777777777778 55.66611111111111 - -30.31527777777778 55.67777777777778 -30.341388888888886 55.67777777777778 - -30.341666666666665 55.67916666666667 -30.348333333333333 55.67638888888889 - -30.368055555555557 55.67722222222222 -30.377222222222223 55.68111111111111 - -30.391388888888887 55.68111111111111 -30.409444444444443 55.681666666666665 - -30.412777777777777 55.683055555555555 -30.42 55.68722222222222 -30.4375 - 55.669444444444444 -30.452777777777776 55.658055555555556 -30.496666666666666 - 55.66611111111111 -30.502777777777776 55.67666666666666 -30.5175 55.68 - -30.526944444444442 55.69083333333333 -30.54527777777778 55.69166666666666 - -30.554444444444446 55.69972222222222 -30.549722222222226 55.7 - -30.549444444444447 55.70805555555556 -30.545 55.711666666666666 - -30.54527777777778 55.73166666666667 -30.551944444444445 55.736111111111114 - -30.557222222222222 55.742222222222225 -30.559166666666666 55.7475 - -30.569166666666668 55.75194444444445 -30.56888888888889 55.76083333333333 - -30.55638888888889 55.769444444444446 -30.550555555555555 55.786944444444444 - -30.546666666666667 55.79611111111111 -30.54416666666667 55.801944444444445 - -30.539444444444445 55.81388888888888 -30.53666666666667 55.819722222222225 - -30.53111111111111 55.83444444444444 -30.528055555555554 55.84027777777778 - -30.529166666666665 55.85944444444445 -30.522499999999997 55.86138888888889 - -30.523333333333333 55.86527777777778 -30.52027777777778 55.869166666666665 - -30.51722222222222 55.87388888888889 -30.521944444444443 55.87916666666667 - -30.535 55.88361111111111 -30.560833333333335 55.89611111111111 - -30.55611111111111 55.90416666666667 -30.551944444444445 55.913333333333334 - -30.551666666666666 55.92361111111111 -30.544444444444448 55.93138888888889 - -30.541944444444447 55.94416666666666 -30.551111111111112 55.96472222222223 - -30.56638888888889 55.9675 -30.57138888888889 55.968333333333334 -30.58 - 55.953611111111115 -30.581944444444446 55.9475 -30.589444444444442 - 55.94361111111111 -30.61277777777778 55.940555555555555 -30.64388888888889 - 55.93805555555555 -30.659444444444443 55.936388888888885 -30.674444444444447 - 55.93722222222222 -30.69 55.93888888888888 -30.7075 55.941111111111105 - -30.721666666666664 55.94083333333333 -30.732499999999998 55.94972222222222 - -30.74416666666667 55.973055555555554 -30.754444444444445 55.98527777777778 - -30.767777777777777 55.987500000000004 -30.80027777777778 55.981944444444444 - -30.80388888888889 55.968333333333334 -30.805555555555557 55.95333333333333 - -30.80888888888889 55.945277777777775 -30.825555555555557 55.94444444444444 - -30.843888888888888 55.94638888888888 -30.851944444444445 55.94416666666666 - -30.85527777777778 55.94 -30.873333333333335 55.93861111111111 - -30.88277777777778 55.94138888888889 -30.894444444444446 55.94138888888889 - -30.915555555555553 55.94361111111111 -30.925555555555558 55.947222222222216 - -30.935833333333335 55.94944444444444 -30.93888888888889 55.950833333333335 - -30.940555555555555 55.96138888888889 -30.947777777777777 55.97166666666667 - -30.95888888888889 55.96805555555556 -30.97694444444444 55.95805555555556 - -30.988611111111112 55.94944444444444 -31.00138888888889 55.94888888888889 - -31.013333333333332 55.95194444444445 -31.023055555555555 55.950833333333335 - -31.041944444444447 55.94972222222222 -31.059444444444445 55.95277777777778 - -31.064722222222223 55.97083333333334 -31.078611111111112 55.98527777777778 - -31.114444444444445 55.98388888888889 -31.123055555555556 55.98972222222222 - -31.14472222222222 55.987500000000004 -31.160277777777775 55.98722222222222 - -31.160555555555554 55.985 -31.16638888888889 55.985 -31.166666666666668 - 55.980000000000004 -31.17527777777778 55.97972222222222 -31.175833333333333 - 55.97 -31.18277777777778 55.97 -31.18305555555556 55.966944444444444 - -31.183888888888887 55.96222222222222 -31.185 55.96 -31.185833333333335 - 55.95333333333333 -31.180833333333336 55.95333333333333 -31.180555555555557 - 55.95277777777778 -31.18111111111111 55.94888888888889 -31.18277777777778 - 55.94416666666666 -31.183611111111112 55.94305555555555 -31.183888888888887 - 55.94277777777778 -31.183888888888887 55.91861111111111 -31.174166666666668 - 55.91555555555556 -31.174166666666668 55.913888888888884 -31.174166666666668 - 55.91277777777778 -31.174722222222222 55.911944444444444 -31.17527777777778 - 55.88638888888889 -31.191666666666666 55.88166666666667 -31.201944444444443 - 55.879444444444445 -31.20583333333333 55.87166666666667 -31.219166666666666 - 55.86472222222223 -31.246666666666666 55.848888888888894 -31.290277777777778 - 55.84138888888889 -31.324166666666667 55.84638888888889 -31.35777777777778 - 55.84638888888889 -31.36777777777778 55.83722222222222 -31.384999999999998 - 55.825 -31.393333333333334 55.81944444444445 -31.39611111111111 - 55.814166666666665 -31.404722222222222 55.81222222222222 -31.4175 - 55.82333333333334 -31.42388888888889 55.830000000000005 -31.42138888888889 - 55.83388888888889 -31.42666666666667 55.83555555555556 -31.428611111111113 - 55.844166666666666 -31.44 55.85638888888889 -31.449722222222224 - 55.862500000000004 -31.452222222222222 55.862500000000004 -31.461388888888887 - 55.871944444444445 -31.49388888888889 55.86527777777778 -31.506944444444443 - 55.85611111111111 -31.50861111111111 55.85055555555556 -31.50638888888889 - 55.84861111111111 -31.510277777777777 55.843611111111116 -31.522499999999997 - 55.83888888888889 -31.540833333333335 55.83083333333334 -31.56638888888889 - 55.831388888888895 -31.578055555555554 55.83444444444444 -31.591388888888886 - 55.840833333333336 -31.608611111111113 55.843611111111116 -31.608333333333334 - 55.85861111111111 -31.602222222222224 55.87 -31.59 55.88055555555555 - -31.57472222222222 55.88111111111111 -31.580555555555556 55.87861111111111 - -31.590833333333332 55.882222222222225 -31.610833333333336 55.8825 -31.65 - 55.89138888888889 -31.663055555555555 55.90333333333333 -31.684444444444445 - 55.905277777777776 -31.689444444444444 55.903888888888886 -31.697222222222223 - 55.9 -31.705555555555556 55.89388888888889 -31.718055555555555 55.89388888888889 - -31.734722222222224 55.89555555555555 -31.745 55.894444444444446 - -31.75861111111111 55.88388888888889 -31.780555555555555 55.87972222222222 - -31.796666666666667 55.8775 -31.82 55.876666666666665 -31.83138888888889 - 55.86694444444444 -31.834166666666665 55.86194444444445 -31.842222222222222 - 55.85638888888889 -31.84722222222222 55.852222222222224 -31.874166666666667 - 55.85722222222223 -31.88138888888889 55.86416666666667 -31.884999999999998 - 55.90888888888889 -31.875 55.92305555555555 -31.88277777777778 - 55.925555555555555 -31.892777777777777 55.92472222222222 -31.896944444444443 - 55.91888888888889 -31.90833333333333 55.904444444444444 -31.9075 - 55.89138888888889 -31.90833333333333 55.88472222222222 -31.911666666666665 - 55.87722222222222 -31.920833333333334 55.87416666666667 -31.927222222222223 - 55.86944444444445 -31.96944444444444 55.86638888888889 -31.974166666666665 - 55.852222222222224 -31.983888888888888 55.84805555555556 -31.991666666666667 - 55.831388888888895 -32.00277777777778 55.82777777777778 -32.010555555555555 - 55.825833333333335 -32.025277777777774 55.8175 -32.04138888888889 - 55.81638888888889 -32.04694444444444 55.81361111111111 -32.05972222222222 - 55.80416666666667 -32.065 55.80333333333333 -32.065 55.80138888888889 - -32.07944444444445 55.80138888888889 -32.090833333333336 55.80138888888889 - -32.09527777777778 55.80444444444444 -32.10305555555556 55.806666666666665 - -32.108333333333334 55.806666666666665 -32.10861111111111 55.80888888888889 - -32.11416666666667 55.81055555555555 -32.12777777777778 55.81055555555555 - -32.129444444444445 55.81638888888889 -32.149166666666666 55.85305555555556 - -32.155 55.87361111111111 -32.1625 55.87694444444445 -32.165277777777774 55.88 - -32.16777777777777 55.88138888888889 -32.17194444444444 55.88194444444444 - -32.19416666666666 55.88194444444444 -32.19444444444444 55.89194444444444 - -32.20194444444445 55.89972222222222 -32.2075 55.905 -32.21027777777778 - 55.908055555555556 -32.21194444444445 55.90972222222222 -32.21083333333333 - 55.919999999999995 -32.20944444444445 55.92527777777777 -32.202222222222225 - 55.95138888888889 -32.1825 55.95444444444445 -32.176944444444445 55.96 - -32.17222222222222 55.96083333333333 -32.17166666666667 55.967777777777776 - -32.168055555555554 55.973888888888894 -32.16166666666666 55.99194444444444 - -32.12861111111111 56.00472222222222 -32.11055555555556 56.01027777777778 - -32.096944444444446 56.01638888888889 -32.081388888888895 56.03361111111111 - -32.0775 56.045833333333334 -32.07944444444445 56.05611111111111 - -32.08111111111111 56.07083333333334 -32.094722222222224 56.077222222222225 - -32.11138888888889 56.078611111111115 -32.12361111111111 56.06583333333333 - -32.16722222222222 56.06638888888889 -32.175555555555555 56.07027777777778 - -32.17583333333333 56.085 -32.17833333333333 56.1225 -32.18611111111111 56.135 - -32.18694444444444 56.13944444444444 -32.18722222222222 56.1425 - -32.18722222222222 56.14277777777778 -32.187777777777775 56.14527777777778 - -32.19166666666666 56.14555555555555 -32.19944444444444 56.14083333333333 - -32.20638888888889 56.13666666666666 -32.211111111111116 56.13583333333333 - -32.21416666666667 56.13361111111111 -32.222500000000004 56.132777777777775 - -32.225833333333334 56.1325 -32.23361111111111 56.13194444444444 - -32.242222222222225 56.13138888888889 -32.24333333333333 56.120555555555555 - -32.265 56.11333333333334 -32.279444444444444 56.10277777777778 - -32.30833333333333 56.094722222222224 -32.31722222222223 56.09027777777778 - -32.331388888888895 56.09166666666667 -32.35638888888889 56.09027777777778 - -32.36222222222222 56.081944444444446 -32.38305555555556 56.07916666666667 - -32.41222222222222 56.081388888888895 -32.42916666666667 56.078611111111115 - -32.473888888888894 56.078611111111115 -32.480000000000004 56.07833333333333 - -32.48555555555556 56.07972222222222 -32.50277777777778 56.075833333333335 - -32.51638888888889 56.056666666666665 -32.53055555555555 56.05444444444444 - -32.58972222222222 56.05555555555555 -32.59805555555556 56.05222222222222 - -32.61472222222223 56.04833333333333 -32.6275 56.032222222222224 - -32.64555555555555 56.00527777777778 -32.65694444444444 55.99111111111111 - -32.67472222222222 55.980555555555554 -32.70055555555556 55.973888888888894 - -32.72361111111111 55.931666666666665 -32.75333333333333 55.925 - -32.76111111111111 55.91916666666666 -32.77388888888889 55.91277777777778 - -32.79361111111111 55.907777777777774 -32.80638888888888 55.885555555555555 - -32.837500000000006 55.8725 -32.85722222222223 55.934999999999995 - -33.39944444444444 - - - - - - - - - - - - ebccbb64-c1b3-4b27-8e5a-a32d2763208a - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - 52.375597222222225 -31.964263888888887 - - - - - - - - - - e9240179-b707-4133-b49f-39725663e736 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - 52.37818888888889 -31.921847222222222 - - - - - - - - - - fc5b84ee-08bc-4d04-a358-f4cca8609a8f - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ILS - OXS - OXS - - - 1 - - - - - - 2 - - - - - - 52.3755833333333 -31.9652222222222 - 0.0 - - - - - - - - - - - 2012-10-07T10:00:00Z - 2012-10-07T14:00:00Z - - - TEMPDELTA - 1 - - - UNSERVICEABLE - - - - - operationalStatus - REMARK - - - DUE TO MAINTENANCE - - - - - - - - - - - 2ad9861c-7624-481b-b344-c1f601e51939 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OXS - OXS_LLZ - - - 52.3755833333333 -31.9652222222222 - 0.0 - - - 109.1 - - - - - - - 2012-10-07T10:00:00Z - 2012-10-07T14:00:00Z - - - TEMPDELTA - 1 - - - UNSERVICEABLE - - - - - - - - - c9bfcce2-76ad-46b7-a1e7-2c246893db56 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - SNAPSHOT - - - 2009-01-01T00:00:00Z - - - - OXS - OXS_GP - - - 52.3784444444444 -31.9267777777778 - - - 331.4 - - - - - - - 2012-10-07T10:00:00Z - 2012-10-07T14:00:00Z - - - TEMPDELTA - 1 - - - UNSERVICEABLE - - - - - - - - - f37a6ecd-4765-48ed-88f1-6a42643fc13a - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 90.0 - MAG_BRG - 270.0 - RIGHT - 4267.2 - 1066.8 - 256.1933112 - - - 60.0 - - - - - - - 52.36833333333333 -32.375 - - - - - - - - - - - 5ec34a95-b680-4f4b-a2d7-99f2f14b4560 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 90.0 - MAG_BRG - 270.0 - RIGHT - 6096.0 - 4572.0 - 256.1933112 - - - 90.0 - - - - - - - 52.36833333333333 -32.375 - - - - - - - - - - - 39f50cab-cf8a-43c7-b6c4-1705c3886ae7 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 90.0 - MAG_BRG - 270.0 - RIGHT - 10363.2 - 6400.8 - 256.1933112 - - - 90.0 - - - - - - - 52.36833333333333 -32.375 - - - - - - - - - - - 39845412-b7b9-4932-93e0-807c92b7cbb5 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 90.0 - MAG_BRG - 270.0 - RIGHT - 14020.8 - 10668.0 - 256.1933112 - - - 90.0 - - - - - - - 52.36833333333333 -32.375 - - - - - - - - - - - 91d8e5e6-74b3-4652-9138-52018a34196e - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BUILDING - NO - - - - - 52.37558611111111 -31.965180555555555 - 31.5 - - - - - - - - - - - 5f68d835-828c-4ccd-91b7-791058d9dd4d - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ANTENNA - NO - - - - - 52.36171388888889 -32.03756666666666 - 93 - - - - - - - - - - - 95db0e0f-64d9-4dc0-9a6a-60955f4c489b - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OTHER:POWER_LINE - NO - - - - - 52.36439444444444 -31.9792 - 65 - - - - - - - - - - - aeb69042-44b3-4063-ba80-f862f2cdc0d7 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TOWER - NO - - - - - 52.3676 -31.915894444444444 - 40 - - - - - - - - - - - c0406eae-7f49-4bbe-94a2-747b297c8022 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OTHER:MOBILE_OBST - NO - - - - - 52.37884722222222 -31.915438888888886 - 28 - - - - - - - - - - - 1568f948-fe6d-43d8-81fd-12e37500d0b2 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OTHER:MAST - NO - - - - - 52.354261111111114 -31.92560277777778 - 20 - - - - - - - - - - - c12f97f8-2c91-44e8-9770-ec1966311f18 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - OTHER:CHIMNEY - NO - - - - - 52.360597222222225 -31.907077777777776 - 35 - - - - - - - - - - - 17778204-955f-44f2-96ad-cde7d2c347a9 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - BUILDING - NO - - - - - 52.35690555555556 -31.914494444444443 - 30 - - - - - - - - - - - 3d9a60b5-6d7f-471d-9744-b767df4a8575 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - TLOF - 20.0 - 20.0 - 1.0 - - - 52.288936111111106 -32.035086111111106 - - - - - - - - - - - - - 52.28903333333333 -32.034952777777775 - 52.28885555555556 -32.034927777777774 52.28883888888889 - -32.035219444444444 52.28901666666666 - -32.035244444444444 52.28903333333333 - -32.034952777777775 - - - - - - - - - - 18 - - - - - CONC - - - - - - - - - - 69677242-f98d-40d0-8c04-cf396497270f - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 70.0 - 90.0 - - - GRASS - - - - - - - - - - - - - 52.28932777777778 -32.034549999999996 - 52.288605555555556 -32.03444722222222 52.28855 - -32.03562222222222 52.28926666666666 -32.035725 - 52.28932777777778 -32.034549999999996 - - - - - - - - - - - - - - - - - - - 66ec0e97-5d40-4ca8-bf42-35f8e93723bb - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 242 - - - - - 52.37464269376479 -31.94655407346698 52.372661895885464 - -31.946298658872173 52.37249328436266 -31.946309509256167 52.37226938754995 - -31.946412846246652 52.372166050559464 -31.946602297395877 52.3720797641724 - -31.948219693525278 - - - - - - - - - - - - - 5596cc48-232b-431a-94d3-6a6d0351f0cf - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 70.0 - 90.0 - - - GRASS - - - - - - - - - - - - - 52.28932777777778 -32.034549999999996 - 52.288605555555556 -32.03444722222222 52.28855 - -32.03562222222222 52.28926666666666 -32.035725 - 52.28932777777778 -32.034549999999996 - - - - - - - - - - - - - - - - - - - 54f9c436-125a-4661-bc57-0d08af3e4f4b - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - 70.0 - 90.0 - - - GRASS - - - - - - - - - - - - - 52.28932777777778 -32.034549999999996 - 52.288605555555556 -32.03444722222222 52.28855 - -32.03562222222222 52.28926666666666 -32.035725 - 52.28932777777778 -32.034549999999996 - - - - - - - - - - - - - - - - - - - d4713d5d-860a-46cd-880b-30f13e291c5b - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - - - 52.288936111111106 -32.035086111111106 - 18 - - - - - - - - - - 9288f255-e6a1-43fa-9c3c-102a802c99b1 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - G - 116.9 - - - 52.37340555555556 -31.962791666666664 - - - - - - - - - - - 4428d037-1cdf-433a-9bfa-d0857aaf448a - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - 09R/27L - 2600.0 - 45.0 - - - CONC_ASPH - 50 - FLEXIBLE - A - Y - ACFT - - - - - - - - - - 5d6513d4-a62a-49e1-9e26-0b8cbf320daf - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - 09R - 85.29 - - - - - - - - 2ad2bc03-323b-41d3-992e-3c9d4e83dd02 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - THR - - - 52.36550555555556 -31.965008333333333 - - - - - - - - - - ee6019d6-29f7-404d-8cee-b6819f325aed - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - 27L - 265.29 - - - - - - - - 6e7b7beb-4bd2-447c-bd1d-52202ddd37d4 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - THR - - - 52.368252777777776 -31.925594444444446 - - - - - - - - - - 7a8f00e8-15f0-402f-9562-3c109999d545 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.37590585931356 -31.964278043969905 - 52.375111423433644 -31.964228391727417 - 52.377870286949445 -31.92180984838786 52.378484819142066 - -31.921878401779864 52.37590585931356 - -31.964278043969905 - - - - - - - - - - - - - - - - - - e24947bb-5083-433e-b125-89199c1d1233 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.36589862656441 -31.96504267834769 - 52.36519841646239 -31.964972171080476 52.36785927788303 - -31.925539068377507 52.36850257170318 -31.92561516687336 - 52.36589862656441 -31.96504267834769 - - - - - - - - - - - - - - - - - - a45ec8a1-2259-4140-8322-a441e3006cb3 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - F - 23.0 - - - CONC_ASPH - 80 - RIGID - B - W - TECH - - - - - - - - - - 78396f68-9c03-438a-a6b4-331157b1a79c - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - A - 23.0 - - - CONC_ASPH - 80 - RIGID - B - W - TECH - - - - - - - - - - 51474004-6ec1-47a0-bada-404b866e6549 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - B - 23.0 - - - CONC_ASPH - 80 - RIGID - B - W - TECH - - - - - - - - - - d3a7ea1e-93d2-4298-adb3-141906a7b178 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - C - 23.0 - - - CONC_ASPH - 80 - RIGID - B - W - TECH - - - - - - - - - - 8a3a6406-6d9e-42e5-a5d7-daac00dc0d52 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - D - 23.0 - - - CONC_ASPH - 80 - RIGID - B - W - TECH - - - - - - - - - - 0c049047-56f5-41a1-ba56-d0695817a3d2 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - I - 23.0 - - - CONC_ASPH - 80 - RIGID - B - W - TECH - - - - - - - - - - 125d2cc5-2fd4-4917-8a08-a1586bce481d - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - G - 23.0 - - - CONC_ASPH - 80 - RIGID - B - W - TECH - - - - - - - - - - cf10b08e-3cd0-4ac3-be6d-ec423bac7a90 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.374114061066535 -31.960971595710426 - 52.3744611279516 -31.95616981216965 52.37453053140269 - -31.954519552332492 52.37521579457132 - -31.943777975195324 52.37535133179981 - -31.941558553078725 52.376147020041884 - -31.92837951247149 52.37622521459678 -31.92756498585794 - 52.37654100007663 -31.922114654922687 52.376575701802174 - -31.921983559515066 52.376660528242404 - -31.921929579053103 52.37784085296367 - -31.922251530702038 52.377870286949445 - -31.92180984838786 52.37655754145512 -31.921374583594957 - 52.37640766855823 -31.921394132233683 52.37627495351409 - -31.921509302599247 52.37619398282116 -31.92167509973242 - 52.37615353625479 -31.921869815775995 52.37490876237152 - -31.942638644826488 52.3745158937468 -31.94927834993428 - 52.37382493754196 -31.960971595710426 52.37367432444154 - -31.96407068771583 52.374727292287155 - -31.964265101088674 52.375111423433644 - -31.964228391727417 52.37514852880121 - -31.963669143754903 52.37413010408671 - -31.963484475292006 52.37403221201539 - -31.963411376762416 52.37398348915221 - -31.963265930776455 52.374114061066535 - -31.960971595710426 - - - - - - - - - - - - - - - - - - d5465b90-8f8b-4332-b9f4-f564ffefd7ea - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.3744611279516 -31.95616981216965 - 52.374534458374534 -31.95583776746803 52.374603861825626 - -31.95566040309301 52.374734957233244 -31.95545990423429 - 52.37585820657654 -31.952764796553602 52.375960762592015 - -31.951171207621044 52.374694569889876 - -31.954570921916073 52.37465008049815 - -31.954615411307802 52.374575931511934 - -31.954573887875526 52.37453053140269 - -31.954519552332492 52.3744611279516 -31.95616981216965 - - - - - - - - - - - - - - - - - - 867a4fab-e1e7-499c-90fd-38543a4bc19c - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.37521579457132 -31.943777975195324 - 52.37533561042285 -31.943061454913373 52.37550740385998 - -31.942445861763698 52.37671701222849 - -31.939541219415187 52.37682671332614 - -31.937855848697783 52.37535133179981 - -31.941558553078725 52.37521579457132 - -31.943777975195324 - - - - - - - - - - - - - - - - - - 63f05cec-6e82-49f6-8e0c-20ef2e1b3ac1 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.376147020041884 -31.92837951247149 - 52.37631186072712 -31.92831215561649 52.37718553237552 - -31.928537670382788 52.37741623285176 - -31.928785664733155 52.37748253483813 - -31.927771164459894 52.377238895008716 - -31.927982851524785 52.37640740347544 -31.92780356267792 - 52.37622521459678 -31.92756498585794 52.376147020041884 - -31.92837951247149 - - - - - - - - - - - - - - - - - - 3d4a46a4-df85-497a-b19a-e2d7d16cd66b - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.369376203479014 -31.947955104361693 - 52.36966361235915 -31.943132732858935 52.37044355915342 - -31.928666462531368 52.3705558375811 -31.925885568981418 - 52.36850257170318 -31.92561516687336 52.36847133176303 - -31.926078211791108 52.36992989174596 -31.92645630929092 - 52.37017550284791 -31.926561571191748 52.36985971714541 - -31.93303267185691 52.369794555016334 -31.93398504143583 - 52.36890734756649 -31.947739263143987 52.36874193600805 - -31.94818036063317 52.36669067900043 -31.953041507599508 - 52.36659929409392 -31.95443305049401 52.369376203479014 - -31.947955104361693 - - - - - - - - - - - - - - - - - - 0a6b3bbb-912b-4afd-9412-33947d8dca61 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.369794555016334 -31.93398504143583 - 52.369727240094264 -31.933821252142682 52.36962343151356 - -31.933735239318672 52.3679875582048 -31.933408647349477 - 52.36802915351955 -31.932787080998335 52.369693660147306 - -31.93309968028133 52.3697861980821 -31.93308811303948 - 52.36985971714541 -31.93303267185691 52.369794555016334 - -31.93398504143583 - - - - - - - - - - - - - - - - - - 4d78044e-2ca4-475a-a678-123e5f7f388b - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.373419352744456 -31.94465243187102 - 52.37341876432026 -31.94356698787013 52.3738353611297 - -31.943635384361233 52.37384564168429 - -31.944668155420775 52.373419352744456 - -31.94465243187102 - - - - - - - - - - - - - - - - - - d6cf5b07-9fb4-4afb-9b47-841643da3e99 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - CONC - 80 - RIGID - B - W - TECH - - - - - - - - - - 285fd2af-599a-4f9b-b812-fd24a68416c4 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.369376203479014 -31.947955104361693 - 52.36948258558073 -31.947865454851 52.372153867201185 - -31.9483824951364 52.37336828819957 -31.94861756739893 - 52.37356087309213 -31.948652735074965 52.37396613869214 - -31.948733118334466 52.374096781103304 - -31.94875745923603 52.37429500429997 -31.948911632833443 - 52.3745158937468 -31.94927834993428 52.37490876237152 - -31.942638644826488 52.37475453248021 -31.9432259047973 - 52.3745528472377 -31.943863586078734 52.37433633219796 - -31.944296616158216 52.37404882338086 - -31.944655400246912 52.37384564168429 - -31.944668155420775 52.373419352744456 - -31.94465243187102 52.373240585956786 -31.94466222350188 - 52.373107871178895 -31.94453075660838 52.37298351392235 - -31.94438774576335 52.372846720940146 - -31.944338002860732 52.37273479940925 - -31.944331784997903 52.37259178856422 -31.94439396362618 - 52.37248632123943 -31.944468912666462 52.3724167440947 - -31.944452297228914 52.372079952926995 - -31.94441012447827 52.37202325274635 -31.944411474482564 - 52.370249685946185 -31.94399642025034 52.37006846582388 - -31.943919305304682 52.369937370416245 - -31.943788209897058 52.3698101307559 -31.943618557016602 - 52.36966361235915 -31.943132732858935 52.369376203479014 - -31.947955104361693 - - - - - - - - - - - - - - - - - - 595dfb4d-6614-4b0d-8392-5e76c720bd90 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - 4 - ANG_NI - - - 52.372075 -31.948222222222224 - - - - - - NORMAL - - - - - - - - - 1707f988-e674-4290-933c-047d87b85bd8 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - CONC - 80 - RIGID - B - W - TECH - - - - - - - - - - f2cd7c2f-2d8a-4a78-a101-b14fdd1e742c - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.37044355915342 -31.928666462531368 - 52.3705558375811 -31.925885568981418 52.37077393114787 - -31.925981131191815 52.370994179144176 - -31.926235263495247 52.37096876591384 - -31.927810883776495 52.37044355915342 - -31.928666462531368 - - - - - - - - - - - - - - - - - - 9d42afcc-298a-4d7f-9c26-14729d215da4 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - 90.0 - 70.0 - - - GRASS - - - - - - - - - - - - - 52.3732881892009 -31.943560770007306 - 52.37341876432026 -31.94356698787013 52.3738353611297 - -31.943635384361233 52.37402189701452 -31.94364160222406 - 52.37402189701452 -31.942764883565392 52.37329440706372 - -31.94275244783974 52.3732881892009 -31.943560770007306 - - - - - - - - - - - - OFZ - - - - - - - 0e131693-cf13-4938-9969-994d7f56a23c - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - CONC - 80 - RIGID - B - W - TECH - - - - - - - - - - 7c413d5e-c678-4d65-8975-c1411a5968ce - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - - - - - - - - - - - 52.374727292287155 -31.964265101088674 - 52.374597782032694 -31.964408744622993 52.37446847054829 - -31.964543670223794 52.374403184591124 - -31.96479548748714 52.37335843906866 -31.964651876423467 - 52.37319265266536 -31.964430827885742 52.37314492627653 - -31.964227362754418 52.37321871079687 - -31.961960211633183 52.3734622004889 -31.96167429078847 - 52.37366508594749 -31.961349674054734 52.37382493754196 - -31.960971595710426 52.37367432444154 -31.96407068771583 - 52.374727292287155 -31.964265101088674 - - - - - - - - - - - - - - - - - - d22653bd-826d-411c-b8d3-838eba2a8325 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - TOWER - BUILDING - - - 12.0 - - - - - - - - - - - 52.373240585956786 -31.94466222350188 - 52.373239760561745 -31.943667276726224 - 52.37253439745958 -31.943665099679613 - 52.37248632123943 -31.944468912666462 - 52.37259178856422 -31.94439396362618 - 52.37273479940925 -31.944331784997903 - 52.372846720940146 -31.944338002860732 - 52.37298351392235 -31.94438774576335 - 52.373107871178895 -31.94453075660838 - 52.373240585956786 -31.94466222350188 - - - - - - - - - - 40 - - - - - - - - - - - 14d8289b-4628-41c3-bcaa-be6e26e4b96a - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - AIS-MET - BUILDING - - - - - - - - - - - - - 52.3724167440947 -31.944452297228914 - 52.3724257628338 -31.943804648367422 - 52.37207199275941 -31.943801818206826 - 52.372079952926995 -31.94441012447827 - 52.3724167440947 -31.944452297228914 - - - - - - - - - - - - - - - - - - - - 9c171b9f-90d3-46e8-84b2-a8348e65e839 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - TERMINAL - BUILDING - - - 15.0 - - - - - - - - - - - 52.37202325274635 -31.944411474482564 - 52.37202671018989 -31.942652773005218 - 52.37024936933618 -31.942381077588088 - 52.370249685946185 -31.94399642025034 - 52.37202325274635 -31.944411474482564 - - - - - - - - - - 31.5 - - - - - - - - - - - 6d323fef-9ddb-4f7e-9986-a945276ed585 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - HANGAR - - - 52.372733333333336 -31.94905 - - - - - NORMAL - - - HANGAR - - - - - - - 0a12b87b-fe93-4dbd-8f77-94b97d262083 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - HANGAR - BUILDING - - - 20.0 - - - - - - - - - - - 52.37336828819957 -31.94861756739893 - 52.373304536303785 -31.94973261520167 - 52.37212152917504 -31.949528843638824 - 52.372153867201185 -31.9483824951364 - 52.37336828819957 -31.94861756739893 - - - - - - - - - - 55 - - - - - - - - - - - - 742a1aa1-10a4-435e-9e18-7a0a30d1af59 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - - BUILDING - - - - - - - - - - - - - 52.37396613869214 -31.948733118334466 - 52.37397188482283 -31.949405421842457 - 52.37355868137594 -31.949377120236502 - 52.37356087309213 -31.948652735074965 - 52.37396613869214 -31.948733118334466 - - - - - - - - - - - - - - - - - - - - 225d45f0-b285-4d85-a699-84f76c57f4f8 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - PARKING - BUILDING - - - - - - - - - - - - - 52.371823023325824 -31.942040997867267 - 52.37068117016678 -31.941727301944454 - 52.37095094866041 -31.936588962728788 - 52.37164735360905 -31.9357419837372 - 52.372199458433194 -31.936369375582817 - 52.37206770614562 -31.93879738202539 - 52.37200496696106 -31.93947496521866 - 52.37194222777649 -31.941790041129018 - 52.371823023325824 -31.942040997867267 - - - - - - - - - - - - - - - - - - - - 21a13c9f-a8ff-4fdd-9aaa-5dbfd91514b8 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - P - EAP2 - EAP2_VAARDNOR - - - - - 20000 - GND - - - - - - - - - - - 52.36666666666667 -22.1 - - 15.0 - - - - - - - - - - - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - NUCLEAR - ACTIVE - - - CEILING - FLOOR - BETWEEN - - - - - - - - - - - 6a23b1fb-5eba-468e-974a-d37cdecf089f - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - R - EAR1 - EAR1_BRAVO - - - - - 1525 - SFC - GND - - - - - - - - - - - 55.233333333333334 - -36.166666666666664 55.23116372807667 - -36.89437337916484 - - - - 55.233333333333334 - -36.166666666666664 - - 25.0 - 270.0 - - 497.0 - - - 54.92816350530716 - -35.674116070018954 55.233333333333334 - -36.166666666666664 - - - - - - - - - - - - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - SHOOTING - ACTIVE - - - 1525 - SFC - FLOOR - SFC - BETWEEN - - - - - - - - - - - 1e2c1cc2-49a5-4fc2-bce7-7ffc60eb7666 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - R - EAR3 - EAR3_BURGENVALK - - - - - 360 - STD - 230 - STD - - - - - - - - - - - 50.46666666666667 - -38.46666666666667 50.43333333333333 - -34.0 48.8 -34.0 49.0 -38.46666666666667 - 50.46666666666667 -38.46666666666667 - - - - - - - - - - - - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - AIR_GUN - ACTIVE - - - 360 - STD - 230 - STD - BETWEEN - - - - - - - - - - - cae20e0e-7b7e-4bab-8f22-5b11f0a0a0d6 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - R - EAR5 - EAR5_WINSWUK - - - - - 360 - STD - GND - - - - - - - - - - - 47.333333333333336 - -39.666666666666664 43.666666666666664 - -36.5 43.0 -38.0 44.03333333333333 -40.0 - 47.0 -41.0 47.333333333333336 - -39.666666666666664 - - - - - - - - - - - - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - EXERCISE - ACTIVE - - - 360 - STD - FLOOR - SFC - BETWEEN - - - - - - - - - - - 8c6e9bea-f725-47bc-9106-ba00c27baba9 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - D - EAD4 - EAD4_HORSHAM - - - - - 360 - STD - GND - - - - - - - - - - - 45.501666666666665 - -29.006944444444443 - - 20.0 - - - - - - - - - - - - - - - - - - - UTC - MON - 07:00 - 17:00 - NO - - - - - UTC - TUE - 07:00 - 17:00 - NO - - - - - UTC - WED - 07:00 - 17:00 - NO - - - - - UTC - THU - 07:00 - 17:00 - NO - - - - - UTC - FRI - 07:00 - 17:00 - NO - - - AIR_DROP - ACTIVE - - - 360 - STD - FLOOR - SFC - BETWEEN - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - - - UTC - MON - 07:00 - 17:00 - NO - YES - - - - - UTC - TUE - 07:00 - 17:00 - NO - YES - - - - - UTC - WED - 07:00 - 17:00 - NO - YES - - - - - UTC - THU - 07:00 - 17:00 - NO - YES - - - - - UTC - FRI - 07:00 - 17:00 - NO - YES - - - AIR_DROP - INACTIVE - - - 360 - STD - FLOOR - SFC - BETWEEN - - - - - - - - - - - 4f745d73-4ecd-486b-8023-54a5e5a94513 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - D - EAD6 - EAD6_DONLON - - - - - 360 - STD - GND - - - - - - - - - - - 52.38333333333333 - -31.216666666666665 - - 8.0 - - - - - - - - - - - - - - - - - - - UTC - MON - 07:00 - 16:00 - NO - - - - - UTC - TUE - 07:00 - 16:00 - NO - - - - - UTC - WED - 07:00 - 16:00 - NO - - - - - UTC - THU - 07:00 - 16:00 - NO - - - - - UTC - FRI - 07:00 - 16:00 - NO - - - AIR_GUN - ACTIVE - - - 360 - STD - FLOOR - SFC - BETWEEN - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - - - UTC - MON - 07:00 - 16:00 - NO - YES - - - - - UTC - TUE - 07:00 - 16:00 - NO - YES - - - - - UTC - WED - 07:00 - 16:00 - NO - YES - - - - - UTC - THU - 07:00 - 16:00 - NO - YES - - - - - UTC - FRI - 07:00 - 16:00 - NO - YES - - - AIR_GUN - INACTIVE - - - 360 - STD - FLOOR - SFC - BETWEEN - - - - - - - - - - - f0331134-d00a-4f9b-ac4f-34718d462729 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - TMA - NIBORD - - - - - - 450 - STD - 450 - SFC - - - - - - - - - - - 48.848333333333336 - -23.236666666666668 - - 50.0 - - - - - - - - - - - - - - - - - - - - - 2012-04-07T23:59:00Z - 2012-06-14T23:59:00Z - - - TEMPDELTA - 1 - - - INACTIVE - - - CEILING - FLOOR - BETWEEN - - - - - - - REMARK - - - Class G Airspace. - - - - - - - - - - - - - - - - 04888c9d-6735-4bb2-9dd7-f4728e0fe8ce - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - DECCA - MANGERN CHAIN - - - - - - - b9024736-3a25-4c92-9b2f-bfc0e29ae31b - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - FELDMAD - MASTER - 85.72 - - - - 52.44166666666666 -23.7125 - - - - - OPERATIONAL - - - - - - - - - 7d4ffd7a-4036-40ff-87a5-db946b5af428 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - KYLLSTAD - RED_SLAVE - 114.2928 - - - - 51.36527777777778 -21.534444444444446 - - - - - OPERATIONAL - - - - - - - - - 81c51d5f-b0ad-49d1-9ace-5d5068d107a2 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - VENZE - GREEN_SLAVE - 128.5794 - - - - 54.285555555555554 -24.269444444444442 - - - - - OPERATIONAL - - - - - - - - - 64b7ddc6-43b2-46cb-80b7-6c2b8c40e29a - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - LAUTERBER - PURPLE_SLAVE - 71.433 - - - - 51.32361111111111 -25.989166666666666 - - - - - OPERATIONAL - - - - - - - - - f4569050-2c6f-4195-b92a-a92802cb8524 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - T_COV - DISTANCE - - - - CCA - 000 - 360 - TRUE - 0 - 500 - - - - - - - - - 9481f274-f05b-4c00-9017-eae75d33c45b - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - ATURA - MAR_BCN - WHITE - YES - - - 55.36666666666667 -33.983333333333334 - - - - - - - - - a552aba9-aed1-452f-a50e-347281817f96 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2013-04-23T12:00:00Z - - - - BASELINE - 1 - - - 2013-04-23T12:00:00Z - - - - CETA - MAR_BCN - GREEN - YES - - - 43.2 -33.36666666666667 - - - - - - - - - bf108180-75dd-4326-af29-561bf28a8c31 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2012-07-10T07:00:00Z - 2012-07-10T07:16:00Z - - - BASELINE - 1 - - - 2012-07-10T07:00:00Z - 2012-07-10T07:16:00Z - - - NOTAM_4_02_1 - DIGITAL - SAA.ACT - - - A - 1 - 2012 - N - 2012-07-06T23:15:00 - EAXX - QRRCA - IV - BO - W - 5200N03100W - 999 - EADD - 1207100700 - 1207101600 - TEMPORARY RESERVED AREA ACR001 ACTIVE MILITARY EXERCISE TAKING PLACE. - FOR FURTHER INFORMATION PLEASE CONTACT DONLON ACC ON PHONE (12)123 45 67. - - 210 - 330 - - - - - - - - - - 2012-07-10T07:00:00Z - - - PERMDELTA - 1 - - - 2012-07-10T07:00:00Z - 2012-07-10T07:16:00Z - - - NOTAM_4_02_1 - DIGITAL - SAA.ACT - - - A - 1 - 2012 - N - 2012-07-06T23:15:00 - EAXX - QRRCA - IV - BO - W - 5200N03100W - 999 - EADD - 1207100700 - 1207101600 - TEMPORARY RESERVED AREA ACR001 ACTIVE MILITARY EXERCISE TAKING PLACE. - FOR FURTHER INFORMATION PLEASE CONTACT DONLON ACC ON PHONE (12)123 45 67. - - 210 - 330 - - - - - - - - - - cc1bdbc7-476c-4b04-81c0-8f5e7ccb454b - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2012-04-07T23:59:00Z - 2012-06-14T23:59:00Z - - - BASELINE - 1 - - - 2012-04-07T23:59:00Z - 2012-06-14T23:59:00Z - - - NOTAM_4_03_2 - DIGITAL - ATSA.ACT - - - A - 2 - 2012 - N - 2012-04-05T11:58:32 - EAXX - QATCD - IV - NBO - AE - 4850N02314W - 050 - EADD - 1204072359 - 1206142359 - TMA (NIBORD) NOT ACTIVE. - CLASS G AIRSPACE. - - 000 - 999 - - - - LOCAL_FORMAT - - - - - - - - - - - 2012-04-07T23:59:00Z - - - PERMDELTA - 1 - - - 2012-04-07T23:59:00Z - 2012-06-14T23:59:00Z - - - NOTAM_4_03_2 - DIGITAL - ATSA.ACT - - - A - 2 - 2012 - N - 2012-04-05T11:58:32 - EAXX - QATCD - IV - NBO - AE - 4850N02314W - 050 - EADD - 1204072359 - 1206142359 - TMA (NIBORD) NOT ACTIVE. - CLASS G AIRSPACE. - - 000 - 999 - - - - LOCAL_FORMAT - - - - - - - - - - - 4935e16e-2a7d-464b-a537-477c7af1acbb - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2012-11-07T08:00:00Z - 2012-11-17T17:00:00Z - - - BASELINE - 1 - - - 2012-11-07T08:00:00Z - 2012-11-17T17:00:00Z - - - NOTAM_4_04_1 - DIGITAL - SAA.NEW - - - A - 3 - 2012 - N - 2012-11-05T07:52:43 - EAXX - QRRCA - IV - BO - W - 5301N03116W - 999 - EADD - 1211070800 - 1211171700 - DAILY 0800-1700 - TEMPORARY RESTRICTED AREA (EAR0003-12) ESTABLISHED - FOR UNSPECIFIED HAZARD AS FOLLOWS: 525533N 0312746W - 530148N 0313416W - 531005N - 0312042W - 531005N 0310842W - 525617N 0305706W - 525235N 0310612W - 525533N 0312746W. - - 000 - 600 - - - - LOCAL_FORMAT - - - - - - - - - - - 2012-11-07T08:00:00Z - - - PERMDELTA - 1 - - - 2012-11-07T08:00:00Z - 2012-11-17T17:00:00Z - - - NOTAM_4_04_1 - DIGITAL - SAA.NEW - - - A - 3 - 2012 - N - 2012-11-05T07:52:43 - EAXX - QRRCA - IV - BO - W - 5301N03116W - 999 - EADD - 1211070800 - 1211171700 - DAILY 0800-1700 - TEMPORARY RESTRICTED AREA (EAR0003-12) ESTABLISHED - FOR UNSPECIFIED HAZARD AS FOLLOWS: 525533N 0312746W - 530148N 0313416W - 531005N - 0312042W - 531005N 0310842W - 525617N 0305706W - 525235N 0310612W - 525533N 0312746W. - - 000 - 600 - - - - LOCAL_FORMAT - - - - - - - - - - - - 028e6905-f99a-4ca7-a736-2c0787cdcf57 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2012-11-07T08:00:00Z - 2012-11-17T17:00:00Z - - - BASELINE - 1 - - - 2012-11-07T08:00:00Z - - - - R - EAR0003-12 - - - 1 - - - 60000 - MSL - GND - - - - - - - - - - - 52.9282371670167 - -31.461114091711558 53.03083043591206 - -31.568915849359982 53.16843418881167 - -31.345348764204196 53.18194444444444 - -31.1945 - - - - - - - - - - - 52.96333333333334 - -30.999444444444446 52.90720345892345 - -31.130039397963714 52.9282371670167 - -31.461114091711558 - - - - - - - - - - - - - - - - - - - - UTC - ANY - 08:00 - 17:00 - NO - - - OTHER - ACTIVE - - - 60000 - FLOOR - BETWEEN - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - NO - - - - - UTC - ANY - 08:00 - 17:00 - NO - YES - - - INACTIVE - - - 60000 - FLOOR - BETWEEN - - - - - - - - - - - - - - - - 2012-11-07T08:00:00Z - - - PERMDELTA - 1 - - - 2012-11-07T08:00:00Z - - - - R - EAR0003-12 - - - 1 - - - 60000 - MSL - 0 - SFC - - - - - - - - - - - 52.9282371670167 - -31.461114091711558 53.03083043591206 - -31.568915849359982 53.16843418881167 - -31.345348764204196 53.18194444444444 - -31.1945 - - - - - - - - - - - 52.96333333333334 - -30.999444444444446 52.90720345892345 - -31.130039397963714 52.9282371670167 - -31.461114091711558 - - - - - - - - - - - - - - - - - - - - UTC - ANY - 08:00 - 17:00 - NO - - - OTHER - ACTIVE - - - 60000 - FLOOR - BETWEEN - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - NO - - - - - UTC - ANY - 08:00 - 17:00 - NO - YES - - - INACTIVE - - - 60000 - FLOOR - BETWEEN - - - - - - - - - - - - - - - - c68d2c5e-9a38-4d55-afcf-4d6450dc1000 - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - IFR - YES - - - - - - - e515ea41-5e25-4580-8295-cbc33a2fde5a - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - EVEN - FL - - - 270 - - - - - 290 - - - - - 310 - - - - - - - - - - 4de2394a-6aa4-4913-99d0-ba13183facfc - - - - - 2009-01-01T00:00:00Z - - - - BASELINE - 1 - - - 2009-01-01T00:00:00Z - - - - ODD - FL - - - 280 - - - - - 300 - - - - - 320 - - - - - - - - - - 5a8ed90a-ad4e-4352-b073-26d27b0ac978 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2012-12-22T08:00:00Z - 2012-12-22T11:00:00Z - - - BASELINE - 1 - - - 2012-12-22T08:00:00Z - 2012-12-22T11:00:00Z - - - NOTAM_4_08_2 - DIGITAL - AD.CLS - - - A - 4 - 2012 - N - 2012-12-21T07:45:00Z - EADD - QFALT - V - NBO - A - 5222N03157W - 999 - EADD - 1212220800 - 1212221100EST - AD CLOSED EXCEPT FOR IFR. - DUE TO WX BELOW MIN VIS 4000 M. - - 000 - 999 - - - - - - - - - - 2012-12-22T08:00:00Z - - - PERMDELTA - 1 - - - 2012-12-22T08:00:00Z - 2012-12-22T11:00:00Z - - - NOTAM_4_08_2 - DIGITAL - AD.CLS - - - A - 4 - 2012 - N - 2012-12-21T07:45:00Z - EADD - QFALT - V - NBO - A - 5222N03157W - 999 - EADD - 1212220800 - 1212221100EST - AD CLOSED EXCEPT FOR IFR. - DUE TO WX BELOW MIN VIS 4000 M. - - 000 - 999 - - - - - - - - - - ff3ab666-d8d0-428c-8304-5922ee4636b5 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2012-11-22T22:00:00Z - 2012-11-23T04:00:00Z - - - BASELINE - 1 - - - 2012-11-22T22:00:00Z - 2012-11-23T04:00:00Z - - - NOTAM_4_09_1 - DIGITAL - RWY.CLS - - - A - 5 - 2012 - N - 2012-11-21T11:03:00 - EADD - QMRLC - IV - NBO - A - 5222N03157W - 999 - EADD - 1211222200 - 1211230400 - RWY 09L/27R CLOSED. - 000 - 999 - - - - - - - - - - 2012-11-22T22:00:00Z - - - PERMDELTA - 1 - - - 2012-11-22T22:00:00Z - 2012-11-23T04:00:00Z - - - NOTAM_4_09_1 - DIGITAL - RWY.CLS - - - A - 5 - 2012 - N - 2012-11-21T11:03:00 - EADD - QMRLC - IV - NBO - A - 5222N03157W - 999 - EADD - 1211222200 - 1211230400 - RWY 09L/27R CLOSED. - 000 - 999 - - - - - - - - - - 3dbc9405-69ab-4f1a-9010-ab64a1dbcc1a - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2012-10-07T07:00:00Z - 2012-10-07T14:00:00Z - - - BASELINE - 1 - - - 2012-10-07T07:00:00Z - 2012-10-07T14:00:00Z - - - NOTAM_4_09_9_1 - DIGITAL - NAV.UNS - - - A - 6 - 2012 - N - 2012-10-06T09:42:00Z - EAXX - QNMAS - IV - NBO - E - 5522N03223W - 999 - EAXX - 1210070700 - 1210071400 - BOORSPIJK VOR/DME - BOR - 115.500 MHZ CH 102X U/S. - DUE TO MAINT. - DO NOT USE, FALSE INDICATIONS POSS. - - 000 - 999 - - - - - - - - - - 2012-10-07T07:00:00Z - - - PERMDELTA - 1 - - - 2012-10-07T07:00:00Z - 2012-10-07T14:00:00Z - - - NOTAM_4_09_9_1 - DIGITAL - NAV.UNS - - - A - 6 - 2012 - N - 2012-10-06T09:42:00Z - EAXX - QNMAS - IV - NBO - E - 5522N03223W - 999 - EAXX - 1210070700 - 1210071400 - BOORSPIJK VOR/DME - BOR - 115.500 MHZ CH 102X U/S. - DUE TO MAINT. - DO NOT USE, FALSE INDICATIONS POSS. - - 000 - 999 - - - - - - - - - - 42875bd3-8d62-4a98-838c-871216e347b1 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2012-10-07T10:00:00Z - 2012-10-07T14:00:00Z - - - BASELINE - 1 - - - 2012-10-07T10:00:00Z - 2012-10-07T14:00:00Z - - - DIGITAL - NAV.UNS - - - A - 7 - 2012 - N - 2012-10-06T09:42:00Z - EADD - QICAS - IV - NBO - A - 5223N03157W - 999 - EADD - 1210070700 - 1210071400 - OXS ILS GP LOC - RWY 27R - U/S. - DUE TO MAINTENANCE. - - 000 - 999 - - - - - - - - - - 2012-10-07T10:00:00Z - - - PERMDELTA - 1 - - - 2012-10-07T10:00:00Z - 2012-10-07T14:00:00Z - - - DIGITAL - NAV.UNS - - - A - 7 - 2012 - N - 2012-10-06T09:42:00Z - EADD - QICAS - IV - NBO - A - 5223N03157W - 999 - EADD - 1210070700 - 1210071400 - OXS ILS GP LOC - RWY 27R - U/S. - DUE TO MAINTENANCE. - - 000 - 999 - - - - - - - - - - 5266b646-89a9-453f-b6fe-5368c38274d2 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2012-10-01T05:31:00Z - 2012-10-30T18:26:00Z - - - BASELINE - 1 - - - 2012-10-01T05:31:00Z - 2012-10-30T18:26:00Z - - - NOTAM_4_10_1 - DIGITAL - OBS.NEW - - - A - 8 - 2012 - N - 2012-09-30T10:00:00Z - EAXX - QOBCE - IV - NBO - A - 5222N03157W - 005 - EADD - 1210010531 - 1210301826 - TEMPORARY CRANE - LOCATED AT EADD. - 522222N 0315632W ELEVATION 858 FT (HEIGHT 85 FT). - 500 FT EAST OF CONTROL TOWER. - LIGHTED. - 85 FT IS A MAXIMUM HEIGHT. - - 000 - 999 - - - - - - - - - - 2012-10-01T05:31:00Z - - - PERMDELTA - 1 - - - 2012-10-01T05:31:00Z - 2012-10-30T18:26:00Z - - - NOTAM_4_10_1 - DIGITAL - OBS.NEW - - - A - 8 - 2012 - N - 2012-09-30T10:00:00Z - EAXX - QOBCE - IV - NBO - A - 5222N03157W - 005 - EADD - 1210010531 - 1210301826 - TEMPORARY CRANE - LOCATED AT EADD. - 522222N 0315632W ELEVATION 858 FT (HEIGHT 85 FT). - 500 FT EAST OF CONTROL TOWER. - LIGHTED. - 85 FT IS A MAXIMUM HEIGHT. - - 000 - 999 - - - - - - - - - - df421db4-3698-4003-9d71-93ca57e70ffc - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2012-10-01T05:31:00Z - 2012-10-30T18:26:00Z - - - BASELINE - 1 - - - 2012-10-01T05:31:00Z - - - - EADD_CRANE_1 - CRANE - YES - - - - - - REMARK - - - 500 FT EAST OF CONTROL TOWER - - - - - 85.0 - CRANE - NO - - - 52.3727777777778 -31.9422222222222 - 858 - - - - - - - WARNING - - - located at airport EADD - - - - - - - REMARK - - - 85 FT IS A MAXIMUM HEIGHT - - - - - - - - - - - - - - - - 2012-10-01T05:31:00Z - - - PERMDELTA - 1 - - - 2012-10-01T05:31:00Z - - - - EADD_CRANE_1 - CRANE - YES - - - 85.0 - CRANE - NO - - - 52.3727777777778 -31.9422222222222 - 858 - - - - - - - WARNING - - - located at airport EADD - - - - - - - - horizontalProjectionlocation - REMARK - - - 500 FT EAST OF CONTROL TOWER - - - - - - - REMARK - - - 85 FT IS A MAXIMUM HEIGHT - - - - - - - - - - - - - - - - 7af080ab-a1c2-48b1-a677-e9f51fd32b26 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2012-10-01T04:30:00Z - 2012-10-09T14:29:00Z - - - BASELINE - 1 - - - 2012-10-01T04:30:00Z - 2012-10-09T14:29:00Z - - - NOTAM_4_10_2 - DIGITAL - OBS.NEW - - - A - 9 - 2012 - N - 2012-09-30T02:34:00Z - EAXX - QOBCE - IV - NBO - AE - 5222N03157W - 005 - EADD - 1210010430 - 1210091429 - DAILY 0430-1429 - TEMPORARY MOBILE CRANE - AT PSN 522116N 0315648W ELEVATION 675 FT (HEIGHT 483 FT). - LIGHTED ICAO MARKED. - - 000 - 999 - - - - - - - - - - 2012-10-01T04:30:00Z - - - PERMDELTA - 1 - - - 2012-10-01T04:30:00Z - 2012-10-09T14:29:00Z - - - NOTAM_4_10_2 - DIGITAL - OBS.NEW - - - A - 9 - 2012 - N - 2012-09-30T02:34:00Z - EAXX - QOBCE - IV - NBO - AE - 5222N03157W - 005 - EADD - 1210010430 - 1210091429 - DAILY 0430-1429 - TEMPORARY MOBILE CRANE - AT PSN 522116N 0315648W ELEVATION 675 FT (HEIGHT 483 FT). - LIGHTED ICAO MARKED. - - 000 - 999 - - - - - - - - - - aa0c0b1e-3e9c-4564-b858-ace28b473c0a - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2012-10-01T04:30:00Z - 2012-10-09T14:29:00Z - - - BASELINE - 1 - - - 2012-10-01T04:30:00Z - - - - EADD_CRANE_2 - CRANE - YES - - - - - UTC - ANY - 04:30 - 14:29 - NO - - - 483.0 - CRANE - YES - - - 52.3544444444444 -31.9466666666667 - 675 - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - - - UTC - ANY - 04:30 - 14:29 - NO - YES - - - 0.0 - - - 52.3544444444444 -31.9466666666667 - 0 - - - - - - - markingICAOStandard - DESCRIPTION - - - ICAO marked. - - - - - - - - - - - 2012-10-01T04:30:00Z - - - PERMDELTA - 1 - - - 2012-10-01T04:30:00Z - - - - EADD_CRANE_2 - CRANE - YES - - - - - UTC - ANY - 04:30 - 14:29 - NO - - - 483.0 - CRANE - YES - - - 52.3544444444444 -31.9466666666667 - 675 - - - - - - - - - UTC - ANY - 00:00 - 23:59 - NO - - - - - UTC - ANY - 04:30 - 14:29 - NO - YES - - - 0.0 - - - 52.3544444444444 -31.9466666666667 - 0 - - - - - - - markingICAOStandard - DESCRIPTION - - - ICAO marked. - - - - - - - - - - - c136dd70-0070-4808-9416-949614291cec - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2012-10-01T00:00:00Z - - - - BASELINE - 1 - - - 2012-10-01T00:00:00Z - - - - NOTAM_4_10_3 - DIGITAL - OBS.NEW - - - A - 10 - 2012 - N - 2012-09-28T23:52:00Z - EAXX - QOBCE - IV - NBO - AE - 5226N03205W - 999 - EADD - 1210010000 - PERM - PERMANENT GROUP OF WINDMILL. - 522542N 0320519W ELEVATION 499 FT (HEIGHT 493 FT). - LIGHTED DAY AND NIGHT MARKED. - GROUP OF 3. - - 000 - 999 - - - - - - - - - - 2012-10-01T00:00:00Z - - - PERMDELTA - 1 - - - 2012-10-01T00:00:00Z - - - - NOTAM_4_10_3 - DIGITAL - OBS.NEW - - - A - 10 - 2012 - N - 2012-09-28T23:52:00Z - EAXX - QOBCE - IV - NBO - AE - 5226N03205W - 999 - EADD - 1210010000 - PERM - PERMANENT GROUP OF WINDMILL. - 522542N 0320519W ELEVATION 499 FT (HEIGHT 493 FT). - LIGHTED DAY AND NIGHT MARKED. - GROUP OF 3. - - 000 - 999 - - - - - - - - - - 4722e24f-2d13-45a6-8189-32dd4ee82cff - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2013-04-23T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data, including Digital NOTAM Events; initially - created by Luciad (www.luciad.be); currently maintained by Eurocontrol. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - 2012-10-01T00:00:00Z - - - - BASELINE - 1 - - - 2012-10-01T00:00:00Z - - - - WINDMILL_FARM - WINDMILL - YES - YES - YES - - - 493.0 - WINDMILL - MARKERS - - - 52.4283333333333 -32.0886111111111 - 499 - - - - - - - markingICAOStandard - DESCRIPTION - - - Day and night marked. - - - - - - - group - DESCRIPTION - - - GROUP OF 3 - - - - - - - - - - - 2012-10-01T00:00:00Z - - - PERMDELTA - 1 - - - 2012-10-01T00:00:00Z - - - - WINDMILL_FARM - WINDMILL - YES - YES - YES - - - 493.0 - WINDMILL - MARKERS - - - 52.4283333333333 -32.0886111111111 - 499 - - - - - - - markingICAOStandard - DESCRIPTION - - - Day and night marked. - - - - - - - group - DESCRIPTION - - - GROUP OF 3 - - - - - - - - - - - - - - e9ce3cc0-b41f-11e3-a5e2-0800200c9a66 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2014-03-25T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data; initially created by COMSOFT - (www.comsoft.aero); currently maintained by Eurocontrol. This feature demonstrates a - canceled commissioning. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - - 2012-10-01T05:31:00Z - - - PERMDELTA - 1 - - - 2012-10-01T05:31:00Z - - - - EADD_CRANE_3 - CRANE - YES - - - 85.0 - CRANE - NO - - - 52.3727777777778 -31.943 - 858 - - - - - - - WARNING - - - located at airport EADD - - - - - - - - horizontalProjectionlocation - REMARK - - - 250 FT EAST OF CONTROL TOWER - - - - - - - REMARK - - - 85 FT IS A MAXIMUM HEIGHT - - - - - - - - - - - PERMDELTA - 1 - 1 - - - - - - - - - - - - - - - - 8c755520-b42b-11e3-a5e2-0800400c9a66 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2014-03-25T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data; initially created by COMSOFT - (www.comsoft.aero); currently maintained by Eurocontrol. This feature demonstrates a - canceled decommissioning. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - - 2012-10-01T05:31:00Z - - - PERMDELTA - 1 - - - 2012-10-01T05:31:00Z - - - - EADD_CRANE_4 - CRANE - YES - - - 85.0 - CRANE - NO - - - 52.3727777777778 -31.9435 - 858 - - - - - - - WARNING - - - located at airport EADD - - - - - - - - horizontalProjectionlocation - REMARK - - - 150 FT EAST OF CONTROL TOWER - - - - - - - REMARK - - - 85 FT IS A MAXIMUM HEIGHT - - - - - - - - - - - - 2012-10-30T05:31:00Z - - - PERMDELTA - 2 - - - 2012-10-01T05:31:00Z - 2012-10-30T05:31:00Z - - - - - - - - - PERMDELTA - 2 - 1 - - - - - - - - 2012-11-01T15:30:00Z - - - PERMDELTA - 3 - YES - - - - - - - PERMDELTA - 3 - 1 - - - - - - - - 2012-11-30T05:31:00Z - - - PERMDELTA - 4 - - - 2012-10-01T05:31:00Z - 2012-11-30T05:31:00Z - - - - - - - - - - - - 8c755520-b42b-11e3-a5e2-0800500c9a66 - - - - utf8 - - - - - - EUROCONTROL - - - - - - - http://www.eurocontrol.int - - - - - - - author - - - - - - 2014-03-25T12:00:00Z - - - - - - - DONLON Sample - - - - - 2013-04-23T00:00:00Z - - - publication - - - - - - - - Donlon sample data; initially created by COMSOFT - (www.comsoft.aero); currently maintained by Eurocontrol. This feature demonstrates - combinations of properties with schedules, PERMDELTAs and TEMPDELTAs. - - - - - - Eduard Porosnicu - - - Eurocontrol - - - - - - - www.aixm.aero - - - AIXM 5.1 website - - - - - - - pointOfContact - - - - - - - - To be used for demonstration purposes only! Any operational - usage is prohibited! - - - - - - eng - - - transportation - - - - - - - - - - - 2012-10-01T05:31:00Z - - - PERMDELTA - 1 - - - 2012-10-01T05:31:00Z - - - - EADD_CRANE_5 - CRANE - YES - - - - - UTC - ANY - 04:30 - 14:29 - NO - - - 85.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - UTC - ANY - 00:00 - 24:00 - NO - - - - - UTC - ANY - 04:30 - 14:29 - NO - YES - - - 0.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - - - - 2012-10-11T15:30:00Z - - - PERMDELTA - 2 - - - - - UTC - ANY - 04:30 - 17:29 - NO - - - 85.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - UTC - ANY - 00:00 - 24:00 - NO - - - - - UTC - ANY - 04:30 - 17:29 - NO - YES - - - 0.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - - - - 2012-11-01T15:30:00Z - - - PERMDELTA - 3 - - - - - UTC - ANY - 04:30 - 16:29 - NO - - - 85.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - UTC - ANY - 00:00 - 24:00 - NO - - - - - UTC - ANY - 04:30 - 16:29 - NO - YES - - - 0.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - - - - 2012-10-12T00:00:00Z - 2012-10-18T23:59:59Z - - - TEMPDELTA - 1 - NO - - - - - UTC - ANY - 00:00 - 24:00 - NO - - - 0.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - - - - 2012-10-12T00:00:00Z - 2012-10-19T23:59:59Z - - - TEMPDELTA - 1 - 1 - - - - - UTC - ANY - 00:00 - 24:00 - NO - - - 0.0 - CRANE - YES - - - 52.3727777777778 -31.9425 - 858 - - - - - - - - - - - fdaeffb4-6897-41fb-a33d-8861c2e91e69 - - - - - - 2011-01-13T00:00:00Z - - - - BASELINE - 1 - 0 - - - 2002-11-30T00:00:00Z - - - - CTA - EAMM - MAGNETTO OCA - NO - - - BASE - 1 - - - - - FULL_GEOMETRY - - - - - - - - - - UNION - 2 - - - - - FULL_GEOMETRY - - - - - - - - - - - - - - 0df377fe-dd53-4d60-b6c4-6546ef31d26b - - - - - - 2013-09-19T00:00:00Z - - - - BASELINE - 1 - 0 - - - 2010-11-01T00:00:00Z - - - - PART - EAMM - MAGNETTO OCA PART 1 - NO - - - - - 460 - STD - 210 - STD - - - - - - - - - - - 51.99333333333333 -6.0005 - 52.45333333333333 -5.869333333333333 - 52.81666666666667 -5.89 - 53.53333333333333 -5.981666666666667 - 53.89333333333333 -5.937833333333333 - 53.905 -6.0038333333333334 - 53.916666666666664 -6.099333333333333 - - - - - - - - - - - - - - - - - - - - - - 010d8451-d751-4abb-9c71-f48ad024045b - - - - - - 2013-09-19T00:00:00Z - - - - BASELINE - 1 - 0 - - - 2010-11-01T00:00:00Z - - - - PART - EAMM2 - MAGNETTO OCA PART 2 - NO - - - - - 460 - STD - 210 - STD - - - - - - - - - - - 53.876666666666665 - -5.863333333333333 53.89333333333333 - -5.937833333333333 53.53333333333333 - -5.981666666666667 52.81666666666667 - -5.89 52.45333333333333 - -5.869333333333333 52.516666666666666 - -5.850666666666667 52.583333333333336 - -5.831666666666667 53.3 -5.755 53.7 - -5.786666666666667 53.718333333333334 - -5.8083333333333336 53.876666666666665 - -5.863333333333333 - - - - - - - - - - - - - - - - - - - + + + + -32.0886111111111 -47.0 + 57.690815969999996 52.4283333333333 + + + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + -47.0 + + + 52.4283333333333 + + + 57.690815969999996 + + + -32.0886111111111 + + + + + + + + + + + + 6384a4e0-8497-4f83-8eaa-d73ef549d90e + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + REPUBLIC OF DONLON + STATE + + + + + + + c225ae5c-540f-4a48-8867-809b393b2407 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + CIVIL AVIATION AUTHORITY + NTL_AUTH + + + OWNED_BY + + + + + + + + + + 1e1bdf59-3dd6-4f96-9166-e6095e7231fc + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + DONLON + NTL_AUTH + + + + + + + 74efb6ba-a52a-46c0-a16b-03860d356882 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + DONLON_HELIPORT_AUTHORITY + NTL_AUTH + + + + + + + b6df119e-cc7c-48cc-9575-c4160c64d733 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + HOL + 01-01 + NEWYEARSDAY + + + + + + + + 4d0ecbdb-4cba-4047-8351-29283adf67c7 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2014-01-01T00:00:00Z + 2014-12-31T23:59:59Z + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + HOL + 17-04 + 2014 + MAUNDYTHURSDAY + + + + + + + + 2015-01-01T00:00:00Z + 2015-12-31T23:59:59Z + + + BASELINE + 2 + + + 2009-01-01T00:00:00Z + + + + HOL + 02-04 + 2015 + MAUNDYTHURSDAY + + + + + + + + 20f19a35-401b-45a6-a54e-084122a4cf80 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2014-01-01T00:00:00Z + 2014-12-31T23:59:59Z + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + HOL + 18-04 + 2014 + GOODFRIDAY + + + + + + + + 2015-01-01T00:00:00Z + 2015-12-31T23:59:59Z + + + BASELINE + 2 + + + 2009-01-01T00:00:00Z + + + + HOL + 03-04 + 2015 + GOODFRIDAY + + + + + + + + 39755baa-4c27-4c9f-b08c-df05cff2fb09 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2014-01-01T00:00:00Z + 2014-12-31T23:59:59Z + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + HOL + 21-04 + 2014 + EASTERMONDAY + + + + + + + + 2015-01-01T00:00:00Z + 2015-12-31T23:59:59Z + + + BASELINE + 2 + + + 2009-01-01T00:00:00Z + + + + HOL + 06-04 + 2015 + EASTERMONDAY + + + + + + + + 02e42ef0-7be7-4c60-b8d9-790b79fa3839 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + IF + 1829 + ABOVE_LOWER + + + + + + + 6c8b3cb4-c0fe-4afd-ac63-cb2a9060db73 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TRID + + + + + + + + + + + + + + 9c6a4679-14f3-4ffb-a2bc-2d43f81722b6 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 3a17efd0-adfe-4899-9d4c-5b8ac591645b + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 1a6f046a-e7aa-44e8-9712-aaaf89921734 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 5a99887d-ab43-4163-95a4-b9699c651d98 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + d9d27801-b6ae-4508-a27e-bf55da19fd35 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 1829 + ABOVE_LOWER + + + + + + + 6a2f2658-bba5-49e0-bdc5-9b31aa1e1dbf + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TSI + + + + + + + + + + + + + + + + + + + + + + + + + + + + EKCOMBE + + + + + + + 1c7a5f5d-f4fe-49da-8746-5112d62a4a04 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + IF + 277.0 + TRUE_BRG + 5556.0 + 914.4 + ABOVE_LOWER + + + + + + + 63dae92f-2014-42ca-a83f-73cefcec03e8 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TF + 229.0 + TRUE_BRG + LEFT + 7408.0 + + + + + + + 077bc42e-c2f2-40fc-8a84-b4f2eaaae0bc + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TF + 184.0 + TRUE_BRG + LEFT + 3704.0 + + + + + + + 4fc8c993-ba3e-4513-be88-d379e3c45fe6 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TF + 184.0 + TRUE_BRG + 5741.2 + 914.4 + AS_ASSIGNED + + + + + + + d34158b7-1755-4fa3-a197-5b266698f5b6 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + CF + 184.0 + TRUE_BRG + 4074.4000000000005 + + + + + + + a80b3299-65e5-4f4b-9067-30f282cbb1bc + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + CF + 184.0 + TRUE_BRG + 7408.0 + 399.3 + ABOVE_LOWER + + + + + + + 436adbb9-1838-4bc7-945a-e421100f7dcb + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + CF + 184.0 + TRUE_BRG + 9630.4 + AS_ASSIGNED + + + + + + + c8d2e419-6159-4693-b465-d96a063fa648 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + FM + AS_ASSIGNED + + + + + + + 1a24b3c6-2183-4a01-ad8d-10227fd06931 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TRID + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 231a7794-c9bd-4e9e-a5d1-03f1c1f1687c + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 184.0 + TRUE_BRG + 4630.0 + + + + + + + 754e335c-75ec-4ef4-941d-97fe4581063a + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 119.0 + TRUE_BRG + RIGHT + + + + + + + ed85c0e6-2461-43d8-aca2-39d6afb254e7 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 5741.2 + + + + + + + c1ee96e8-a60c-4e27-9c79-3c9853aa495d + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 1829 + ABOVE_LOWER + + + + + + + 2d6916fc-c635-4ad7-8275-3e0eab65104b + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TSI + + + + + + + + + + + + + + + + + + + + + + + EKCOMB2 + + + + + + + 970f9309-8a52-45c0-b59e-f5ab4a51ef6f + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + d0f4a733-1c13-4764-b488-caae38794349 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 62800d25-a0e8-4915-8bac-fa4eeb437d5e + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + ba6478ff-50bb-4ccb-8bfd-4e4865709823 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 481c1844-4dfd-4d7a-ae94-41027db0a20a + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + d0d29c8d-90e3-44b6-80d0-96530d38bde5 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 8123f5af-b083-41f9-a2fa-6384adef1bdf + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + e99f36b1-6441-4791-a542-d1312b995d79 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + b7fdc9e9-a77b-4db6-b781-9587b7e7407a + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 1c4c9451-bf5a-4ae0-a973-b534f96b2409 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + b19105a1-f1ce-4577-b26b-ce27f6103087 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 0c208527-6f3e-4185-aa2b-149c03f52127 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TRID + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + EKCOMBE + + + + + + + ddbc225d-4f2d-4612-9cde-8671aba24f93 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + RIGHT + + + + + + + 50f3ef75-fe6c-4d4d-8ec2-110c8d4ce106 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TSI + + + + + + + + AROMN8S + + + + + + + 58df8a48-2818-47c2-a291-cd7d9a1242d3 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + IF + 116.0 + TRUE_BRG + 7408.0 + 609.6 + ABOVE_LOWER + + + + + + + edac6cc2-c577-4ba8-a21d-e476c21bd71e + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TF + 93.0 + TRUE_BRG + LEFT + 4444.8 + + + + + + + ef0524c1-a599-4ea3-a43f-5cde190c3271 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TF + 59.0 + TRUE_BRG + LEFT + 5556.0 + + + + + + + 17d08aa6-90b8-4cf4-9175-54e192a525bb + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + FA + 59.0 + TRUE_BRG + 4259.599999999999 + 609.6 + AS_ASSIGNED + + + + + + + 2e083f81-e4b2-4c1b-8eaa-e00165357435 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + CF + 59.0 + TRUE_BRG + 7222.8 + 388.62 + AS_ASSIGNED + + + + + + + 270bdaca-566e-4651-bf90-12625c23188e + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + CF + 59.0 + TRUE_BRG + 362.712 + 609.6 + AS_ASSIGNED + + + + + + + cb2f3317-b447-4b9f-b325-246be839c3f9 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + FM + AS_ASSIGNED + + + + + + + c12b5014-444f-46da-8b25-c27d3c27f6cd + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TRID + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + f739ae66-baef-4bb6-b29a-7108eccf2d59 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + 202df567-8449-4342-adf7-43bca6fc7b87 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + TRID + + + + + + + + NOTMA4B + + + + + + + a14a8751-5428-46bc-a2d1-32ef84d37b5c + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + U + A + 4 + ATS + BOTH + + + DESCRIPTION + + + BARIM TO VEGAT + + + + + + + + + + + 9e51668f-bf8a-4f5b-ba6e-27087972b9b8 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 09L/27R + 2800.0 + 45.0 + 2920.0 + 300.0 + + + CONC + + + + + + + + + + c8455a6b-9319-4bb7-b797-08e644342d64 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 09L + 85.2300033569336 + + + + + + + + 2012-11-22T22:00:00Z + 2012-11-23T04:00:00Z + + + TEMPDELTA + 1 + + + CLOSED + + + + + + + + + b802d439-e9f3-49f9-96e1-0153b837e113 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 27R + 265.2300109863281 + 20.5 + + + + + + + + 2012-11-22T22:00:00Z + 2012-11-23T04:00:00Z + + + TEMPDELTA + 1 + + + CLOSED + + + + + + + + + e23b1f2b-b2fc-432e-a378-199ccacabe24 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + A + PARALLEL + 23.0 + + + CONC + + + + + + + + + + f16bf89e-aae9-45f7-b630-035c4f81e297 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + B + GND + 23.0 + + + CONC + + + + + + + + + + b7a01065-6ac3-462a-a27d-dc219d980f9f + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + C + FASTEXIT + 23.0 + + + CONC + + + + + + + + + + 0d466e77-319d-4371-87ef-dd02053d7a4d + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + D + EXIT + 23.0 + + + CONC + + + + + + + + + + 9dcbb852-1c24-4ded-80a8-e7456f95ccc8 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + E + PARALLEL + 23.0 + + + CONC + + + + + + + + + + 0cb4da5a-9c98-4484-92ed-edc336b8b437 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + F + GND + 23.0 + + + CONC + + + + + + + + + + 3079c4fc-e4e3-42ec-a180-7e902cb88334 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + G + GND + 23.0 + + + CONC + + + + + + + + + + 0dac7a5f-4cb6-41a2-b0eb-dac1c555351c + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + APRON + + + + + + + + 92cacc21-86bb-4050-aae9-a54e1fccbff1 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + + 1e22a662-0601-43cc-a7ef-8402885a4f2f + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + FATO + FATO + 20.0 + 20.0 + + + CONC + GOOD + + + + + + + + + + 921966d2-bae8-4b4b-bc8a-8012faf991be + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + FATO 03 + 27.329999923706055 + + + + + + + + b9fad726-bed6-4b3b-a92f-64706eaa9ed5 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + FATO 21 + 207.3300018310547 + + + + + + + + 89d085f7-4b68-4e07-9b52-5aabd5f410f3 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + SEPARATED + + + + + + + + + 080c39f8-3e90-44de-bb57-e0abcc0e4b50 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + Trucks 1.5-3.5 tonnes. Up to 10 tonnes handling possible. + + + + + + + + + + + + 89f1b92f-afd5-4ab1-808e-353446a20b6e + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + Jet A1, AVTUR, AVGAS 100 LL, oil, all types normally available. + 1 truck 45 000 litres, 50 litres/sec + + + + + + + + + PISTON + + + + + AVIA + + + + + + + + + HYDRAULIC + + + + + HYD + + + + + + + + + TURBO + + + + + TURBO + + + + + + + + + NG + + + + + OX + + + + + + + + + 53bf0a9c-c218-4928-ac31-201af9b80593 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + Available. See AD chart for location. + + + + + + + + + + + + a9d815f8-aed5-482d-ac39-dbdf9d293d02 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + Limited, by prior arrangement only + + + + + + + + + + + + a28a2b0e-3d03-42f4-8b49-ce7b22f9a258 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + Available for aircraft up to 5 700 KG. Major repairs by arrangement. + + + + + + + + + + + + + 46da4772-4a5e-4e64-ab60-04e803c068bc + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + ANY + 06:00 + 23:00 + + + + + + + Within AD HR + + + + + NORMAL + + + + + + + Rescue equipment : 2 boats of 40 persons + Capability for removal of disabled aircraft : Lifting bags and hydraulic jacks available + + + + + + + A7 + + + + + + + c1bbe653-e5b1-4bfe-b510-3ada3272305a + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + DONLONRCC + RCC + YES + + + + + + "134 Airport Road" + DONLON + 1 + DONLON + + + + + AFTN + EADDYCYX + + + + + 01236979111 + 01236979112 + + + + + + + + + + + 8323cd6d-f788-4b78-8f93-2a09a70965fb + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + AKVINSAR + SAR + YES + + + 52.618333333 -32.919999999 + 15.0 + + + + + + OWNER + + + + + + + + + + 9d169b60-b5fa-4bf4-abf3-14fd9e67a2b7 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ALL + YES + DONLONAKVINSARS + + SAR + + + + + + + d54e1d65-fefe-4776-891c-2b0e9d74c020 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ALL + YES + DONLONRCCSERVICE + + RCC + + + + + + + 306eff59-8985-488a-ad5b-24a8c13dc17e + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ALL + YES + YES + SMGCS + + + + + + + + 6c7b0abc-0a29-4a53-a5b9-9f3791119cf5 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ALL + YES + DONLONATMS + CLEARANCE + + + + + + + 590950fd-4126-46b7-b245-5944d1362c17 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 87.0 + + + + + + + + 7d6ef61e-83b4-4902-a79e-3248a5bd2935 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + White omnidirectional edge lights at intervals of 12.5 M + + + + + 12.5 + + + + + + + + 60b87049-5ff7-4d23-917d-88938128e2d3 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + Yellow floodlights at the edge of TLOF at intervals of 5 M + + + + + 5.0 + + + + + + + + e9350d29-9b29-450e-80af-a1666665ddc3 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + WHITE + + + + + White omnidirectional edge lights at intervals of 12.5 M + + + + + + + + + + + + 2e7650ef-e19f-47ee-b6f8-2866f536f5d2 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + WHITE + + + + + White omnidirectional edge lights at intervals of 12.5 M + + + + + + + + + + + + 374cc5b1-ecb9-41c6-bb2e-175e4a38d475 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIM + 600.0 + + + + + + + + 05e2e8d4-93d6-479e-887c-a92bc9485890 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIH + 900.0 + + + + + + + + 46e02ef7-9a57-4951-b26e-c3fb1dcaefbc + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + + 16630bd9-31d6-498a-be44-5cdccb572e94 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + + + + + + f7e4b6b4-5ec1-48ac-a328-6dd296a1b244 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + GREEN + CL + + + + + + + + 2cde2811-0b8e-486d-99f5-231d5d9f8df6 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + GREEN + CL + + + + + + + + d1322326-c872-4882-b2cb-ef97ca26977e + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + GREEN + CL + + + + + + + + 980391ed-a43e-401c-a0f1-c0e91c55f6fb + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + GREEN + CL + + + + + + + + 859fb5fd-3241-434e-92ad-dd45152a1902 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BLUE + EDGE + + + + + + + + ecac1a3f-56a4-49b5-960e-010e62fdf6cb + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BLUE + EDGE + + + + + + + + ef878bde-177e-44f3-b1ee-51a4b1c4b95b + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BLUE + EDGE + + + + + + + + a15a6a50-8fa5-4190-9306-1901efad0d18 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BLUE + CL + + + + + + + + 3759baea-683f-4f2f-a732-c7e57adb194a + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIH + WHITE + CL + + + + + + + + 3d619d5f-db7b-490f-8e31-08ac1a3bf2c6 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIH + WHITE + + + + + 2 800 M, 7.5 M + White; + FM 1 900 M- + 2 500 M + Red/White; + FM 2 500 M + Red; LIH + + + + + + CL + + + + + + + + 10ef9ced-a722-43d2-8be9-441b8a990181 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + WHITE + + + + + + + + 0373b89a-697f-42c9-bda5-c536c7aed15a + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OTHER:CYAN + + + + + + + + 5677508e-6e87-437b-85ed-d21e1325f117 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIH + WHITE + + + + + + + + 81604812-820c-4006-be6e-3662c8be416d + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIH + WHITE + + + + + + + + 02573093-d850-4bd9-9e82-aacd57bdd91b + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIM + WHITE + + + + + + + + 8612257e-cedb-4d5c-a258-34f854429e52 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LIM + WHITE + + + + + + + + d532589a-7108-4d48-b3c9-f37abd2590c9 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + RED + + + + + + + + dd062d88-3e64-4a5d-bebd-89476db9ebea + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + 0 + + + 2009-01-01T00:00:00Z + + + + EADH + DONLON/DOWNTOWN HELIPORT + -3.0 + 1990 + 0.03 + + + OPERATE + + + + + + 52.288888888888884 -32.035 + 18.0 + + + + + + + + + 1b54b2d6-a5ff-4e57-94c2-f4047a381c64 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + 0 + + + 2009-01-01T00:00:00Z + + + + EADD + DONLON + -3.0 + 1990 + -0.03 + 21.0 + + + DONLON + + + + + OPERATE + + + + + + 52.3716666666667 -31.9494444444444 + 30.0 + 12.0 + + + + + + + UTC + WORK_DAY + 06:00 + 20:00 + YES + + + + + UTC + SAT + 07:00 + 20:00 + YES + + + + + UTC + SUN + 07:00 + 20:00 + YES + + + + + UTC + HOL + 07:00 + 20:00 + YES + + + + NORMAL + + + + PERMIT + + + OR + + + IFR + + + + + VFR + + + + + + + + + + + + + UTC + ANY + 20:00 + 24:00 + YES + + + + + UTC + ANY + 00:00 + 06:00 + YES + + + + + UTC + SAT + 06:00 + 07:00 + YES + + + + + UTC + SUN + 06:00 + 07:00 + YES + + + + + UTC + HOL + 06:00 + 07:00 + YES + + + NORMAL + + + FORBID + ALL + + + + + + + + + + + 2012-12-22T00:00:00Z + 2012-12-22T01:00:00Z + + + TEMPDELTA + 1 + + + + + operationalStatus + REMARK + + + DUE TO WX BELOW MIN VIS 4000 M + + + + + CLOSED + + + PERMIT + + + + + IFR + + + + + + + + + + + + + + + + + + + + 238b5482-8fa0-4169-a745-686c1ca44421 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + NO + LIH + BLUE + + + PINK + LIH + FLOOD + + + + + PINK + LIH + FLOOD + + + + + PINK + LIH + FLOOD + + + + + PINK + LIH + FLOOD + + + EDGE + + + + + + + + 68655945-0f02-47a9-b300-87420ecff373 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + NO + LIL_LIH + PINK + + + PINK + LIL_LIH + STROBE + + + + + PINK + LIL_LIH + STROBE + + + + + PINK + LIL_LIH + STROBE + + + EDGE + + + + + + + + 484494d4-a3e9-4b60-8306-ebfaa78bf7d8 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + NO + LIM + GREEN + EDGE + + + + + + + + 08a1bbd5-ea70-4fe3-836a-ea9686349495 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VOR_DME + BOR + BOORSPIJK + + + 1 + + + + + + 1 + + + + + + 52.36833333333333 -32.375 + 30.0 + + + + + + + + + 2012-10-07T07:00:00Z + 2012-10-07T14:00:00Z + + + TEMPDELTA + 1 + + + UNSERVICEABLE + + + + + + + + + 7692166e-60e6-467d-b5f0-c728aeae85d6 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BOR + BOORSPIJK + + + 52.36833333333333 -32.375 + 30.0 + + + + + + + + 102X + + + + + + + 2012-10-07T07:00:00Z + 2012-10-07T14:00:00Z + + + TEMPDELTA + 1 + + + UNSERVICEABLE + + + + + availability + REMARK + + + DUE TO MAINT. FALSE INDICATIONS POSSIBLE + + + + + + + + + + + + + + + + 0a45a38f-0f96-4ace-b09e-310ac0415693 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BOR + BOORSPIJK + + + 52.36833333333333 -32.375 + 30.0 + + + + + + + + 115.5 + + + + + + + 2012-10-07T07:00:00Z + 2012-10-07T14:00:00Z + + + TEMPDELTA + 1 + + + UNSERVICEABLE + + + + + availability + REMARK + + + DUE TO MAINT. FALSE INDICATIONS POSSIBLE + + + + + + + + + + + + + + + + 51829538-2d2a-4d01-a4bf-87c045d247a8 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VOR_DME + DON + DONLON + + + 1 + + + + + + 1 + + + + + + 52.44333333333333 -32.00083333333333 + 60.0 + + + + + + + + + 8979e959-492b-4b30-83d2-060f362cf5c4 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + DON + DONLON + + + 52.44333333333333 -32.00083333333333 + 60.0 + + + + + + + + 111X + + + + + + + ea10d605-5497-42ee-9d85-a0e5f80f9b26 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + DON + DONLON + -3.0 + 1990 + + + 52.44333333333333 -32.00083333333333 + 60.0 + + + + + + + + VOR + 116.4 + + + + + + + a9c3240c-e2c9-4f9a-a573-9da452cfe84f + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LOC + KL + DONLON + + + 1 + + + + + + 52.38366666666666 -31.85063888888889 + 0.0 + + + + + + + + + 577cb727-cef0-487b-bb5f-10882677a989 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + KL + DONLON + + + 52.38366666666666 -31.85063888888889 + 0.0 + + + + + + + + 411.0 + + + + + + + 92d527c0-ae96-4695-8d0a-9b43edbc4fe6 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VOR + CAA + CALGA + + + 1 + + + + + + 52.38177777777778 -31.743361111111113 + 30.0 + + + + + + + + + b5d16d67-8e4f-4ec8-9572-003e3e58424a + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + CAA + CALGA + -3.0 + 1990 + + + 52.38177777777778 -31.743361111111113 + 30.0 + + + + + + + + VOR + 114.3 + + + + + + + cc271a99-e28c-49e6-86ac-53078e6e59e3 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VOR + EKO + EKCOMBE_VOR + + + 1 + + + + + + 47.1366666666667 -28.6416666666667 + 0.0 + + + + + + + + + 8506a23a-4a97-42fe-bddd-d23b00c2f61c + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + EKO + EKCOMBE_VOR + + + 47.1366666666667 -28.6416666666667 + 0.0 + + + + + + + + VOR + 1120.3 + + + + + + + 3afcdd1d-1ca4-4667-95af-1725ca17a70f + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VOR + LMD + LIMAD_VOR + + + 1 + + + + + + 48.8 -23.2166666666667 + 0.0 + + + + + + + + + 9cd3112a-2aaf-48c3-a01a-59699b4af6e2 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + LMD + LIMAD_VOR + + + 48.8 -23.2166666666667 + 0.0 + + + + + + + + VOR + 432.1 + + + + + + + 882e849c-682d-4e95-ac19-a7808d55cdbb + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VOR + WOB + WOBAN_VOR + + + 1 + + + + + + 42.675 -36.17333333333333 + 150.0 + + + + + + + + + fbe82608-bece-4db7-a13b-961963e1b167 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + WOB + WOBAN_VOR + + + 42.675 -36.17333333333333 + 150.0 + + + + + + + + VOR + 123.4 + + + + + + + 6237f900-1320-4f01-95ec-8378ebc26e9f + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VOR + KAV + KAVRAN + + + 1 + + + + + + 52.53841666666666 -31.920166666666667 + 0.0 + + + + + + + + + 13fe226f-271c-4d36-9f42-190563a963de + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + KAV + KAVRAN + -3.0 + 1990 + + + 52.53841666666666 -31.920166666666667 + 0.0 + + + + + + + + VOR + 115.0 + + + + + + + 4316fc95-f2f7-4789-a249-3afc0b5cc27a + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TACAN + OST + OSTO + + + 1 + + + + + + 52.51077777777778 -33.511361111111113 + 15.0 + + + + + + + + + 3e33bd78-0b9c-4d27-9060-901fcb02fa47 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OST + OSTO + -3.0 + 1990 + + + 52.51077777777778 -33.511361111111113 + 15.0 + + + + + + + + 119X + + + + + + + 0f276f15-a407-4ff5-9e51-8522493de27b + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + MKR + OM27 + OM27 + + + 1 + + + + + + 52.38366944444444 -31.850661111111112 + 0 + + + + + + + + + 268cd014-b4e4-41fa-8d90-422c3dbb96b4 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OM27 + OM27 + A3H + NO + YES + FAN + 75 + -.--....----... + + + + + + + 4fd9f4be-8c65-43f6-b083-3ced9a4b2a7f + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + R + ACR001 + + + + + 300000.0 + + + + + 47.4 -41.6 47.45384232494095 -41.49475160936019 47.507587336034945 -41.389288333791846 47.56123465591919 -41.28360971835344 47.61478390603749 -41.17771531001795 47.66823470664122 -41.07160465771256 47.72158667679048 -40.96527731235865 47.774839434355215 -40.85873282691222 47.827992596016486 -40.751970756404575 47.8810457772679 -40.644990657983485 47.93399859241693 -40.53779209095458 47.98685065458652 -40.43037461682318 48.03960157571668 -40.322737799336444 48.092250966566205 -40.21488120452591 48.14479843671447 -40.106804400750356 48.19724359456332 -39.99850695873905 48.24958604733906 -39.88998845163533 48.30182540109455 -39.78124845504057 48.353961260711415 -39.67228654705846 48.40599322990225 -39.563102308339744 48.45792091121308 -39.45369532212715 48.509743906025776 -39.34406517430085 48.56146181456067 -39.23421145342419 48.61307423587926 -39.12413375078974 48.664580767886925 -39.01383166046581 48.715981007335934 -38.90330477934326 48.767274549828294 -38.792552707182615 48.81846098981899 -38.68157504666165 48.86953992061912 -38.57037140342325 48.920510934399246 -38.45894138612364 48.97137362219286 -38.34728460648098 49.02212757389982 -38.23540067932431 49.07277237829018 -38.12328922264282 49.12330762300779 -38.01094985763554 49.17373289457428 -37.8983822087613 49.22404777839308 -37.78558590378909 49.27425185875347 -37.67256057384874 49.32434471883489 -37.55930585348196 49.374325940711245 -37.44582138069373 49.424195105355444 -37.33210679700403 49.47395179264396 -37.21816174749987 49.52359558136158 -37.103985880887755 49.57312604920629 -36.98957884954638 49.622542772794155 -36.874940309579756 49.671845327664535 -36.76006992087058 49.721033288285305 -36.64496734713401 49.770106228058125 -36.52963225597177 49.819063719324085 -36.41406431892649 49.86790533336919 -36.298263211536515 49.9166306404302 -36.182228613390905 49.965239209700556 -36.065960208184826 50.01373060933631 -35.94945768377528 50.062104406462375 -35.832720732237064 50.110360167178825 -35.71574904991913 50.15849745656729 -35.598542337501215 50.2065158386976 -35.48110030005075 50.25441487663447 -35.36342264708014 50.30219413244438 -35.2455090926043 50.3498531672026 -35.12735935519847 50.39739154100035 -35.008973158056385 50.444808812952104 -34.890350229048664 50.492104541203005 -34.77149030078155 50.5392782829365 -34.652393110655865 50.586329594382114 -34.53305840092631 50.63325803082326 -34.413485918761005 50.680063146605434 -34.29367541630127 50.72674449514424 -34.173626650721744 50.77330162893392 -34.05333938429069 50.81973409955575 -33.93281338443062 50.86604145768678 -33.8120484237791 50.91222325310859 -33.6910442802499 50.95827903471638 -33.569800737094255 51.004208350527975 -33.44831758296253 51.05001074769331 -33.326594611965916 51.09568577250368 -33.20463162373854 51.14123297040161 -33.0824284234997 51.186651885990415 -32.95998482211628 51.23194206304433 -32.83730063616548 51.277103044518526 -32.71437568799767 51.3221343725595 -32.59120980579946 51.367035588515435 -32.46780282365696 51.41180623294689 -32.344154581619236 51.45644584563755 -32.22026492576195 51.50095396560524 -32.09613370825113 51.54533013111303 -31.971760787407153 51.589573879680565 -31.847146027768858 51.63368474809549 -31.72228930015781 51.67766227242523 -31.59719048174273 51.721505988028696 -31.471849456104042 51.76521542956835 -31.346266113298544 51.808790131022405 -31.220440349924218 51.85222962569715 -31.09437206918514 51.8955334462395 -30.96806118095649 51.93870112464975 -30.84150760184969 51.98173219229441 -30.7147112552776 52.02462617991936 -30.58767207151979 52.06738261766305 -30.460389987787917 52.11000103506997 -30.332864948291146 52.15248096110429 -30.205096904301627 52.19482192416363 -30.077085814219984 52.23702345209308 -29.948831643640943 52.27908507220185 -29.82033436541126 52.321006311267816 -29.691593959725534 52.36278669556666 -29.562610414146814 52.40442575087698 -29.433383723702036 52.44592300249762 -29.3039138909402 52.48727797526267 -29.174200925997965 52.52849019355688 -29.044244846665194 52.5695591813311 -28.91404567845041 52.610484462117945 -28.783603454646318 52.651265559047694 -28.65291821639514 52.69190199486429 -28.521990012753967 52.73239329194163 -28.390818900759925 52.772738972299955 -28.259404945495397 52.81293855762252 -28.127748220152966 52.85299156927237 -27.995848806100348 52.89289752830936 -27.863706792945187 52.932655955507315 -27.731322278599677 52.97226637137147 -27.59869536934501 53.011728296156015 -27.46582617989572 53.05104124988186 -27.33271483346383 53.090204752354616 -27.199361461822757 53.12921832318271 -27.065766205371066 53.168081481795745 -26.93192921319601 53.20679374746309 -26.79785064313682 53.24535463931244 -26.663530661847737 53.283763676348954 -26.528969444860838 53.322020377474175 -26.394167176648583 53.36012426150543 -26.25912405068602 53.398074847195254 -26.12384026951278 53.43587165325112 -25.988316044794722 53.4735141983553 -25.852551597385265 53.511002001184856 -25.716547157386373 53.54833458043196 -25.5803029642092 53.585511454824314 -25.44381926663437 53.62253214314575 -25.307096322871914 53.65939616425702 -25.170134400620718 53.696103037116856 -25.032933777127717 53.73265228080311 -24.89549473924649 53.769043414534124 -24.757817583495584 53.80527595769029 -24.619902616116274 53.84134942983582 -24.481750153129905 53.87726335074059 -24.34336052039477 53.913017240402304 -24.204734053662445 53.948610619068795 -24.06587109863366 53.98404300726045 -23.926772011013593 54.019313925792865 -23.78743715656669 54.05442289579969 -23.647866911170894 54.089369438755625 -23.50806166087126 54.12415307649958 -23.368021801933086 54.15877333125809 -23.227747740894305 54.19322972566877 -23.087239894617397 54.22752178280409 -22.946498690340576 54.261649026195194 -22.805524565728348 54.29561097985598 -22.664317968921402 54.32940716830732 -22.52287935858585 54.36303711660141 -22.381209203961685 54.39650035034637 -22.239307984910656 54.42979639573092 -22.097176191963257 54.462924779549255 -21.954814326365096 54.49588502922611 -21.812222900122446 54.52867667284198 -21.669402436046983 54.56129923915839 -21.52635346779982 54.59375225764349 -21.383076539934635 54.626035258497694 -21.239572207940018 54.658147772679506 -21.095841038280955 54.69008933193147 -20.951883608439474 54.72185946880631 -20.80770050695437 54.7534577166932 -20.663292333460095 54.78488360984412 -20.51865969872466 54.816136683400494 -20.373803224686686 54.8472164734198 -20.228723544491462 54.87812251690245 -20.083421302526027 54.90885435181869 -19.93789715445336 54.939411517135795 -19.792151767245507 54.96979355284519 -19.64618581921565 55.0 -19.5 + + + + + + + + + + + + + + + 2012-07-10T07:00:00Z + 2012-07-10T07:16:00Z + + + TEMPDELTA + 1 + + + EXERCISE + ACTIVE + + + CEILING + FLOOR + + + + + + + activation + REMARK + + + FOR FURTHER INFORMATION PLEASE CONTACT DONLON ACC ON PHONE (12)123 45 67 + + + + + + + + + + + + + + + + f4d5e4d4-d84a-481f-b9e3-b359e42c0dff + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + FIR + AMSWELL + AMSWELL FIR + + + + + UNL + GND + + + + + + + + + + + 57.0833333333333 -40.0 52.85 -41.7833333333333 48.4666666666667 -41.3333333333333 44.0333333333333 -40.0 42.6 -37.0 40.7333333333333 -37.1833333333333 41.4 -30.05 43.5166666666667 -21.1333333333333 56.6666666666667 -21.1333333333333 57.0833333333333 -40.0 + + + + + + + + + + + + + + + + + + + + + cc9c7cc4-e000-4741-854d-b7d93973e099 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + UPPER + 450 + STD + 195 + STD + GDS + 69.3 + + + COMPULSORY + + + + + + + + + 42.5016666666667 -37.0016666666667 42.675 -36.1733333333333 + + + + + + + COMPULSORY + + + + + + + + + + bc430a08-bb5d-48dd-8ef0-85ff50dcfb9d + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + UPPER + 450 + STD + 195 + STD + GDS + 771.5999755859375 + + + COMPULSORY + + + + + + + + + 42.675 -36.1733333333333 47.1366666666667 -28.6416666666667 + + + + + + + COMPULSORY + + + + + + + + + + bfca2bc3-5562-4ec4-b199-f0377c93c04e + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + UPPER + 450 + STD + 195 + STD + GDS + 446.0 + + + COMPULSORY + + + + + + + + + 47.1366666666667 -28.6416666666667 48.8 -23.2166666666667 + + + + + + + COMPULSORY + + + + + + + + + + 122f61c4-2704-494f-8ad7-45e2f8adc603 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + UPPER + 450 + STD + 195 + STD + GDS + 163.1999969482422 + + + COMPULSORY + + + + + + + + + 48.8 -23.2166666666667 49.3583333333333 -21.1333333333333 + + + + + + + COMPULSORY + + + + + + + + + + 81e47548-9f00-4970-b641-8ff8f99098a5 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TEMPO + ICAO + TEMPO + + + 56.84 -29.860000000000003 + + + + + + + + + 9fcb360c-6933-46d6-9c85-a337202efe70 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ABOLA + ICAO + ABOLA + + + 45.71 -35.169999999999995 + + + + + + + + + 363838d8-edcc-4085-a608-96b45ceef14e + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ATLIM + ICAO + ATLIM + + + 54.718333333333334 -47.0 + + + + + + + + + c3bf8394-4d5f-4b42-ba87-67563df97555 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + UKORO + ICAO + UKORO + + + 40.92333333333333 -36.81333333333333 + + + + + + + + + 26009f76-2e05-418d-a631-bec02f84ac5b + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + VEGAT + ICAO + VEGAT + + + 49.3583333333333 -21.1333333333333 + + + + + + + + + 7f443c8b-d407-4c41-aa9f-1d56a688a432 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + EBOTO + ICAO + EBOTO + + + 42.501666666666665 -26.015 + + + + + + + + + bb9dcfb3-f45a-40f3-8852-fca1349801fc + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BARIM + ICAO + BARIM + + + 42.5016666666667 -37.0016666666667 + + + + + + + + + fe3bbf89-9a15-49e4-b987-f7225b7484bb + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + SANOK + ICAO + SANOK + + + 41.413333333333334 -30.051666666666666 + + + + + + + + + 95638d5c-367f-4a6d-829c-f1e58245961f + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ODMUS + ICAO + ODMUS + + + 49.358333333333334 -20.15 + + + + + + + + + b35409d8-f236-4303-a12d-795e9e9c8759 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ILURU + ICAO + ILURU + + + 50.019999999999996 -41.61333333333334 + + + + + + + + + 6118ba76-0d46-4ba7-af63-17f29755e890 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + REPUBLICOFDONLON + STATE + + + + + 49.96666666666667 -31.383333333333333 51.125 -31.388333333333332 51.17111111111111 -31.394444444444446 51.18805555555555 -31.403888888888886 51.198055555555555 -31.40833333333333 51.2075 -31.410833333333333 51.21666666666667 -31.413055555555555 51.21944444444445 -31.41333333333333 51.22638888888889 -31.41472222222222 51.23583333333333 -31.419444444444444 51.24 -31.42361111111111 51.243611111111115 -31.427222222222223 51.24805555555556 -31.429722222222225 51.25416666666667 -31.42777777777778 51.25972222222222 -31.424166666666668 51.265277777777776 -31.421944444444446 51.27111111111111 -31.420833333333334 51.27583333333333 -31.422222222222224 51.28388888888889 -31.426944444444445 51.288333333333334 -31.43111111111111 51.29666666666667 -31.433888888888887 51.30361111111111 -31.435555555555556 51.31472222222222 -31.43638888888889 51.34055555555556 -31.43777777777778 51.34638888888889 -31.436944444444446 51.355555555555554 -31.43277777777778 51.36555555555556 -31.432222222222222 51.38638888888889 -31.43777777777778 51.39055555555556 -31.441666666666666 51.39555555555555 -31.445555555555554 51.39972222222222 -31.452777777777776 51.408055555555556 -31.458055555555553 51.41027777777778 -31.4575 51.41222222222222 -31.454444444444444 51.413333333333334 -31.445555555555554 51.4175 -31.443333333333335 51.431666666666665 -31.453055555555554 51.46638888888889 -31.46472222222222 51.46666666666667 -31.464444444444442 51.48083333333334 -31.460555555555555 51.48888888888889 -31.464444444444442 51.50138888888889 -31.486944444444447 51.51416666666667 -31.488611111111112 51.51555555555556 -31.488333333333333 51.51888888888889 -31.490277777777777 51.52333333333333 -31.5075 51.52444444444444 -31.511944444444445 51.52833333333333 -31.513055555555557 51.550555555555555 -31.519166666666667 51.55583333333333 -31.520555555555553 51.55722222222222 -31.520833333333332 51.55722222222222 -31.51833333333333 51.558055555555555 -31.509166666666665 51.56111111111111 -31.499444444444446 51.56472222222222 -31.509166666666665 51.57972222222222 -31.498611111111114 51.58222222222223 -31.493333333333336 51.586111111111116 -31.49527777777778 51.59777777777778 -31.491666666666667 51.603611111111114 -31.493055555555557 51.61 -31.490833333333335 51.60777777777778 -31.483333333333334 51.619166666666665 -31.476388888888888 51.62388888888889 -31.46944444444444 51.63527777777778 -31.465833333333332 51.65361111111111 -31.449444444444445 51.67222222222222 -31.44472222222222 51.70722222222223 -31.43638888888889 51.718611111111116 -31.43166666666667 51.74666666666667 -31.418333333333333 51.757222222222225 -31.41583333333333 51.763888888888886 -31.408055555555553 51.765 -31.398055555555555 51.7875 -31.365555555555556 51.80027777777777 -31.349722222222223 51.80222222222222 -31.34638888888889 51.815 -31.325277777777778 51.8525 -31.29527777777778 51.87888888888889 -31.274444444444445 51.882777777777775 -31.27583333333333 51.888333333333335 -31.28111111111111 51.903888888888886 -31.27138888888889 51.91416666666667 -31.26527777777778 51.94972222222222 -31.249722222222225 51.969722222222224 -31.25722222222222 51.97166666666667 -31.2575 51.97777777777778 -31.2575 51.986111111111114 -31.250833333333333 51.99666666666667 -31.209166666666665 51.99916666666667 -31.20638888888889 52.006388888888885 -31.198611111111113 52.00805555555556 -31.1925 52.00694444444444 -31.18611111111111 51.99805555555556 -31.174166666666668 51.9975 -31.169722222222223 52.00083333333333 -31.125833333333333 52.007222222222225 -31.115833333333335 52.013333333333335 -31.115833333333335 52.020833333333336 -31.120555555555555 52.0225 -31.12 52.03666666666666 -31.107222222222223 52.04 -31.09472222222222 52.040277777777774 -31.08833333333333 52.038333333333334 -31.08 52.02444444444444 -31.05777777777778 52.019444444444446 -31.041944444444447 52.020833333333336 -31.023333333333333 52.028055555555554 -30.99361111111111 52.033055555555556 -30.990555555555556 52.04666666666667 -30.99888888888889 52.05638888888888 -30.993055555555557 52.061388888888885 -30.991666666666667 52.06361111111111 -30.991666666666667 52.06777777777778 -30.991666666666667 52.07277777777778 -30.993055555555557 52.078611111111115 -30.994444444444447 52.125 -30.960277777777776 52.13388888888889 -30.956944444444442 52.14722222222222 -30.951666666666664 52.17777777777778 -30.944444444444446 52.180277777777775 -30.94361111111111 52.20944444444445 -30.934444444444445 52.21388888888889 -30.935 52.215833333333336 -30.935833333333335 52.21805555555556 -30.936944444444446 52.217777777777776 -30.950555555555553 52.20888888888889 -30.96638888888889 52.20916666666667 -30.97083333333333 52.20916666666667 -30.975555555555555 52.20527777777778 -30.990000000000002 52.20638888888889 -31.00111111111111 52.20527777777778 -31.005555555555556 52.19444444444444 -31.00611111111111 52.19083333333333 -31.01 52.18805555555555 -31.01388888888889 52.18611111111111 -31.019166666666667 52.18472222222222 -31.023888888888887 52.18388888888889 -31.026666666666667 52.183055555555555 -31.035555555555558 52.17805555555555 -31.053055555555556 52.18388888888889 -31.064444444444444 52.183055555555555 -31.066944444444445 52.176944444444445 -31.07111111111111 52.175555555555555 -31.074166666666667 52.17611111111111 -31.081666666666667 52.17611111111111 -31.0825 52.181666666666665 -31.090555555555554 52.18722222222222 -31.099166666666665 52.18944444444444 -31.100555555555555 52.21138888888889 -31.114444444444445 52.23222222222223 -31.133333333333333 52.23444444444444 -31.133888888888887 52.26833333333333 -31.142777777777777 52.27305555555555 -31.14527777777778 52.27388888888889 -31.145833333333332 52.27972222222222 -31.151666666666664 52.294444444444444 -31.17138888888889 52.30333333333333 -31.179722222222225 52.33527777777778 -31.203055555555554 52.336111111111116 -31.204166666666666 52.34166666666667 -31.210555555555555 52.37777777777778 -31.249444444444446 52.3975 -31.26888888888889 52.42222222222222 -31.284166666666668 52.43527777777778 -31.311944444444446 52.43527777777778 -31.31833333333333 52.434999999999995 -31.329444444444444 52.43666666666666 -31.330277777777777 52.4375 -31.330555555555556 52.45 -31.314444444444444 52.46388888888889 -31.310000000000002 52.47888888888889 -31.295833333333334 52.4825 -31.296666666666667 52.48416666666667 -31.297222222222224 52.48222222222223 -31.302222222222223 52.478611111111114 -31.31138888888889 52.480000000000004 -31.315833333333334 52.48416666666667 -31.316944444444445 52.49888888888889 -31.313055555555557 52.50805555555556 -31.310555555555556 52.51611111111111 -31.30611111111111 52.52388888888889 -31.301666666666666 52.54055555555556 -31.297222222222224 52.54527777777778 -31.294722222222223 52.552499999999995 -31.28527777777778 52.556666666666665 -31.282777777777778 52.56777777777778 -31.27638888888889 52.574444444444445 -31.272499999999997 52.590833333333336 -31.260277777777777 52.60611111111111 -31.255277777777778 52.62361111111111 -31.240833333333335 52.628055555555555 -31.242222222222225 52.63138888888889 -31.256666666666668 52.6325 -31.260833333333334 52.63527777777778 -31.264722222222222 52.638333333333335 -31.26527777777778 52.66694444444444 -31.264444444444443 52.71888888888889 -31.254722222222224 52.72916666666667 -31.245 52.73388888888889 -31.234166666666667 52.734722222222224 -31.231944444444444 52.74611111111111 -31.205 52.74666666666667 -31.203611111111112 52.75361111111111 -31.19472222222222 52.768055555555556 -31.185 52.77611111111111 -31.161666666666665 52.77972222222222 -31.15694444444444 52.7875 -31.15222222222222 52.7975 -31.145833333333332 52.81222222222222 -31.12611111111111 52.81444444444444 -31.119722222222222 52.81444444444444 -31.118333333333332 52.81472222222222 -31.096666666666664 52.82138888888889 -31.084722222222222 52.84027777777778 -31.076666666666668 52.84277777777778 -31.07472222222222 52.85472222222222 -31.06388888888889 52.85777777777778 -31.05777777777778 52.85888888888889 -31.053333333333335 52.86333333333334 -31.037222222222223 52.867777777777775 -31.033611111111114 52.87555555555556 -31.03111111111111 52.880833333333335 -31.03222222222222 52.896388888888886 -31.043055555555558 52.90083333333333 -31.046111111111113 52.907222222222224 -31.048611111111114 52.91222222222222 -31.046111111111113 52.920833333333334 -31.026944444444442 52.92194444444444 -31.02583333333333 52.92527777777777 -31.022777777777776 52.94138888888889 -31.016944444444444 52.96333333333334 -30.999444444444446 52.97138888888889 -30.990277777777777 52.999722222222225 -30.96972222222222 53.0225 -30.953611111111112 53.02583333333333 -30.953333333333333 53.028888888888886 -30.953333333333333 53.032222222222224 -30.955277777777777 53.04083333333333 -30.965833333333332 53.044999999999995 -30.966944444444444 53.05916666666666 -30.96222222222222 53.078611111111115 -30.976666666666667 53.09638888888889 -31.000833333333333 53.1025 -31.011388888888888 53.11666666666667 -31.016666666666666 53.11694444444444 -31.035833333333336 53.11694444444444 -31.036944444444448 53.11805555555556 -31.043055555555558 53.11694444444444 -31.052500000000002 53.10027777777778 -31.098333333333333 53.09916666666667 -31.115555555555556 53.10111111111111 -31.12777777777778 53.109722222222224 -31.140277777777776 53.11638888888889 -31.14472222222222 53.12111111111111 -31.14527777777778 53.13527777777778 -31.141666666666666 53.155833333333334 -31.131666666666668 53.16722222222222 -31.133333333333333 53.17444444444444 -31.144166666666667 53.17861111111111 -31.172777777777778 53.18194444444444 -31.195 53.18527777777778 -31.206666666666667 53.19611111111111 -31.224444444444444 53.200833333333335 -31.22972222222222 53.21361111111111 -31.23777777777778 53.23916666666667 -31.241666666666667 53.254444444444445 -31.240555555555556 53.268055555555556 -31.234166666666667 53.276666666666664 -31.230277777777776 53.28111111111111 -31.232499999999998 53.29833333333333 -31.254722222222224 53.30555555555555 -31.266111111111112 53.32277777777778 -31.292222222222225 53.347500000000004 -31.31277777777778 53.35027777777778 -31.31416666666667 53.35944444444445 -31.318055555555556 53.38527777777778 -31.329722222222223 53.39 -31.3275 53.401111111111106 -31.30888888888889 53.40611111111111 -31.303333333333335 53.4075 -31.30138888888889 53.413333333333334 -31.299444444444447 53.43611111111111 -31.299722222222226 53.45194444444445 -31.293333333333337 53.45611111111111 -31.294444444444448 53.461111111111116 -31.300555555555555 53.4675 -31.315 53.47222222222222 -31.3325 53.473333333333336 -31.33722222222222 53.47416666666667 -31.33861111111111 53.48083333333334 -31.34861111111111 53.480555555555554 -31.359444444444446 53.48555555555556 -31.371944444444445 53.489444444444445 -31.37666666666667 53.49055555555556 -31.378055555555555 53.49805555555556 -31.3825 53.52638888888889 -31.391111111111112 53.53444444444444 -31.404999999999998 53.53388888888889 -31.407777777777778 53.53527777777778 -31.415555555555553 53.53638888888889 -31.4225 53.54111111111111 -31.43 53.54472222222222 -31.434722222222224 53.561388888888885 -31.443333333333335 53.56861111111112 -31.45 53.57166666666667 -31.4525 53.57666666666667 -31.460555555555555 53.58027777777778 -31.470277777777778 53.58444444444444 -31.481111111111108 53.59305555555556 -31.49277777777778 53.61611111111111 -31.50777777777778 53.652499999999996 -31.525555555555556 53.656388888888884 -31.525 53.659166666666664 -31.522222222222222 53.659166666666664 -31.521944444444443 53.66166666666666 -31.515833333333333 53.665 -31.508333333333333 53.66416666666667 -31.488055555555558 53.66611111111111 -31.46611111111111 53.65861111111111 -31.423055555555557 53.65833333333333 -31.421944444444446 53.653055555555554 -31.403888888888886 53.651944444444446 -31.393055555555556 53.65222222222222 -31.391111111111112 53.651944444444446 -31.37138888888889 53.64861111111111 -31.326666666666668 53.647777777777776 -31.31361111111111 53.6625 -31.264722222222222 53.66611111111111 -31.252777777777776 53.66611111111111 -31.251944444444444 53.66611111111111 -31.250555555555554 53.66277777777778 -31.183611111111112 53.66222222222222 -31.175833333333333 53.66083333333333 -31.170555555555556 53.65833333333333 -31.15888888888889 53.657222222222224 -31.150555555555552 53.65694444444444 -31.1475 53.65888888888889 -31.136388888888888 53.66361111111111 -31.109722222222224 53.663333333333334 -31.105 53.66277777777778 -31.09722222222222 53.66138888888889 -31.092222222222222 53.66111111111111 -31.09111111111111 53.65611111111111 -31.06833333333333 53.656388888888884 -31.059444444444445 53.6625 -31.044444444444448 53.67027777777778 -31.016111111111112 53.67194444444444 -31.011944444444445 53.68 -31.00611111111111 53.68611111111111 -31.0 53.69166666666666 -31.00111111111111 53.69222222222222 -31.00111111111111 53.71416666666667 -30.998333333333335 53.71888888888889 -30.995 53.72416666666667 -30.99138888888889 53.72805555555556 -30.990555555555556 53.73777777777778 -30.991944444444446 53.74277777777778 -30.990833333333335 53.76416666666667 -30.97861111111111 53.77027777777778 -30.97722222222222 53.778888888888886 -30.97722222222222 53.7975 -30.985555555555557 53.80472222222222 -30.983611111111113 53.81111111111111 -30.974999999999998 53.81916666666667 -30.96472222222222 53.82055555555556 -30.951666666666664 53.82277777777778 -30.945833333333333 53.82361111111111 -30.94361111111111 53.83388888888889 -30.929166666666667 53.84527777777778 -30.92777777777778 53.850833333333334 -30.916944444444447 53.8675 -30.9025 53.89361111111111 -30.899722222222223 53.913888888888884 -30.904444444444444 53.921388888888885 -30.9025 53.930277777777775 -30.8925 53.93388888888889 -30.88861111111111 53.943888888888885 -30.885555555555555 53.95805555555556 -30.89 53.97166666666667 -30.885555555555555 53.99277777777778 -30.875555555555557 54.0 -30.87472222222222 54.006388888888885 -30.87027777777778 54.010555555555555 -30.868333333333332 54.01305555555555 -30.86388888888889 54.01972222222222 -30.871666666666666 54.020833333333336 -30.873055555555556 54.02333333333333 -30.875 54.025277777777774 -30.87527777777778 54.02916666666667 -30.87638888888889 54.030277777777776 -30.87666666666667 54.03194444444444 -30.878611111111113 54.033055555555556 -30.880277777777778 54.03666666666666 -30.879444444444445 54.05027777777777 -30.891666666666666 54.05083333333333 -30.8925 54.05277777777778 -30.89472222222222 54.0575 -30.89527777777778 54.059999999999995 -30.894444444444446 54.062777777777775 -30.893333333333334 54.062777777777775 -30.896944444444443 54.065 -30.90361111111111 54.06583333333333 -30.904166666666665 54.07333333333334 -30.91444444444444 54.07694444444445 -30.91722222222222 54.086111111111116 -30.919444444444444 54.09138888888889 -30.924722222222222 54.102222222222224 -30.929444444444446 54.10333333333333 -30.9325 54.10611111111111 -30.938333333333333 54.113055555555555 -30.941111111111113 54.11416666666667 -30.945 54.11333333333334 -30.949166666666667 54.115 -30.959444444444443 54.120555555555555 -30.982777777777777 54.11666666666667 -30.990277777777777 54.125 -31.00027777777778 54.136944444444445 -31.009166666666665 54.14555555555555 -31.011388888888888 54.153888888888886 -31.008333333333333 54.15888888888889 -31.009166666666665 54.16444444444444 -31.014166666666668 54.187777777777775 -31.01861111111111 54.19888888888889 -31.015555555555554 54.211666666666666 -31.010277777777777 54.221944444444446 -31.005555555555556 54.25527777777778 -30.944444444444446 54.25527777777778 -30.944166666666668 54.2575 -30.89611111111111 54.260555555555555 -30.875555555555557 54.26694444444444 -30.858055555555556 54.27611111111111 -30.85611111111111 54.288888888888884 -30.858611111111113 54.29722222222222 -30.85638888888889 54.30611111111111 -30.843888888888888 54.31388888888888 -30.83 54.315555555555555 -30.827222222222222 54.33111111111111 -30.789722222222224 54.35611111111111 -30.78638888888889 54.35944444444445 -30.784722222222225 54.36555555555556 -30.776666666666667 54.36666666666667 -30.775 54.37027777777778 -30.77611111111111 54.373333333333335 -30.781944444444445 54.375277777777775 -30.792222222222225 54.38166666666667 -30.80138888888889 54.38777777777778 -30.809166666666666 54.41444444444444 -30.828333333333333 54.41833333333333 -30.83111111111111 54.42638888888889 -30.83 54.43416666666666 -30.83361111111111 54.45472222222222 -30.84 54.471944444444446 -30.830555555555556 54.48388888888889 -30.816666666666666 54.50361111111111 -30.80611111111111 54.510555555555555 -30.799722222222226 54.51222222222222 -30.795 54.5325 -30.789444444444445 54.54 -30.79416666666667 54.55583333333333 -30.80611111111111 54.56361111111111 -30.819166666666668 54.5625 -30.82611111111111 54.56861111111112 -30.837777777777777 54.5925 -30.822499999999998 54.59388888888889 -30.82111111111111 54.60333333333333 -30.814444444444444 54.61694444444444 -30.804444444444446 54.63194444444444 -30.796666666666667 54.64944444444444 -30.79277777777778 54.6675 -30.799444444444447 54.70888888888889 -30.807222222222222 54.716944444444444 -30.808611111111112 54.72972222222222 -30.81388888888889 54.7325 -30.81861111111111 54.73694444444445 -30.819166666666668 54.745 -30.824166666666667 54.74666666666667 -30.825277777777778 54.768055555555556 -30.823333333333334 54.78611111111111 -30.822499999999998 54.80694444444444 -30.815833333333334 54.82333333333334 -30.820555555555554 54.83444444444444 -30.816666666666666 54.84138888888889 -30.819166666666668 54.843611111111116 -30.81722222222222 54.845555555555556 -30.803055555555556 54.848888888888894 -30.798333333333336 54.878055555555555 -30.804722222222225 54.88194444444444 -30.808333333333334 54.8825 -30.810833333333335 54.88638888888889 -30.826944444444443 54.890277777777776 -30.829444444444444 54.89472222222222 -30.836666666666666 54.90138888888889 -30.842777777777776 54.92666666666666 -30.84361111111111 54.95416666666667 -30.85666666666667 54.958333333333336 -30.861111111111114 54.96388888888889 -30.8725 54.97222222222222 -30.878333333333334 54.98222222222223 -30.888055555555557 54.9975 -30.904444444444444 55.01083333333333 -30.915277777777778 55.01888888888889 -30.92638888888889 55.02194444444444 -30.928055555555556 55.027499999999996 -30.928611111111113 55.03 -30.929166666666667 55.03388888888889 -30.93027777777778 55.0375 -30.92027777777778 55.038888888888884 -30.915 55.0375 -30.901944444444442 55.03722222222222 -30.90111111111111 55.03611111111111 -30.89611111111111 55.03611111111111 -30.895833333333332 55.030833333333334 -30.875 55.03722222222222 -30.823055555555555 55.041666666666664 -30.811944444444446 55.04416666666666 -30.80666666666667 55.05138888888889 -30.80027777777778 55.05444444444444 -30.797777777777778 55.06583333333333 -30.7825 55.07277777777778 -30.77861111111111 55.08861111111111 -30.77027777777778 55.10611111111111 -30.754166666666666 55.11277777777778 -30.755555555555556 55.120555555555555 -30.7625 55.128055555555555 -30.76861111111111 55.13305555555556 -30.76527777777778 55.14194444444444 -30.74888888888889 55.161944444444444 -30.719166666666666 55.17916666666667 -30.70111111111111 55.195277777777775 -30.692777777777778 55.209722222222226 -30.68111111111111 55.221944444444446 -30.675555555555558 55.24 -30.645833333333332 55.243611111111115 -30.634166666666665 55.24527777777778 -30.623333333333335 55.245 -30.61888888888889 55.245 -30.61861111111111 55.24277777777778 -30.612222222222222 55.23888888888889 -30.596666666666664 55.237500000000004 -30.58888888888889 55.23777777777778 -30.575277777777778 55.23777777777778 -30.570555555555554 55.24277777777778 -30.5625 55.24638888888889 -30.558333333333334 55.25666666666667 -30.543055555555558 55.26 -30.529444444444444 55.26583333333333 -30.506666666666668 55.29277777777778 -30.472777777777775 55.29972222222222 -30.46 55.30138888888889 -30.456944444444442 55.30722222222222 -30.440555555555555 55.315555555555555 -30.428333333333335 55.33416666666667 -30.416666666666668 55.343333333333334 -30.410555555555554 55.35027777777778 -30.39611111111111 55.35888888888889 -30.384166666666665 55.36222222222222 -30.38138888888889 55.367222222222225 -30.383055555555558 55.3675 -30.383333333333333 55.38944444444444 -30.390277777777776 55.39555555555555 -30.38361111111111 55.395833333333336 -30.383333333333333 55.39694444444444 -30.37388888888889 55.394999999999996 -30.365833333333335 55.394444444444446 -30.36527777777778 55.38611111111111 -30.356944444444444 55.38583333333333 -30.353055555555557 55.38583333333333 -30.352777777777778 55.38666666666666 -30.341388888888886 55.386944444444445 -30.340277777777775 55.38777777777778 -30.339166666666664 55.38777777777778 -30.33888888888889 55.388333333333335 -30.337777777777777 55.38861111111111 -30.336944444444445 55.39 -30.334444444444443 55.39055555555556 -30.333888888888886 55.395833333333336 -30.329444444444444 55.403055555555554 -30.326944444444443 55.407777777777774 -30.325277777777778 55.413333333333334 -30.32138888888889 55.41722222222222 -30.315 55.424166666666665 -30.308055555555555 55.43333333333333 -30.304444444444446 55.433611111111105 -30.304444444444446 55.43666666666666 -30.304722222222225 55.44444444444444 -30.305555555555557 55.44972222222222 -30.302777777777777 55.47694444444445 -30.28638888888889 55.481388888888894 -30.285555555555558 55.49583333333334 -30.27111111111111 55.503055555555555 -30.258333333333333 55.51777777777777 -30.254166666666666 55.532777777777774 -30.231111111111108 55.54194444444444 -30.223333333333333 55.55555555555555 -30.21611111111111 55.558611111111105 -30.211111111111112 55.56444444444444 -30.208055555555553 55.569722222222225 -30.2025 55.57361111111111 -30.19611111111111 55.57833333333333 -30.18277777777778 55.58388888888889 -30.184166666666666 55.597500000000004 -30.197777777777777 55.603611111111114 -30.21833333333333 55.63916666666667 -30.25111111111111 55.650555555555556 -30.267777777777777 55.655277777777776 -30.273333333333333 55.65972222222222 -30.284722222222225 55.66 -30.28611111111111 55.66444444444444 -30.30777777777778 55.66611111111111 -30.31527777777778 55.67777777777778 -30.341388888888886 55.67777777777778 -30.341666666666665 55.67916666666667 -30.348333333333333 55.67638888888889 -30.368055555555557 55.67722222222222 -30.377222222222223 55.68111111111111 -30.391388888888887 55.68111111111111 -30.409444444444443 55.681666666666665 -30.412777777777777 55.683055555555555 -30.42 55.68722222222222 -30.4375 55.669444444444444 -30.452777777777776 55.658055555555556 -30.496666666666666 55.66611111111111 -30.502777777777776 55.67666666666666 -30.5175 55.68 -30.526944444444442 55.69083333333333 -30.54527777777778 55.69166666666666 -30.554444444444446 55.69972222222222 -30.549722222222226 55.7 -30.549444444444447 55.70805555555556 -30.545 55.711666666666666 -30.54527777777778 55.73166666666667 -30.551944444444445 55.736111111111114 -30.557222222222222 55.742222222222225 -30.559166666666666 55.7475 -30.569166666666668 55.75194444444445 -30.56888888888889 55.76083333333333 -30.55638888888889 55.769444444444446 -30.550555555555555 55.786944444444444 -30.546666666666667 55.79611111111111 -30.54416666666667 55.801944444444445 -30.539444444444445 55.81388888888888 -30.53666666666667 55.819722222222225 -30.53111111111111 55.83444444444444 -30.528055555555554 55.84027777777778 -30.529166666666665 55.85944444444445 -30.522499999999997 55.86138888888889 -30.523333333333333 55.86527777777778 -30.52027777777778 55.869166666666665 -30.51722222222222 55.87388888888889 -30.521944444444443 55.87916666666667 -30.535 55.88361111111111 -30.560833333333335 55.89611111111111 -30.55611111111111 55.90416666666667 -30.551944444444445 55.913333333333334 -30.551666666666666 55.92361111111111 -30.544444444444448 55.93138888888889 -30.541944444444447 55.94416666666666 -30.551111111111112 55.96472222222223 -30.56638888888889 55.9675 -30.57138888888889 55.968333333333334 -30.58 55.953611111111115 -30.581944444444446 55.9475 -30.589444444444442 55.94361111111111 -30.61277777777778 55.940555555555555 -30.64388888888889 55.93805555555555 -30.659444444444443 55.936388888888885 -30.674444444444447 55.93722222222222 -30.69 55.93888888888888 -30.7075 55.941111111111105 -30.721666666666664 55.94083333333333 -30.732499999999998 55.94972222222222 -30.74416666666667 55.973055555555554 -30.754444444444445 55.98527777777778 -30.767777777777777 55.987500000000004 -30.80027777777778 55.981944444444444 -30.80388888888889 55.968333333333334 -30.805555555555557 55.95333333333333 -30.80888888888889 55.945277777777775 -30.825555555555557 55.94444444444444 -30.843888888888888 55.94638888888888 -30.851944444444445 55.94416666666666 -30.85527777777778 55.94 -30.873333333333335 55.93861111111111 -30.88277777777778 55.94138888888889 -30.894444444444446 55.94138888888889 -30.915555555555553 55.94361111111111 -30.925555555555558 55.947222222222216 -30.935833333333335 55.94944444444444 -30.93888888888889 55.950833333333335 -30.940555555555555 55.96138888888889 -30.947777777777777 55.97166666666667 -30.95888888888889 55.96805555555556 -30.97694444444444 55.95805555555556 -30.988611111111112 55.94944444444444 -31.00138888888889 55.94888888888889 -31.013333333333332 55.95194444444445 -31.023055555555555 55.950833333333335 -31.041944444444447 55.94972222222222 -31.059444444444445 55.95277777777778 -31.064722222222223 55.97083333333334 -31.078611111111112 55.98527777777778 -31.114444444444445 55.98388888888889 -31.123055555555556 55.98972222222222 -31.14472222222222 55.987500000000004 -31.160277777777775 55.98722222222222 -31.160555555555554 55.985 -31.16638888888889 55.985 -31.166666666666668 55.980000000000004 -31.17527777777778 55.97972222222222 -31.175833333333333 55.97 -31.18277777777778 55.97 -31.18305555555556 55.966944444444444 -31.183888888888887 55.96222222222222 -31.185 55.96 -31.185833333333335 55.95333333333333 -31.180833333333336 55.95333333333333 -31.180555555555557 55.95277777777778 -31.18111111111111 55.94888888888889 -31.18277777777778 55.94416666666666 -31.183611111111112 55.94305555555555 -31.183888888888887 55.94277777777778 -31.183888888888887 55.91861111111111 -31.174166666666668 55.91555555555556 -31.174166666666668 55.913888888888884 -31.174166666666668 55.91277777777778 -31.174722222222222 55.911944444444444 -31.17527777777778 55.88638888888889 -31.191666666666666 55.88166666666667 -31.201944444444443 55.879444444444445 -31.20583333333333 55.87166666666667 -31.219166666666666 55.86472222222223 -31.246666666666666 55.848888888888894 -31.290277777777778 55.84138888888889 -31.324166666666667 55.84638888888889 -31.35777777777778 55.84638888888889 -31.36777777777778 55.83722222222222 -31.384999999999998 55.825 -31.393333333333334 55.81944444444445 -31.39611111111111 55.814166666666665 -31.404722222222222 55.81222222222222 -31.4175 55.82333333333334 -31.42388888888889 55.830000000000005 -31.42138888888889 55.83388888888889 -31.42666666666667 55.83555555555556 -31.428611111111113 55.844166666666666 -31.44 55.85638888888889 -31.449722222222224 55.862500000000004 -31.452222222222222 55.862500000000004 -31.461388888888887 55.871944444444445 -31.49388888888889 55.86527777777778 -31.506944444444443 55.85611111111111 -31.50861111111111 55.85055555555556 -31.50638888888889 55.84861111111111 -31.510277777777777 55.843611111111116 -31.522499999999997 55.83888888888889 -31.540833333333335 55.83083333333334 -31.56638888888889 55.831388888888895 -31.578055555555554 55.83444444444444 -31.591388888888886 55.840833333333336 -31.608611111111113 55.843611111111116 -31.608333333333334 55.85861111111111 -31.602222222222224 55.87 -31.59 55.88055555555555 -31.57472222222222 55.88111111111111 -31.580555555555556 55.87861111111111 -31.590833333333332 55.882222222222225 -31.610833333333336 55.8825 -31.65 55.89138888888889 -31.663055555555555 55.90333333333333 -31.684444444444445 55.905277777777776 -31.689444444444444 55.903888888888886 -31.697222222222223 55.9 -31.705555555555556 55.89388888888889 -31.718055555555555 55.89388888888889 -31.734722222222224 55.89555555555555 -31.745 55.894444444444446 -31.75861111111111 55.88388888888889 -31.780555555555555 55.87972222222222 -31.796666666666667 55.8775 -31.82 55.876666666666665 -31.83138888888889 55.86694444444444 -31.834166666666665 55.86194444444445 -31.842222222222222 55.85638888888889 -31.84722222222222 55.852222222222224 -31.874166666666667 55.85722222222223 -31.88138888888889 55.86416666666667 -31.884999999999998 55.90888888888889 -31.875 55.92305555555555 -31.88277777777778 55.925555555555555 -31.892777777777777 55.92472222222222 -31.896944444444443 55.91888888888889 -31.90833333333333 55.904444444444444 -31.9075 55.89138888888889 -31.90833333333333 55.88472222222222 -31.911666666666665 55.87722222222222 -31.920833333333334 55.87416666666667 -31.927222222222223 55.86944444444445 -31.96944444444444 55.86638888888889 -31.974166666666665 55.852222222222224 -31.983888888888888 55.84805555555556 -31.991666666666667 55.831388888888895 -32.00277777777778 55.82777777777778 -32.010555555555555 55.825833333333335 -32.025277777777774 55.8175 -32.04138888888889 55.81638888888889 -32.04694444444444 55.81361111111111 -32.05972222222222 55.80416666666667 -32.065 55.80333333333333 -32.065 55.80138888888889 -32.07944444444445 55.80138888888889 -32.090833333333336 55.80138888888889 -32.09527777777778 55.80444444444444 -32.10305555555556 55.806666666666665 -32.108333333333334 55.806666666666665 -32.10861111111111 55.80888888888889 -32.11416666666667 55.81055555555555 -32.12777777777778 55.81055555555555 -32.129444444444445 55.81638888888889 -32.149166666666666 55.85305555555556 -32.155 55.87361111111111 -32.1625 55.87694444444445 -32.165277777777774 55.88 -32.16777777777777 55.88138888888889 -32.17194444444444 55.88194444444444 -32.19416666666666 55.88194444444444 -32.19444444444444 55.89194444444444 -32.20194444444445 55.89972222222222 -32.2075 55.905 -32.21027777777778 55.908055555555556 -32.21194444444445 55.90972222222222 -32.21083333333333 55.919999999999995 -32.20944444444445 55.92527777777777 -32.202222222222225 55.95138888888889 -32.1825 55.95444444444445 -32.176944444444445 55.96 -32.17222222222222 55.96083333333333 -32.17166666666667 55.967777777777776 -32.168055555555554 55.973888888888894 -32.16166666666666 55.99194444444444 -32.12861111111111 56.00472222222222 -32.11055555555556 56.01027777777778 -32.096944444444446 56.01638888888889 -32.081388888888895 56.03361111111111 -32.0775 56.045833333333334 -32.07944444444445 56.05611111111111 -32.08111111111111 56.07083333333334 -32.094722222222224 56.077222222222225 -32.11138888888889 56.078611111111115 -32.12361111111111 56.06583333333333 -32.16722222222222 56.06638888888889 -32.175555555555555 56.07027777777778 -32.17583333333333 56.085 -32.17833333333333 56.1225 -32.18611111111111 56.135 -32.18694444444444 56.13944444444444 -32.18722222222222 56.1425 -32.18722222222222 56.14277777777778 -32.187777777777775 56.14527777777778 -32.19166666666666 56.14555555555555 -32.19944444444444 56.14083333333333 -32.20638888888889 56.13666666666666 -32.211111111111116 56.13583333333333 -32.21416666666667 56.13361111111111 -32.222500000000004 56.132777777777775 -32.225833333333334 56.1325 -32.23361111111111 56.13194444444444 -32.242222222222225 56.13138888888889 -32.24333333333333 56.120555555555555 -32.265 56.11333333333334 -32.279444444444444 56.10277777777778 -32.30833333333333 56.094722222222224 -32.31722222222223 56.09027777777778 -32.331388888888895 56.09166666666667 -32.35638888888889 56.09027777777778 -32.36222222222222 56.081944444444446 -32.38305555555556 56.07916666666667 -32.41222222222222 56.081388888888895 -32.42916666666667 56.078611111111115 -32.473888888888894 56.078611111111115 -32.480000000000004 56.07833333333333 -32.48555555555556 56.07972222222222 -32.50277777777778 56.075833333333335 -32.51638888888889 56.056666666666665 -32.53055555555555 56.05444444444444 -32.58972222222222 56.05555555555555 -32.59805555555556 56.05222222222222 -32.61472222222223 56.04833333333333 -32.6275 56.032222222222224 -32.64555555555555 56.00527777777778 -32.65694444444444 55.99111111111111 -32.67472222222222 55.980555555555554 -32.70055555555556 55.973888888888894 -32.72361111111111 55.931666666666665 -32.75333333333333 55.925 -32.76111111111111 55.91916666666666 -32.77388888888889 55.91277777777778 -32.79361111111111 55.907777777777774 -32.80638888888888 55.885555555555555 -32.837500000000006 55.8725 -32.85722222222223 55.934999999999995 -33.39944444444444 + + + + + + + + + + + ebccbb64-c1b3-4b27-8e5a-a32d2763208a + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + 52.375597222222225 -31.964263888888887 + + + + + + + + + + e9240179-b707-4133-b49f-39725663e736 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + 52.37818888888889 -31.921847222222222 + + + + + + + + + + fc5b84ee-08bc-4d04-a358-f4cca8609a8f + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ILS + OXS + OXS + + + 1 + + + + + + 2 + + + + + + 52.3755833333333 -31.9652222222222 + 0.0 + + + + + + + + + + + 2012-10-07T10:00:00Z + 2012-10-07T14:00:00Z + + + TEMPDELTA + 1 + + + UNSERVICEABLE + + + + + operationalStatus + REMARK + + + DUE TO MAINTENANCE + + + + + + + + + + + 2ad9861c-7624-481b-b344-c1f601e51939 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OXS + OXS_LLZ + + + 52.3755833333333 -31.9652222222222 + 0.0 + + + 109.1 + + + + + + + 2012-10-07T10:00:00Z + 2012-10-07T14:00:00Z + + + TEMPDELTA + 1 + + + UNSERVICEABLE + + + + + + + + + c9bfcce2-76ad-46b7-a1e7-2c246893db56 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + SNAPSHOT + + + 2009-01-01T00:00:00Z + + + + OXS + OXS_GP + + + 52.3784444444444 -31.9267777777778 + + + 331.4 + + + + + + + 2012-10-07T10:00:00Z + 2012-10-07T14:00:00Z + + + TEMPDELTA + 1 + + + UNSERVICEABLE + + + + + + + + + f37a6ecd-4765-48ed-88f1-6a42643fc13a + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 90.0 + MAG_BRG + 270.0 + RIGHT + 4267.2 + 1066.8 + 256.1933112 + + + 60.0 + + + + + + + 52.36833333333333 -32.375 + + + + + + + + + + + 5ec34a95-b680-4f4b-a2d7-99f2f14b4560 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 90.0 + MAG_BRG + 270.0 + RIGHT + 6096.0 + 4572.0 + 256.1933112 + + + 90.0 + + + + + + + 52.36833333333333 -32.375 + + + + + + + + + + + 39f50cab-cf8a-43c7-b6c4-1705c3886ae7 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 90.0 + MAG_BRG + 270.0 + RIGHT + 10363.2 + 6400.8 + 256.1933112 + + + 90.0 + + + + + + + 52.36833333333333 -32.375 + + + + + + + + + + + 39845412-b7b9-4932-93e0-807c92b7cbb5 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 90.0 + MAG_BRG + 270.0 + RIGHT + 14020.8 + 10668.0 + 256.1933112 + + + 90.0 + + + + + + + 52.36833333333333 -32.375 + + + + + + + + + + + 91d8e5e6-74b3-4652-9138-52018a34196e + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BUILDING + NO + + + + + 52.37558611111111 -31.965180555555555 + 31.5 + + + + + + + + + + + 5f68d835-828c-4ccd-91b7-791058d9dd4d + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ANTENNA + NO + + + + + 52.36171388888889 -32.03756666666666 + 93 + + + + + + + + + + + 95db0e0f-64d9-4dc0-9a6a-60955f4c489b + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OTHER:POWER_LINE + NO + + + + + 52.36439444444444 -31.9792 + 65 + + + + + + + + + + + aeb69042-44b3-4063-ba80-f862f2cdc0d7 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TOWER + NO + + + + + 52.3676 -31.915894444444444 + 40 + + + + + + + + + + + c0406eae-7f49-4bbe-94a2-747b297c8022 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OTHER:MOBILE_OBST + NO + + + + + 52.37884722222222 -31.915438888888886 + 28 + + + + + + + + + + + 1568f948-fe6d-43d8-81fd-12e37500d0b2 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OTHER:MAST + NO + + + + + 52.354261111111114 -31.92560277777778 + 20 + + + + + + + + + + + c12f97f8-2c91-44e8-9770-ec1966311f18 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + OTHER:CHIMNEY + NO + + + + + 52.360597222222225 -31.907077777777776 + 35 + + + + + + + + + + + 17778204-955f-44f2-96ad-cde7d2c347a9 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + BUILDING + NO + + + + + 52.35690555555556 -31.914494444444443 + 30 + + + + + + + + + + + 3d9a60b5-6d7f-471d-9744-b767df4a8575 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + TLOF + 20.0 + 20.0 + 1.0 + + + 52.288936111111106 -32.035086111111106 + + + + + + + + + + + + + 52.28903333333333 -32.034952777777775 52.28885555555556 -32.034927777777774 52.28883888888889 -32.035219444444444 52.28901666666666 -32.035244444444444 52.28903333333333 -32.034952777777775 + + + + + + + + + 18 + + + + + CONC + + + + + + + + + + 69677242-f98d-40d0-8c04-cf396497270f + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 70.0 + 90.0 + + + GRASS + + + + + + + + + + + + + 52.28932777777778 -32.034549999999996 52.288605555555556 -32.03444722222222 52.28855 -32.03562222222222 52.28926666666666 -32.035725 52.28932777777778 -32.034549999999996 + + + + + + + + + + + + + + + + + + 66ec0e97-5d40-4ca8-bf42-35f8e93723bb + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 242 + + + + + 52.37464269376479 -31.94655407346698 52.372661895885464 -31.946298658872173 52.37249328436266 -31.946309509256167 52.37226938754995 -31.946412846246652 52.372166050559464 -31.946602297395877 52.3720797641724 -31.948219693525278 + + + + + + + + + + + + 5596cc48-232b-431a-94d3-6a6d0351f0cf + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 70.0 + 90.0 + + + GRASS + + + + + + + + + + + + + 52.28932777777778 -32.034549999999996 52.288605555555556 -32.03444722222222 52.28855 -32.03562222222222 52.28926666666666 -32.035725 52.28932777777778 -32.034549999999996 + + + + + + + + + + + + + + + + + + 54f9c436-125a-4661-bc57-0d08af3e4f4b + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + 70.0 + 90.0 + + + GRASS + + + + + + + + + + + + + 52.28932777777778 -32.034549999999996 52.288605555555556 -32.03444722222222 52.28855 -32.03562222222222 52.28926666666666 -32.035725 52.28932777777778 -32.034549999999996 + + + + + + + + + + + + + + + + + + d4713d5d-860a-46cd-880b-30f13e291c5b + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + + + 52.288936111111106 -32.035086111111106 + 18 + + + + + + + + + + 9288f255-e6a1-43fa-9c3c-102a802c99b1 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + G + 116.9 + + + 52.37340555555556 -31.962791666666664 + + + + + + + + + + + 4428d037-1cdf-433a-9bfa-d0857aaf448a + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + 09R/27L + 2600.0 + 45.0 + + + CONC_ASPH + 50 + FLEXIBLE + A + Y + ACFT + + + + + + + + + + 5d6513d4-a62a-49e1-9e26-0b8cbf320daf + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + 09R + 85.29 + + + + + + + + 2ad2bc03-323b-41d3-992e-3c9d4e83dd02 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + THR + + + 52.36550555555556 -31.965008333333333 + + + + + + + + + + ee6019d6-29f7-404d-8cee-b6819f325aed + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + 27L + 265.29 + + + + + + + + 6e7b7beb-4bd2-447c-bd1d-52202ddd37d4 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + THR + + + 52.368252777777776 -31.925594444444446 + + + + + + + + + + 7a8f00e8-15f0-402f-9562-3c109999d545 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.37590585931356 -31.964278043969905 52.375111423433644 -31.964228391727417 52.377870286949445 -31.92180984838786 52.378484819142066 -31.921878401779864 52.37590585931356 -31.964278043969905 + + + + + + + + + + + + + + + + + e24947bb-5083-433e-b125-89199c1d1233 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.36589862656441 -31.96504267834769 52.36519841646239 -31.964972171080476 52.36785927788303 -31.925539068377507 52.36850257170318 -31.92561516687336 52.36589862656441 -31.96504267834769 + + + + + + + + + + + + + + + + + a45ec8a1-2259-4140-8322-a441e3006cb3 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + F + 23.0 + + + CONC_ASPH + 80 + RIGID + B + W + TECH + + + + + + + + + + 78396f68-9c03-438a-a6b4-331157b1a79c + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + A + 23.0 + + + CONC_ASPH + 80 + RIGID + B + W + TECH + + + + + + + + + + 51474004-6ec1-47a0-bada-404b866e6549 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + B + 23.0 + + + CONC_ASPH + 80 + RIGID + B + W + TECH + + + + + + + + + + d3a7ea1e-93d2-4298-adb3-141906a7b178 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + C + 23.0 + + + CONC_ASPH + 80 + RIGID + B + W + TECH + + + + + + + + + + 8a3a6406-6d9e-42e5-a5d7-daac00dc0d52 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + D + 23.0 + + + CONC_ASPH + 80 + RIGID + B + W + TECH + + + + + + + + + + 0c049047-56f5-41a1-ba56-d0695817a3d2 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + I + 23.0 + + + CONC_ASPH + 80 + RIGID + B + W + TECH + + + + + + + + + + 125d2cc5-2fd4-4917-8a08-a1586bce481d + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + G + 23.0 + + + CONC_ASPH + 80 + RIGID + B + W + TECH + + + + + + + + + + cf10b08e-3cd0-4ac3-be6d-ec423bac7a90 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.374114061066535 -31.960971595710426 52.3744611279516 -31.95616981216965 52.37453053140269 -31.954519552332492 52.37521579457132 -31.943777975195324 52.37535133179981 -31.941558553078725 52.376147020041884 -31.92837951247149 52.37622521459678 -31.92756498585794 52.37654100007663 -31.922114654922687 52.376575701802174 -31.921983559515066 52.376660528242404 -31.921929579053103 52.37784085296367 -31.922251530702038 52.377870286949445 -31.92180984838786 52.37655754145512 -31.921374583594957 52.37640766855823 -31.921394132233683 52.37627495351409 -31.921509302599247 52.37619398282116 -31.92167509973242 52.37615353625479 -31.921869815775995 52.37490876237152 -31.942638644826488 52.3745158937468 -31.94927834993428 52.37382493754196 -31.960971595710426 52.37367432444154 -31.96407068771583 52.374727292287155 -31.964265101088674 52.375111423433644 -31.964228391727417 52.37514852880121 -31.963669143754903 52.37413010408671 -31.963484475292006 52.37403221201539 -31.963411376762416 52.37398348915221 -31.963265930776455 52.374114061066535 -31.960971595710426 + + + + + + + + + + + + + + + + + d5465b90-8f8b-4332-b9f4-f564ffefd7ea + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.3744611279516 -31.95616981216965 52.374534458374534 -31.95583776746803 52.374603861825626 -31.95566040309301 52.374734957233244 -31.95545990423429 52.37585820657654 -31.952764796553602 52.375960762592015 -31.951171207621044 52.374694569889876 -31.954570921916073 52.37465008049815 -31.954615411307802 52.374575931511934 -31.954573887875526 52.37453053140269 -31.954519552332492 52.3744611279516 -31.95616981216965 + + + + + + + + + + + + + + + + + 867a4fab-e1e7-499c-90fd-38543a4bc19c + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.37521579457132 -31.943777975195324 52.37533561042285 -31.943061454913373 52.37550740385998 -31.942445861763698 52.37671701222849 -31.939541219415187 52.37682671332614 -31.937855848697783 52.37535133179981 -31.941558553078725 52.37521579457132 -31.943777975195324 + + + + + + + + + + + + + + + + + 63f05cec-6e82-49f6-8e0c-20ef2e1b3ac1 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.376147020041884 -31.92837951247149 52.37631186072712 -31.92831215561649 52.37718553237552 -31.928537670382788 52.37741623285176 -31.928785664733155 52.37748253483813 -31.927771164459894 52.377238895008716 -31.927982851524785 52.37640740347544 -31.92780356267792 52.37622521459678 -31.92756498585794 52.376147020041884 -31.92837951247149 + + + + + + + + + + + + + + + + + 3d4a46a4-df85-497a-b19a-e2d7d16cd66b + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.369376203479014 -31.947955104361693 52.36966361235915 -31.943132732858935 52.37044355915342 -31.928666462531368 52.3705558375811 -31.925885568981418 52.36850257170318 -31.92561516687336 52.36847133176303 -31.926078211791108 52.36992989174596 -31.92645630929092 52.37017550284791 -31.926561571191748 52.36985971714541 -31.93303267185691 52.369794555016334 -31.93398504143583 52.36890734756649 -31.947739263143987 52.36874193600805 -31.94818036063317 52.36669067900043 -31.953041507599508 52.36659929409392 -31.95443305049401 52.369376203479014 -31.947955104361693 + + + + + + + + + + + + + + + + + 0a6b3bbb-912b-4afd-9412-33947d8dca61 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.369794555016334 -31.93398504143583 52.369727240094264 -31.933821252142682 52.36962343151356 -31.933735239318672 52.3679875582048 -31.933408647349477 52.36802915351955 -31.932787080998335 52.369693660147306 -31.93309968028133 52.3697861980821 -31.93308811303948 52.36985971714541 -31.93303267185691 52.369794555016334 -31.93398504143583 + + + + + + + + + + + + + + + + + 4d78044e-2ca4-475a-a678-123e5f7f388b + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.373419352744456 -31.94465243187102 52.37341876432026 -31.94356698787013 52.3738353611297 -31.943635384361233 52.37384564168429 -31.944668155420775 52.373419352744456 -31.94465243187102 + + + + + + + + + + + + + + + + + d6cf5b07-9fb4-4afb-9b47-841643da3e99 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + CONC + 80 + RIGID + B + W + TECH + + + + + + + + + + 285fd2af-599a-4f9b-b812-fd24a68416c4 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.369376203479014 -31.947955104361693 52.36948258558073 -31.947865454851 52.372153867201185 -31.9483824951364 52.37336828819957 -31.94861756739893 52.37356087309213 -31.948652735074965 52.37396613869214 -31.948733118334466 52.374096781103304 -31.94875745923603 52.37429500429997 -31.948911632833443 52.3745158937468 -31.94927834993428 52.37490876237152 -31.942638644826488 52.37475453248021 -31.9432259047973 52.3745528472377 -31.943863586078734 52.37433633219796 -31.944296616158216 52.37404882338086 -31.944655400246912 52.37384564168429 -31.944668155420775 52.373419352744456 -31.94465243187102 52.373240585956786 -31.94466222350188 52.373107871178895 -31.94453075660838 52.37298351392235 -31.94438774576335 52.372846720940146 -31.944338002860732 52.37273479940925 -31.944331784997903 52.37259178856422 -31.94439396362618 52.37248632123943 -31.944468912666462 52.3724167440947 -31.944452297228914 52.372079952926995 -31.94441012447827 52.37202325274635 -31.944411474482564 52.370249685946185 -31.94399642025034 52.37006846582388 -31.943919305304682 52.369937370416245 -31.943788209897058 52.3698101307559 -31.943618557016602 52.36966361235915 -31.943132732858935 52.369376203479014 -31.947955104361693 + + + + + + + + + + + + + + + + + 595dfb4d-6614-4b0d-8392-5e76c720bd90 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + 4 + ANG_NI + + + 52.372075 -31.948222222222224 + + + + + + NORMAL + + + + + + + + + 1707f988-e674-4290-933c-047d87b85bd8 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + CONC + 80 + RIGID + B + W + TECH + + + + + + + + + + f2cd7c2f-2d8a-4a78-a101-b14fdd1e742c + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.37044355915342 -31.928666462531368 52.3705558375811 -31.925885568981418 52.37077393114787 -31.925981131191815 52.370994179144176 -31.926235263495247 52.37096876591384 -31.927810883776495 52.37044355915342 -31.928666462531368 + + + + + + + + + + + + + + + + + 9d42afcc-298a-4d7f-9c26-14729d215da4 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + 90.0 + 70.0 + + + GRASS + + + + + + + + + + + + + 52.3732881892009 -31.943560770007306 52.37341876432026 -31.94356698787013 52.3738353611297 -31.943635384361233 52.37402189701452 -31.94364160222406 52.37402189701452 -31.942764883565392 52.37329440706372 -31.94275244783974 52.3732881892009 -31.943560770007306 + + + + + + + + + + + OFZ + + + + + + + 0e131693-cf13-4938-9969-994d7f56a23c + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + CONC + 80 + RIGID + B + W + TECH + + + + + + + + + + 7c413d5e-c678-4d65-8975-c1411a5968ce + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + + + + + + + + + + + 52.374727292287155 -31.964265101088674 52.374597782032694 -31.964408744622993 52.37446847054829 -31.964543670223794 52.374403184591124 -31.96479548748714 52.37335843906866 -31.964651876423467 52.37319265266536 -31.964430827885742 52.37314492627653 -31.964227362754418 52.37321871079687 -31.961960211633183 52.3734622004889 -31.96167429078847 52.37366508594749 -31.961349674054734 52.37382493754196 -31.960971595710426 52.37367432444154 -31.96407068771583 52.374727292287155 -31.964265101088674 + + + + + + + + + + + + + + + + + d22653bd-826d-411c-b8d3-838eba2a8325 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + TOWER + BUILDING + + + 12.0 + + + + + + + + + + + 52.373240585956786 -31.94466222350188 52.373239760561745 -31.943667276726224 52.37253439745958 -31.943665099679613 52.37248632123943 -31.944468912666462 52.37259178856422 -31.94439396362618 52.37273479940925 -31.944331784997903 52.372846720940146 -31.944338002860732 52.37298351392235 -31.94438774576335 52.373107871178895 -31.94453075660838 52.373240585956786 -31.94466222350188 + + + + + + + + + 40 + + + + + + + + + + + 14d8289b-4628-41c3-bcaa-be6e26e4b96a + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + AIS-MET + BUILDING + + + + + + + + + + + + + 52.3724167440947 -31.944452297228914 52.3724257628338 -31.943804648367422 52.37207199275941 -31.943801818206826 52.372079952926995 -31.94441012447827 52.3724167440947 -31.944452297228914 + + + + + + + + + + + + + + + + + + + 9c171b9f-90d3-46e8-84b2-a8348e65e839 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + TERMINAL + BUILDING + + + 15.0 + + + + + + + + + + + 52.37202325274635 -31.944411474482564 52.37202671018989 -31.942652773005218 52.37024936933618 -31.942381077588088 52.370249685946185 -31.94399642025034 52.37202325274635 -31.944411474482564 + + + + + + + + + 31.5 + + + + + + + + + + + 6d323fef-9ddb-4f7e-9986-a945276ed585 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + HANGAR + + + 52.372733333333336 -31.94905 + + + + + NORMAL + + + HANGAR + + + + + + + 0a12b87b-fe93-4dbd-8f77-94b97d262083 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + HANGAR + BUILDING + + + 20.0 + + + + + + + + + + + 52.37336828819957 -31.94861756739893 52.373304536303785 -31.94973261520167 52.37212152917504 -31.949528843638824 52.372153867201185 -31.9483824951364 52.37336828819957 -31.94861756739893 + + + + + + + + + 55 + + + + + + + + + + + + 742a1aa1-10a4-435e-9e18-7a0a30d1af59 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + + BUILDING + + + + + + + + + + + + + 52.37396613869214 -31.948733118334466 52.37397188482283 -31.949405421842457 52.37355868137594 -31.949377120236502 52.37356087309213 -31.948652735074965 52.37396613869214 -31.948733118334466 + + + + + + + + + + + + + + + + + + + 225d45f0-b285-4d85-a699-84f76c57f4f8 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + PARKING + BUILDING + + + + + + + + + + + + + 52.371823023325824 -31.942040997867267 52.37068117016678 -31.941727301944454 52.37095094866041 -31.936588962728788 52.37164735360905 -31.9357419837372 52.372199458433194 -31.936369375582817 52.37206770614562 -31.93879738202539 52.37200496696106 -31.93947496521866 52.37194222777649 -31.941790041129018 52.371823023325824 -31.942040997867267 + + + + + + + + + + + + + + + + + + + 21a13c9f-a8ff-4fdd-9aaa-5dbfd91514b8 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + P + EAP2 + EAP2_VAARDNOR + + + + + 20000 + GND + + + + + + + + + + + 52.36666666666667 -22.1 + 15.0 + + + + + + + + + + + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + NUCLEAR + ACTIVE + + + CEILING + FLOOR + BETWEEN + + + + + + + + + + + 6a23b1fb-5eba-468e-974a-d37cdecf089f + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + R + EAR1 + EAR1_BRAVO + + + + + 1525 + SFC + GND + + + + + + + + + + + 55.233333333333334 -36.166666666666664 55.23116372807667 -36.89437337916484 + + + 55.233333333333334 -36.166666666666664 + 25.0 + 270.0 + 497.0 + + + 54.92816350530716 -35.674116070018954 55.233333333333334 -36.166666666666664 + + + + + + + + + + + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + SHOOTING + ACTIVE + + + 1525 + SFC + FLOOR + SFC + BETWEEN + + + + + + + + + + + 1e2c1cc2-49a5-4fc2-bce7-7ffc60eb7666 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + R + EAR3 + EAR3_BURGENVALK + + + + + 360 + STD + 230 + STD + + + + + + + + + + + 50.46666666666667 -38.46666666666667 50.43333333333333 -34.0 48.8 -34.0 49.0 -38.46666666666667 50.46666666666667 -38.46666666666667 + + + + + + + + + + + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + AIR_GUN + ACTIVE + + + 360 + STD + 230 + STD + BETWEEN + + + + + + + + + + + cae20e0e-7b7e-4bab-8f22-5b11f0a0a0d6 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + R + EAR5 + EAR5_WINSWUK + + + + + 360 + STD + GND + + + + + + + + + + + 47.333333333333336 -39.666666666666664 43.666666666666664 -36.5 43.0 -38.0 44.03333333333333 -40.0 47.0 -41.0 47.333333333333336 -39.666666666666664 + + + + + + + + + + + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + EXERCISE + ACTIVE + + + 360 + STD + FLOOR + SFC + BETWEEN + + + + + + + + + + + 8c6e9bea-f725-47bc-9106-ba00c27baba9 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + D + EAD4 + EAD4_HORSHAM + + + + + 360 + STD + GND + + + + + + + + + + + 45.501666666666665 -29.006944444444443 + 20.0 + + + + + + + + + + + + + + + + + + + UTC + MON + 07:00 + 17:00 + NO + + + + + UTC + TUE + 07:00 + 17:00 + NO + + + + + UTC + WED + 07:00 + 17:00 + NO + + + + + UTC + THU + 07:00 + 17:00 + NO + + + + + UTC + FRI + 07:00 + 17:00 + NO + + + AIR_DROP + ACTIVE + + + 360 + STD + FLOOR + SFC + BETWEEN + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + + + UTC + MON + 07:00 + 17:00 + NO + YES + + + + + UTC + TUE + 07:00 + 17:00 + NO + YES + + + + + UTC + WED + 07:00 + 17:00 + NO + YES + + + + + UTC + THU + 07:00 + 17:00 + NO + YES + + + + + UTC + FRI + 07:00 + 17:00 + NO + YES + + + AIR_DROP + INACTIVE + + + 360 + STD + FLOOR + SFC + BETWEEN + + + + + + + + + + + 4f745d73-4ecd-486b-8023-54a5e5a94513 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + D + EAD6 + EAD6_DONLON + + + + + 360 + STD + GND + + + + + + + + + + + 52.38333333333333 -31.216666666666665 + 8.0 + + + + + + + + + + + + + + + + + + + UTC + MON + 07:00 + 16:00 + NO + + + + + UTC + TUE + 07:00 + 16:00 + NO + + + + + UTC + WED + 07:00 + 16:00 + NO + + + + + UTC + THU + 07:00 + 16:00 + NO + + + + + UTC + FRI + 07:00 + 16:00 + NO + + + AIR_GUN + ACTIVE + + + 360 + STD + FLOOR + SFC + BETWEEN + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + + + UTC + MON + 07:00 + 16:00 + NO + YES + + + + + UTC + TUE + 07:00 + 16:00 + NO + YES + + + + + UTC + WED + 07:00 + 16:00 + NO + YES + + + + + UTC + THU + 07:00 + 16:00 + NO + YES + + + + + UTC + FRI + 07:00 + 16:00 + NO + YES + + + AIR_GUN + INACTIVE + + + 360 + STD + FLOOR + SFC + BETWEEN + + + + + + + + + + + f0331134-d00a-4f9b-ac4f-34718d462729 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + TMA + NIBORD + + + + + + 450 + STD + 450 + SFC + + + + + + + + + + + 48.848333333333336 -23.236666666666668 + 50.0 + + + + + + + + + + + + + + + + + + + + + 2012-04-07T23:59:00Z + 2012-06-14T23:59:00Z + + + TEMPDELTA + 1 + + + INACTIVE + + + CEILING + FLOOR + BETWEEN + + + + + + + REMARK + + + Class G Airspace. + + + + + + + + + + + + + + + + 04888c9d-6735-4bb2-9dd7-f4728e0fe8ce + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + DECCA + MANGERN CHAIN + + + + + + + b9024736-3a25-4c92-9b2f-bfc0e29ae31b + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + FELDMAD + MASTER + 85.72 + + + + 52.44166666666666 -23.7125 + + + + + OPERATIONAL + + + + + + + + + 7d4ffd7a-4036-40ff-87a5-db946b5af428 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + KYLLSTAD + RED_SLAVE + 114.2928 + + + + 51.36527777777778 -21.534444444444446 + + + + + OPERATIONAL + + + + + + + + + 81c51d5f-b0ad-49d1-9ace-5d5068d107a2 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + VENZE + GREEN_SLAVE + 128.5794 + + + + 54.285555555555554 -24.269444444444442 + + + + + OPERATIONAL + + + + + + + + + 64b7ddc6-43b2-46cb-80b7-6c2b8c40e29a + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + LAUTERBER + PURPLE_SLAVE + 71.433 + + + + 51.32361111111111 -25.989166666666666 + + + + + OPERATIONAL + + + + + + + + + f4569050-2c6f-4195-b92a-a92802cb8524 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + T_COV + DISTANCE + + + + CCA + 000 + 360 + TRUE + 0 + 500 + + + + + + + + + 9481f274-f05b-4c00-9017-eae75d33c45b + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + ATURA + MAR_BCN + WHITE + YES + + + 55.36666666666667 -33.983333333333334 + + + + + + + + + a552aba9-aed1-452f-a50e-347281817f96 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2013-04-23T12:00:00Z + + + + BASELINE + 1 + + + 2013-04-23T12:00:00Z + + + + CETA + MAR_BCN + GREEN + YES + + + 43.2 -33.36666666666667 + + + + + + + + + bf108180-75dd-4326-af29-561bf28a8c31 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2012-07-10T07:00:00Z + 2012-07-10T07:16:00Z + + + BASELINE + 1 + + + 2012-07-10T07:00:00Z + 2012-07-10T07:16:00Z + + + NOTAM_4_02_1 + DIGITAL + SAA.ACT + + + A + 1 + 2012 + N + 2012-07-06T23:15:00 + EAXX + QRRCA + IV + BO + W + 5200N03100W + 999 + EADD + 1207100700 + 1207101600 + TEMPORARY RESERVED AREA ACR001 ACTIVE MILITARY EXERCISE TAKING PLACE. +FOR FURTHER INFORMATION PLEASE CONTACT DONLON ACC ON PHONE (12)123 45 67. + 210 + 330 + + + + + + + + + + 2012-07-10T07:00:00Z + + + PERMDELTA + 1 + + + 2012-07-10T07:00:00Z + 2012-07-10T07:16:00Z + + + NOTAM_4_02_1 + DIGITAL + SAA.ACT + + + A + 1 + 2012 + N + 2012-07-06T23:15:00 + EAXX + QRRCA + IV + BO + W + 5200N03100W + 999 + EADD + 1207100700 + 1207101600 + TEMPORARY RESERVED AREA ACR001 ACTIVE MILITARY EXERCISE TAKING PLACE. +FOR FURTHER INFORMATION PLEASE CONTACT DONLON ACC ON PHONE (12)123 45 67. + 210 + 330 + + + + + + + + + + cc1bdbc7-476c-4b04-81c0-8f5e7ccb454b + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2012-04-07T23:59:00Z + 2012-06-14T23:59:00Z + + + BASELINE + 1 + + + 2012-04-07T23:59:00Z + 2012-06-14T23:59:00Z + + + NOTAM_4_03_2 + DIGITAL + ATSA.ACT + + + A + 2 + 2012 + N + 2012-04-05T11:58:32 + EAXX + QATCD + IV + NBO + AE + 4850N02314W + 050 + EADD + 1204072359 + 1206142359 + TMA (NIBORD) NOT ACTIVE. +CLASS G AIRSPACE. + 000 + 999 + + + + LOCAL_FORMAT + + + + + + + + + + + 2012-04-07T23:59:00Z + + + PERMDELTA + 1 + + + 2012-04-07T23:59:00Z + 2012-06-14T23:59:00Z + + + NOTAM_4_03_2 + DIGITAL + ATSA.ACT + + + A + 2 + 2012 + N + 2012-04-05T11:58:32 + EAXX + QATCD + IV + NBO + AE + 4850N02314W + 050 + EADD + 1204072359 + 1206142359 + TMA (NIBORD) NOT ACTIVE. +CLASS G AIRSPACE. + 000 + 999 + + + + LOCAL_FORMAT + + + + + + + + + + + 4935e16e-2a7d-464b-a537-477c7af1acbb + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2012-11-07T08:00:00Z + 2012-11-17T17:00:00Z + + + BASELINE + 1 + + + 2012-11-07T08:00:00Z + 2012-11-17T17:00:00Z + + + NOTAM_4_04_1 + DIGITAL + SAA.NEW + + + A + 3 + 2012 + N + 2012-11-05T07:52:43 + EAXX + QRRCA + IV + BO + W + 5301N03116W + 999 + EADD + 1211070800 + 1211171700 + DAILY 0800-1700 + TEMPORARY RESTRICTED AREA (EAR0003-12) ESTABLISHED +FOR UNSPECIFIED HAZARD AS FOLLOWS: 525533N 0312746W - 530148N 0313416W - 531005N 0312042W - 531005N 0310842W - 525617N 0305706W - 525235N 0310612W - 525533N 0312746W. + 000 + 600 + + + + LOCAL_FORMAT + + + + + + + + + + + 2012-11-07T08:00:00Z + + + PERMDELTA + 1 + + + 2012-11-07T08:00:00Z + 2012-11-17T17:00:00Z + + + NOTAM_4_04_1 + DIGITAL + SAA.NEW + + + A + 3 + 2012 + N + 2012-11-05T07:52:43 + EAXX + QRRCA + IV + BO + W + 5301N03116W + 999 + EADD + 1211070800 + 1211171700 + DAILY 0800-1700 + TEMPORARY RESTRICTED AREA (EAR0003-12) ESTABLISHED +FOR UNSPECIFIED HAZARD AS FOLLOWS: 525533N 0312746W - 530148N 0313416W - 531005N 0312042W - 531005N 0310842W - 525617N 0305706W - 525235N 0310612W - 525533N 0312746W. + 000 + 600 + + + + LOCAL_FORMAT + + + + + + + + + + + + 028e6905-f99a-4ca7-a736-2c0787cdcf57 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2012-11-07T08:00:00Z + 2012-11-17T17:00:00Z + + + BASELINE + 1 + + + 2012-11-07T08:00:00Z + + + + R + EAR0003-12 + + + 1 + + + 60000 + MSL + GND + + + + + + + + + + + 52.9282371670167 -31.461114091711558 53.03083043591206 -31.568915849359982 53.16843418881167 -31.345348764204196 53.18194444444444 -31.1945 + + + + + + + + + + 52.96333333333334 -30.999444444444446 52.90720345892345 -31.130039397963714 52.9282371670167 -31.461114091711558 + + + + + + + + + + + + + + + + + + + UTC + ANY + 08:00 + 17:00 + NO + + + OTHER + ACTIVE + + + 60000 + FLOOR + BETWEEN + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + NO + + + + + UTC + ANY + 08:00 + 17:00 + NO + YES + + + INACTIVE + + + 60000 + FLOOR + BETWEEN + + + + + + + + + + + + + + + + 2012-11-07T08:00:00Z + + + PERMDELTA + 1 + + + 2012-11-07T08:00:00Z + + + + R + EAR0003-12 + + + 1 + + + 60000 + MSL + 0 + SFC + + + + + + + + + + + 52.9282371670167 -31.461114091711558 53.03083043591206 -31.568915849359982 53.16843418881167 -31.345348764204196 53.18194444444444 -31.1945 + + + + + + + + + + 52.96333333333334 -30.999444444444446 52.90720345892345 -31.130039397963714 52.9282371670167 -31.461114091711558 + + + + + + + + + + + + + + + + + + + UTC + ANY + 08:00 + 17:00 + NO + + + OTHER + ACTIVE + + + 60000 + FLOOR + BETWEEN + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + NO + + + + + UTC + ANY + 08:00 + 17:00 + NO + YES + + + INACTIVE + + + 60000 + FLOOR + BETWEEN + + + + + + + + + + + + + + + + c68d2c5e-9a38-4d55-afcf-4d6450dc1000 + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + IFR + YES + + + + + + + e515ea41-5e25-4580-8295-cbc33a2fde5a + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + EVEN + FL + + + 270 + + + + + 290 + + + + + 310 + + + + + + + + + + 4de2394a-6aa4-4913-99d0-ba13183facfc + + + + + 2009-01-01T00:00:00Z + + + + BASELINE + 1 + + + 2009-01-01T00:00:00Z + + + + ODD + FL + + + 280 + + + + + 300 + + + + + 320 + + + + + + + + + + 5a8ed90a-ad4e-4352-b073-26d27b0ac978 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2012-12-22T08:00:00Z + 2012-12-22T11:00:00Z + + + BASELINE + 1 + + + 2012-12-22T08:00:00Z + 2012-12-22T11:00:00Z + + + NOTAM_4_08_2 + DIGITAL + AD.CLS + + + A + 4 + 2012 + N + 2012-12-21T07:45:00Z + EADD + QFALT + V + NBO + A + 5222N03157W + 999 + EADD + 1212220800 + 1212221100EST + AD CLOSED EXCEPT FOR IFR. +DUE TO WX BELOW MIN VIS 4000 M. + 000 + 999 + + + + + + + + + + 2012-12-22T08:00:00Z + + + PERMDELTA + 1 + + + 2012-12-22T08:00:00Z + 2012-12-22T11:00:00Z + + + NOTAM_4_08_2 + DIGITAL + AD.CLS + + + A + 4 + 2012 + N + 2012-12-21T07:45:00Z + EADD + QFALT + V + NBO + A + 5222N03157W + 999 + EADD + 1212220800 + 1212221100EST + AD CLOSED EXCEPT FOR IFR. +DUE TO WX BELOW MIN VIS 4000 M. + 000 + 999 + + + + + + + + + + ff3ab666-d8d0-428c-8304-5922ee4636b5 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2012-11-22T22:00:00Z + 2012-11-23T04:00:00Z + + + BASELINE + 1 + + + 2012-11-22T22:00:00Z + 2012-11-23T04:00:00Z + + + NOTAM_4_09_1 + DIGITAL + RWY.CLS + + + A + 5 + 2012 + N + 2012-11-21T11:03:00 + EADD + QMRLC + IV + NBO + A + 5222N03157W + 999 + EADD + 1211222200 + 1211230400 + RWY 09L/27R CLOSED. + 000 + 999 + + + + + + + + + + 2012-11-22T22:00:00Z + + + PERMDELTA + 1 + + + 2012-11-22T22:00:00Z + 2012-11-23T04:00:00Z + + + NOTAM_4_09_1 + DIGITAL + RWY.CLS + + + A + 5 + 2012 + N + 2012-11-21T11:03:00 + EADD + QMRLC + IV + NBO + A + 5222N03157W + 999 + EADD + 1211222200 + 1211230400 + RWY 09L/27R CLOSED. + 000 + 999 + + + + + + + + + + 3dbc9405-69ab-4f1a-9010-ab64a1dbcc1a + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2012-10-07T07:00:00Z + 2012-10-07T14:00:00Z + + + BASELINE + 1 + + + 2012-10-07T07:00:00Z + 2012-10-07T14:00:00Z + + + NOTAM_4_09_9_1 + DIGITAL + NAV.UNS + + + A + 6 + 2012 + N + 2012-10-06T09:42:00Z + EAXX + QNMAS + IV + NBO + E + 5522N03223W + 999 + EAXX + 1210070700 + 1210071400 + BOORSPIJK VOR/DME +BOR +115.500 MHZ CH 102X U/S. +DUE TO MAINT. +DO NOT USE, FALSE INDICATIONS POSS. + 000 + 999 + + + + + + + + + + 2012-10-07T07:00:00Z + + + PERMDELTA + 1 + + + 2012-10-07T07:00:00Z + 2012-10-07T14:00:00Z + + + NOTAM_4_09_9_1 + DIGITAL + NAV.UNS + + + A + 6 + 2012 + N + 2012-10-06T09:42:00Z + EAXX + QNMAS + IV + NBO + E + 5522N03223W + 999 + EAXX + 1210070700 + 1210071400 + BOORSPIJK VOR/DME +BOR +115.500 MHZ CH 102X U/S. +DUE TO MAINT. +DO NOT USE, FALSE INDICATIONS POSS. + 000 + 999 + + + + + + + + + + 42875bd3-8d62-4a98-838c-871216e347b1 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2012-10-07T10:00:00Z + 2012-10-07T14:00:00Z + + + BASELINE + 1 + + + 2012-10-07T10:00:00Z + 2012-10-07T14:00:00Z + + + DIGITAL + NAV.UNS + + + A + 7 + 2012 + N + 2012-10-06T09:42:00Z + EADD + QICAS + IV + NBO + A + 5223N03157W + 999 + EADD + 1210070700 + 1210071400 + OXS ILS GP LOC +RWY 27R +U/S. +DUE TO MAINTENANCE. + 000 + 999 + + + + + + + + + + 2012-10-07T10:00:00Z + + + PERMDELTA + 1 + + + 2012-10-07T10:00:00Z + 2012-10-07T14:00:00Z + + + DIGITAL + NAV.UNS + + + A + 7 + 2012 + N + 2012-10-06T09:42:00Z + EADD + QICAS + IV + NBO + A + 5223N03157W + 999 + EADD + 1210070700 + 1210071400 + OXS ILS GP LOC +RWY 27R +U/S. +DUE TO MAINTENANCE. + 000 + 999 + + + + + + + + + + 5266b646-89a9-453f-b6fe-5368c38274d2 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2012-10-01T05:31:00Z + 2012-10-30T18:26:00Z + + + BASELINE + 1 + + + 2012-10-01T05:31:00Z + 2012-10-30T18:26:00Z + + + NOTAM_4_10_1 + DIGITAL + OBS.NEW + + + A + 8 + 2012 + N + 2012-09-30T10:00:00Z + EAXX + QOBCE + IV + NBO + A + 5222N03157W + 005 + EADD + 1210010531 + 1210301826 + TEMPORARY CRANE +LOCATED AT EADD. +522222N 0315632W ELEVATION 858 FT (HEIGHT 85 FT). +500 FT EAST OF CONTROL TOWER. +LIGHTED. +85 FT IS A MAXIMUM HEIGHT. + 000 + 999 + + + + + + + + + + 2012-10-01T05:31:00Z + + + PERMDELTA + 1 + + + 2012-10-01T05:31:00Z + 2012-10-30T18:26:00Z + + + NOTAM_4_10_1 + DIGITAL + OBS.NEW + + + A + 8 + 2012 + N + 2012-09-30T10:00:00Z + EAXX + QOBCE + IV + NBO + A + 5222N03157W + 005 + EADD + 1210010531 + 1210301826 + TEMPORARY CRANE +LOCATED AT EADD. +522222N 0315632W ELEVATION 858 FT (HEIGHT 85 FT). +500 FT EAST OF CONTROL TOWER. +LIGHTED. +85 FT IS A MAXIMUM HEIGHT. + 000 + 999 + + + + + + + + + + df421db4-3698-4003-9d71-93ca57e70ffc + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2012-10-01T05:31:00Z + 2012-10-30T18:26:00Z + + + BASELINE + 1 + + + 2012-10-01T05:31:00Z + + + + EADD_CRANE_1 + CRANE + YES + + + + + + REMARK + + + 500 FT EAST OF CONTROL TOWER + + + + + 85.0 + CRANE + NO + + + 52.3727777777778 -31.9422222222222 + 858 + + + + + + + WARNING + + + located at airport EADD + + + + + + + REMARK + + + 85 FT IS A MAXIMUM HEIGHT + + + + + + + + + + + + + + + + 2012-10-01T05:31:00Z + + + PERMDELTA + 1 + + + 2012-10-01T05:31:00Z + + + + EADD_CRANE_1 + CRANE + YES + + + 85.0 + CRANE + NO + + + 52.3727777777778 -31.9422222222222 + 858 + + + + + + + WARNING + + + located at airport EADD + + + + + + + + horizontalProjectionlocation + REMARK + + + 500 FT EAST OF CONTROL TOWER + + + + + + + REMARK + + + 85 FT IS A MAXIMUM HEIGHT + + + + + + + + + + + + + + + + 7af080ab-a1c2-48b1-a677-e9f51fd32b26 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2012-10-01T04:30:00Z + 2012-10-09T14:29:00Z + + + BASELINE + 1 + + + 2012-10-01T04:30:00Z + 2012-10-09T14:29:00Z + + + NOTAM_4_10_2 + DIGITAL + OBS.NEW + + + A + 9 + 2012 + N + 2012-09-30T02:34:00Z + EAXX + QOBCE + IV + NBO + AE + 5222N03157W + 005 + EADD + 1210010430 + 1210091429 + DAILY 0430-1429 + TEMPORARY MOBILE CRANE +AT PSN 522116N 0315648W ELEVATION 675 FT (HEIGHT 483 FT). +LIGHTED ICAO MARKED. + 000 + 999 + + + + + + + + + + 2012-10-01T04:30:00Z + + + PERMDELTA + 1 + + + 2012-10-01T04:30:00Z + 2012-10-09T14:29:00Z + + + NOTAM_4_10_2 + DIGITAL + OBS.NEW + + + A + 9 + 2012 + N + 2012-09-30T02:34:00Z + EAXX + QOBCE + IV + NBO + AE + 5222N03157W + 005 + EADD + 1210010430 + 1210091429 + DAILY 0430-1429 + TEMPORARY MOBILE CRANE +AT PSN 522116N 0315648W ELEVATION 675 FT (HEIGHT 483 FT). +LIGHTED ICAO MARKED. + 000 + 999 + + + + + + + + + + aa0c0b1e-3e9c-4564-b858-ace28b473c0a + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2012-10-01T04:30:00Z + 2012-10-09T14:29:00Z + + + BASELINE + 1 + + + 2012-10-01T04:30:00Z + + + + EADD_CRANE_2 + CRANE + YES + + + + + UTC + ANY + 04:30 + 14:29 + NO + + + 483.0 + CRANE + YES + + + 52.3544444444444 -31.9466666666667 + 675 + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + + + UTC + ANY + 04:30 + 14:29 + NO + YES + + + 0.0 + + + 52.3544444444444 -31.9466666666667 + 0 + + + + + + + markingICAOStandard + DESCRIPTION + + + ICAO marked. + + + + + + + + + + + 2012-10-01T04:30:00Z + + + PERMDELTA + 1 + + + 2012-10-01T04:30:00Z + + + + EADD_CRANE_2 + CRANE + YES + + + + + UTC + ANY + 04:30 + 14:29 + NO + + + 483.0 + CRANE + YES + + + 52.3544444444444 -31.9466666666667 + 675 + + + + + + + + + UTC + ANY + 00:00 + 23:59 + NO + + + + + UTC + ANY + 04:30 + 14:29 + NO + YES + + + 0.0 + + + 52.3544444444444 -31.9466666666667 + 0 + + + + + + + markingICAOStandard + DESCRIPTION + + + ICAO marked. + + + + + + + + + + + c136dd70-0070-4808-9416-949614291cec + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2012-10-01T00:00:00Z + + + + BASELINE + 1 + + + 2012-10-01T00:00:00Z + + + + NOTAM_4_10_3 + DIGITAL + OBS.NEW + + + A + 10 + 2012 + N + 2012-09-28T23:52:00Z + EAXX + QOBCE + IV + NBO + AE + 5226N03205W + 999 + EADD + 1210010000 + PERM + PERMANENT GROUP OF WINDMILL. +522542N 0320519W ELEVATION 499 FT (HEIGHT 493 FT). +LIGHTED DAY AND NIGHT MARKED. +GROUP OF 3. + 000 + 999 + + + + + + + + + + 2012-10-01T00:00:00Z + + + PERMDELTA + 1 + + + 2012-10-01T00:00:00Z + + + + NOTAM_4_10_3 + DIGITAL + OBS.NEW + + + A + 10 + 2012 + N + 2012-09-28T23:52:00Z + EAXX + QOBCE + IV + NBO + AE + 5226N03205W + 999 + EADD + 1210010000 + PERM + PERMANENT GROUP OF WINDMILL. +522542N 0320519W ELEVATION 499 FT (HEIGHT 493 FT). +LIGHTED DAY AND NIGHT MARKED. +GROUP OF 3. + 000 + 999 + + + + + + + + + + 4722e24f-2d13-45a6-8189-32dd4ee82cff + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2013-04-23T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data, including Digital NOTAM Events; initially created by Luciad (www.luciad.be); currently maintained by Eurocontrol. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + 2012-10-01T00:00:00Z + + + + BASELINE + 1 + + + 2012-10-01T00:00:00Z + + + + WINDMILL_FARM + WINDMILL + YES + YES + YES + + + 493.0 + WINDMILL + MARKERS + + + 52.4283333333333 -32.0886111111111 + 499 + + + + + + + markingICAOStandard + DESCRIPTION + + + Day and night marked. + + + + + + + group + DESCRIPTION + + + GROUP OF 3 + + + + + + + + + + + 2012-10-01T00:00:00Z + + + PERMDELTA + 1 + + + 2012-10-01T00:00:00Z + + + + WINDMILL_FARM + WINDMILL + YES + YES + YES + + + 493.0 + WINDMILL + MARKERS + + + 52.4283333333333 -32.0886111111111 + 499 + + + + + + + markingICAOStandard + DESCRIPTION + + + Day and night marked. + + + + + + + group + DESCRIPTION + + + GROUP OF 3 + + + + + + + + + + + + + + e9ce3cc0-b41f-11e3-a5e2-0800200c9a66 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2014-03-25T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data; initially created by COMSOFT (www.comsoft.aero); currently maintained by Eurocontrol. This feature demonstrates a canceled commissioning. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + + 2012-10-01T05:31:00Z + + + PERMDELTA + 1 + + + 2012-10-01T05:31:00Z + + + + EADD_CRANE_3 + CRANE + YES + + + 85.0 + CRANE + NO + + + 52.3727777777778 -31.943 + 858 + + + + + + + WARNING + + + located at airport EADD + + + + + + + + horizontalProjectionlocation + REMARK + + + 250 FT EAST OF CONTROL TOWER + + + + + + + REMARK + + + 85 FT IS A MAXIMUM HEIGHT + + + + + + + + + + + PERMDELTA + 1 + 1 + + + + + + + + + + + + + + + + 8c755520-b42b-11e3-a5e2-0800400c9a66 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2014-03-25T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data; initially created by COMSOFT (www.comsoft.aero); currently maintained by Eurocontrol. This feature demonstrates a canceled decommissioning. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + + 2012-10-01T05:31:00Z + + + PERMDELTA + 1 + + + 2012-10-01T05:31:00Z + + + + EADD_CRANE_4 + CRANE + YES + + + 85.0 + CRANE + NO + + + 52.3727777777778 -31.9435 + 858 + + + + + + + WARNING + + + located at airport EADD + + + + + + + + horizontalProjectionlocation + REMARK + + + 150 FT EAST OF CONTROL TOWER + + + + + + + REMARK + + + 85 FT IS A MAXIMUM HEIGHT + + + + + + + + + + + + 2012-10-30T05:31:00Z + + + PERMDELTA + 2 + + + 2012-10-01T05:31:00Z + 2012-10-30T05:31:00Z + + + + + + + + + PERMDELTA + 2 + 1 + + + + + + + + 2012-11-01T15:30:00Z + + + PERMDELTA + 3 + YES + + + + + + + PERMDELTA + 3 + 1 + + + + + + + + 2012-11-30T05:31:00Z + + + PERMDELTA + 4 + + + 2012-10-01T05:31:00Z + 2012-11-30T05:31:00Z + + + + + + + + + + + + 8c755520-b42b-11e3-a5e2-0800500c9a66 + + + + utf8 + + + + + EUROCONTROL + + + + + + + http://www.eurocontrol.int + + + + + + + author + + + + + 2014-03-25T12:00:00Z + + + + + + + DONLON Sample + + + + + 2013-04-23T00:00:00Z + + + publication + + + + + + + Donlon sample data; initially created by COMSOFT (www.comsoft.aero); currently maintained by Eurocontrol. This feature demonstrates combinations of properties with schedules, PERMDELTAs and TEMPDELTAs. + + + + + Eduard Porosnicu + + + Eurocontrol + + + + + + + www.aixm.aero + + + AIXM 5.1 website + + + + + + + pointOfContact + + + + + + + To be used for demonstration purposes only! Any operational usage is prohibited! + + + + + eng + + + transportation + + + + + + + + + + + 2012-10-01T05:31:00Z + + + PERMDELTA + 1 + + + 2012-10-01T05:31:00Z + + + + EADD_CRANE_5 + CRANE + YES + + + + + UTC + ANY + 04:30 + 14:29 + NO + + + 85.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + UTC + ANY + 00:00 + 24:00 + NO + + + + + UTC + ANY + 04:30 + 14:29 + NO + YES + + + 0.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + + + + 2012-10-11T15:30:00Z + + + PERMDELTA + 2 + + + + + UTC + ANY + 04:30 + 17:29 + NO + + + 85.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + UTC + ANY + 00:00 + 24:00 + NO + + + + + UTC + ANY + 04:30 + 17:29 + NO + YES + + + 0.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + + + + 2012-11-01T15:30:00Z + + + PERMDELTA + 3 + + + + + UTC + ANY + 04:30 + 16:29 + NO + + + 85.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + UTC + ANY + 00:00 + 24:00 + NO + + + + + UTC + ANY + 04:30 + 16:29 + NO + YES + + + 0.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + + + + 2012-10-12T00:00:00Z + 2012-10-18T23:59:59Z + + + TEMPDELTA + 1 + NO + + + + + UTC + ANY + 00:00 + 24:00 + NO + + + 0.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + + + + 2012-10-12T00:00:00Z + 2012-10-19T23:59:59Z + + + TEMPDELTA + 1 + 1 + + + + + UTC + ANY + 00:00 + 24:00 + NO + + + 0.0 + CRANE + YES + + + 52.3727777777778 -31.9425 + 858 + + + + + + + + + + + fdaeffb4-6897-41fb-a33d-8861c2e91e69 + + + + + + 2011-01-13T00:00:00Z + + + + BASELINE + 1 + 0 + + + 2002-11-30T00:00:00Z + + + + CTA + EAMM + MAGNETTO OCA + NO + + + BASE + 1 + + + + + FULL_GEOMETRY + + + + + + + + + + UNION + 2 + + + + + FULL_GEOMETRY + + + + + + + + + + + + + + 0df377fe-dd53-4d60-b6c4-6546ef31d26b + + + + + + 2013-09-19T00:00:00Z + + + + BASELINE + 1 + 0 + + + 2010-11-01T00:00:00Z + + + + PART + EAMM + MAGNETTO OCA PART 1 + NO + + + + + 460 + STD + 210 + STD + + + + + + + + + + + 51.99333333333333 -6.0005 52.45333333333333 -5.869333333333333 52.81666666666667 -5.89 53.53333333333333 -5.981666666666667 53.89333333333333 -5.937833333333333 53.905 -6.0038333333333334 53.916666666666664 -6.099333333333333 + + + + + + + + + + + + + + + + + + + + + 010d8451-d751-4abb-9c71-f48ad024045b + + + + + + 2013-09-19T00:00:00Z + + + + BASELINE + 1 + 0 + + + 2010-11-01T00:00:00Z + + + + PART + EAMM2 + MAGNETTO OCA PART 2 + NO + + + + + 460 + STD + 210 + STD + + + + + + + + + + + 53.876666666666665 -5.863333333333333 53.89333333333333 -5.937833333333333 53.53333333333333 -5.981666666666667 52.81666666666667 -5.89 52.45333333333333 -5.869333333333333 52.516666666666666 -5.850666666666667 52.583333333333336 -5.831666666666667 53.3 -5.755 53.7 -5.786666666666667 53.718333333333334 -5.8083333333333336 53.876666666666665 -5.863333333333333 + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/test_base.py b/tests/test_base.py index 3efa46d..6f8a7d0 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -41,11 +41,3 @@ def setUp(self) -> None: airspace_feature = AixmFeatureFactory(file_loc).root.xpath("/message:AIXMBasicMessage/message:hasMember/" "aixm:Airspace", namespaces=NAMESPACES) self.airspace = MultiPointAixm(airspace_feature[0]) - - def test_get_coordinate_list(self): - subroot = self.airspace._root.xpath('.//aixm:geometryComponent', namespaces=NAMESPACES) - coordinate_list = self.airspace.get_coordinate_list(subroot) - self.assertTrue(isinstance(coordinate_list, list)) - self.assertTrue(isinstance(coordinate_list[0], str)) - self.assertEqual(len(coordinate_list), 177) - self.assertNotEqual(len(coordinate_list), 0) From d87e937232defd57c988008ef62d4a559965a76a Mon Sep 17 00:00:00 2001 From: Mark Henderson Date: Wed, 21 Jun 2023 17:45:25 +0100 Subject: [PATCH 3/3] Tests updated --- aixm_geo/base.py | 26 ++++++++++++++++++++++---- aixm_geo/factory.py | 13 +++++++++++++ tests/test_factory.py | 20 -------------------- 3 files changed, 35 insertions(+), 24 deletions(-) delete mode 100644 tests/test_factory.py diff --git a/aixm_geo/base.py b/aixm_geo/base.py index 10a4b55..4fe4846 100644 --- a/aixm_geo/base.py +++ b/aixm_geo/base.py @@ -89,7 +89,7 @@ def get_crs(self): crs(str): A string of 'Anticlockwise' or 'Clockwise' depending upon the CRS applied and the start and end angles """ - crs = self._timeslice[-1].xpath(".//aixm:AirspaceGeometryComponent//*[@srsName]", namespaces=NAMESPACES)[0] + crs = self._timeslice[-1].xpath(".//*[@srsName]", namespaces=NAMESPACES)[0] split = crs.get("srsName").split(':')[-1] if split == '4326': @@ -117,6 +117,15 @@ def __init__(self, root): super().__init__(root) def get_coordinate_list(self, subroot): + """ + Parses the LXML etree._Element object and returns a list of coordinate strings. + Args: + subroot: LXML etree._Element object + + Returns: + unpacked_gml(list[str]): A list of coordinate strings + + """ unpacked_gml = None for location in subroot: try: @@ -182,7 +191,7 @@ def unpack_arc(self, location: etree.Element) -> str: Returns: coordinate_string(str): A coordinate string """ - centre = self.get_centre(location).strip() + centre = self.get_arc_centre_point(location).strip() start_angle = self.get_first_value('.//gml:startAngle', subtree=location) end_angle = self.get_first_value('.//gml:endAngle', subtree=location) # Pyproj uses metres, we will have to convert for distance @@ -206,7 +215,16 @@ def unpack_arc(self, location: etree.Element) -> str: return coordinate_string - def get_centre(self, location): + def get_arc_centre_point(self, location): + centre = self.get_first_value('.//gml:pos', subtree=location) + + # If none, check for gml:posList instead + if centre == 'Unknown': + centre = self.get_first_value('.//gml:posList', subtree=location) + + return centre + + def get_circle_centre_point(self, location): centre = self.get_first_value('.//gml:pos', subtree=location) # If none, check for gml:posList instead @@ -261,7 +279,7 @@ def unpack_circle(self, location: etree.Element) -> str: Returns: coordinate_string(str): A coordinate string """ - centre = self.get_centre(location) + centre = self.get_circle_centre_point(location) radius = self.get_first_value('.//gml:radius', subtree=location) radius_uom = self.get_first_value_attribute('.//gml:radius', subtree=location, attribute_string='uom') diff --git a/aixm_geo/factory.py b/aixm_geo/factory.py index 98d6d57..cc5493d 100644 --- a/aixm_geo/factory.py +++ b/aixm_geo/factory.py @@ -39,6 +39,11 @@ def errors(self, value): self._errors.append(value) def get_feature_details(self): + """ + Iterates through the root of the AIXM file and returns a generator of AIXMFeature objects + Returns: + + """ aixm_features = self._root.iterfind('.//message:hasMember', NAMESPACES) for feature in aixm_features: aixm_feature = self.produce(feature) @@ -48,6 +53,14 @@ def get_feature_details(self): pass def produce(self, subroot): + """ + Produces an individual AIXMFeature object from the subroot + Args: + subroot: + + Returns: + + """ feature_type = util.get_feature_type(subroot) try: aixm_feature = self._feature_classes[feature_type](subroot) diff --git a/tests/test_factory.py b/tests/test_factory.py deleted file mode 100644 index 00e32eb..0000000 --- a/tests/test_factory.py +++ /dev/null @@ -1,20 +0,0 @@ -from pathlib import Path -from unittest import TestCase - -from lxml import etree - -from aixm_geo.factory import AixmFeatureFactory - - -class TestAixmFeatureFactory(TestCase): - def setUp(self) -> None: - file_loc = Path().absolute().joinpath('..', Path('test_data/donlon.xml')) - self.test_factory = AixmFeatureFactory(file_loc) - - def test_root(self): - # Try invalid input, should throw an OS error - with self.assertRaises(OSError): - self.test_factory.root = 'Hello' - - # Test it is an ElementTree - self.assertTrue(isinstance(self.test_factory.root, etree._ElementTree))