CINXE.COM

Dataset - NoiseDirectiveDF2

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/> <link rel="stylesheet" type="text/css" href="https://www.eionet.europa.eu/styles/eionet2007/print.css" media="print" /> <link rel="stylesheet" type="text/css" href="https://www.eionet.europa.eu/styles/eionet2007/handheld.css" media="handheld" /> <link rel="stylesheet" type="text/css" href="https://www.eionet.europa.eu/styles/eionet2007/screen.css" media="screen" /> <link rel="stylesheet" type="text/css" href="/css/eionet2007.css" media="screen"/> <link rel="stylesheet" type="text/css" href="/css/print.css" media="print" /> <link rel="stylesheet" type="text/css" href="/css/smoothness/jquery-ui-1.8.16.custom.css" /> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/> <script type="text/javascript" src="/pageops.js"></script> <script type="text/javascript" src="/mark_special_links.js"></script> <script type="text/javascript" src="/scripts/jquery-1.6.2.min.js"></script> <script type="text/javascript" src="/scripts/jquery-ui-1.8.16.custom.min.js"></script> <script type="text/javascript" src="/script.js"></script> <script type="text/javascript" src="/helpPopup.js"></script> <title>Dataset - NoiseDirectiveDF2</title> <script type="text/javascript" src="/modal_dialog.js"></script> <script type="text/javascript"> // <![CDATA[ function linkDataset(checkedoutCopyId){ var url="datasets.jsp?ctx=popup&regStatus=Released,Candidate,Recorded,Qualified&regStatusFilter=false&exclude="+checkedoutCopyId; wLink = window.open(''+'/'+url,"Search","height=800,width=1220,status=yes,toolbar=yes,scrollbars=yes,resizable=yes,menubar=no,location=no"); if (window.focus){ wLink.focus(); } } function pickDataset(id, shortName){ document.forms["form1"].elements["successor_id"].value = id; document.getElementById("successorName").href = "/datasets/"+id; document.getElementById("successorName").innerHTML = shortName; document.getElementById("successorName").onclick = "return true"; return true; } function statusSelectionChanged(changedForm) { if (document.getElementById("reg_status_select").value.toLowerCase() == 'superseded') { document.getElementById("successor").style.display = 'inline'; } else { document.getElementById("successor").style.display = 'none'; } form_changed(changedForm); } function warnDatasetStatus(datasetStatus, action) { if (datasetStatus.toLowerCase() == 'retired' || datasetStatus.toLowerCase() == 'superseded') { if (['a', 'e', 'i', 'o', 'u'].indexOf(datasetStatus.toLowerCase().charAt(0))!=-1) { return confirm('The '+action+' you are about to perform is based on an '+datasetStatus+' dataset. If you want to continue click OK. Otherwise click Cancel.'); } else { return confirm('The '+action+' you are about to perform is based on a '+datasetStatus+' dataset. If you want to continue click OK. Otherwise click Cancel.'); } } else { return true; } } function deleteDatasetReady() { document.forms["form1"].elements["mode"].value = "delete"; document.forms["form1"].submit(); } function submitForm(mode) { if (mode == "delete") { alert("You have no permission to delete this dataset!"); return; var b = confirm("You are about to delete a Released dataset! Are you sure you want to do this? Click OK, if yes. Otherwise click Cancel."); if (b==false) return; // now ask if the deletion should be complete (as opposed to settign the 'deleted' flag) openNoYes("/yesno_dialog.html", "Do you want the dataset to be deleted permanently (answering No will enable to restore it later)?", delDialogReturn,100, 400); return; } if (mode != "delete") { if (!checkObligations()) { alert("You have not specified one of the mandatory atttributes!"); return; } if (hasWhiteSpace("idfier")) { alert("Identifier cannot contain any white space!"); return; } if (!validForXMLTag(document.forms["form1"].elements["idfier"].value)) { alert("Identifier not valid for usage as an XML tag! " + "In the first character only underscore or latin characters are allowed! " + "In the rest of characters only underscore or hyphen or dot or 0-9 or latin characters are allowed!"); return; } //slctAllValues(); } if (mode=="editclose") { mode = "edit"; document.forms["form1"].elements["saveclose"].value = "true"; } document.forms["form1"].elements["mode"].value = mode; document.forms["form1"].submit(); } function delDialogReturn() { var v = dialogWin.returnValue; if (v == null || v=="" || v=="cancel") return; document.forms["form1"].elements["complete"].value = v; deleteDatasetReady(); } function checkObligations() { var o = document.forms["form1"].ds_name; if (o!=null && o.value.length == 0) return false; if ($("#form1 .vocabularyAttributeMandatoryValidationError").length) { return false; } var elems = document.forms["form1"].elements; for (var i=0; elems!=null && i<elems.length; i++) { var elem = elems[i]; var elemName = elem.name; var elemValue = elem.value; if (startsWith(elemName, "attr_")) { var o = document.forms["form1"].elements[i+1]; if (o == null) return false; if (!startsWith(o.name, "oblig_")) continue; if (o.value == "M" && (elemValue == null || elemValue.length == 0)) { return false; } } } return true; } function hasWhiteSpace(input_name) { var elems = document.forms["form1"].elements; if (elems == null) return false; for (var i=0; i<elems.length; i++) { var elem = elems[i]; if (elem.name == input_name) { var val = elem.value; if (val.indexOf(" ") != -1) return true; } } return false; } function startsWith(str, pattern) { var i = str.indexOf(pattern,0); if (i!=-1 && i == 0) return true; else return false; } function endsWith(str, pattern) { var i = str.indexOf(pattern, str.length-pattern.length); if (i!=-1) return true; else return false; } function checkIn() { submitCheckIn(); } function submitCheckIn() { var b = confirm("You are checking in with Released status! This will automatically release your changes into public view. " + "If you want to continue, click OK. Otherwise click Cancel."); if (b==false) return; document.forms["form1"].elements["check_in"].value = "true"; document.forms["form1"].elements["mode"].value = "edit"; document.forms["form1"].submit(); } function goTo(mode, id) { if (mode == "edit") { document.location.assign("/datasets/" + id + "/edit"); } else if (mode=="checkout") { document.location.assign("/datasets/" + id + "/checkout"); } else if (mode=="newversion") { document.location.assign("/datasets/" + id + "/newversion"); } else if (mode=="view") { document.location.assign("/datasets/" + id); } } function slctAllValues() { var elems = document.forms["form1"].elements; if (elems == null) return true; for (var j=0; j<elems.length; j++) { var elem = elems[j]; var elemName = elem.name; if (startsWith(elemName, "attr_mult_")) { var slct = document.forms["form1"].elements[elemName]; if (slct.options && slct.length) { if (slct.length==1 && slct.options[0].value=="" && slct.options[0].text=="") { slct.remove(0); slct.length = 0; } for (var i=0; i<slct.length; i++) { slct.options[i].selected = "true"; } } } } } function validForXMLTag(str) { // if empty string not allowed for XML tag if (str == null || str.length == 0) { return false; } // check the first character (only underscore or A-Z or a-z allowed) var ch = str.charCodeAt(0); if (!(ch==95 || (ch>=65 && ch<=90) || (ch>=97 && ch<=122))) { return false; } // check the rets of characters ((only underscore or hyphen or dot or 0-9 or A-Z or a-z allowed)) if (str.length==1) return true; for (var i=1; i<str.length; i++) { ch = str.charCodeAt(i); if (!(ch==95 || ch==45 || ch==46 || (ch>=48 && ch<=57) || (ch>=65 && ch<=90) || (ch>=97 && ch<=122))) { return false; } } return true; } function openStructure(url){ window.open(url,null,"height=600,width=800,status=yes,toolbar=yes,scrollbars=yes,resizable=yes,menubar=yes,location=yes"); } // ]]> </script> </head> <body> <div id="container"> <div id="toolribbon"> <div id="lefttools"> <a id="eealink" href="https://www.eea.europa.eu/">EEA</a> <a id="ewlink" href="https://ew.eea.europa.eu/">EnviroWindows</a> </div> <div id="righttools"> <a id="loginlink" href="https://sso.eionet.europa.eu/login?service=http%3A%2F%2Fdd.eionet.europa.eu%2Flogin" title="Login">Login</a> <a id="printlink" title="Print this page" href="javascript:this.print();"><span>Print</span></a> <a id="fullscreenlink" href="javascript:toggleFullScreenMode()" title="Switch to/from full screen mode"><span>Switch to/from full screen mode</span></a> <a id="eionetlink" title="Go to Eionet portal" href="https://www.eionet.europa.eu/"><span>Eionet portal</span></a> </div> </div> <!-- toolribbon --> <div id="pagehead"> <a href="/"><img src="/images/eea-print-logo.gif" alt="Logo" id="logo" /></a> <div id="networktitle">Eionet</div> <div id="sitetitle">Data Dictionary</div> <div id="sitetagline">This service is part of Reportnet</div> </div> <!-- pagehead --> <div id="menuribbon"> </div> <div class="breadcrumbtrail"> <div class="breadcrumbhead">You are here:</div> <div class="breadcrumbitem eionetaccronym"><a href="https://www.eionet.europa.eu">Eionet</a></div> <div class="breadcrumbitem"><a href="/">Data Dictionary</a></div> <div class="breadcrumbitemlast">Dataset</div> <div class="breadcrumbtail"> </div> </div> <div id="leftcolumn" class="localnav"> <ul> <li ><a href="/documentation">Help and documentation</a></li> <li class="current"><a href="/datasets.jsp">Datasets</a></li> <li ><a href="/searchtables">Tables</a></li> <li ><a href="/searchelements">Data elements</a></li> <li ><a href="/schemasets/browse/">Schemas</a></li> <li ><a href="/vocabularies">Vocabularies</a></li> <li ><a href="/services/list">Services</a></li> <li ><a href="/namespaces">Namespaces</a></li> </ul> </div> <div id="workarea"> <h1>View dataset definition</h1> <!-- quick links --> <div id="quickbar"><ul> <li class="quickLink"><a href="#tables">Tables</a></li> </ul></div> <form id="form1" method="post" action="/datasets" style="clear:both"> <div style="display:none"> <input type="hidden" name="ds_id" value="3026"/> </div> <!--=======================--> <!-- main table inside div --> <!--=======================--> <!-- pdfs & schema & docs --> <script type="text/javascript"> $(function() { applyExportOptionsToggle(); }); </script> <div id="createbox"> <ul> <li> <a rel="nofollow" href="/GetPrintout?format=PDF&amp;obj_type=DST&amp;obj_id=3026&amp;out_type=GDLN" class="pdf" onclick="return warnDatasetStatus('Released', 'download')"> Create technical specification for this dataset </a> </li> <li> <a rel="nofollow" href="/GetSchema?id=DST3026" class="xsd"> Create an XML Schema for this dataset - version 1 </a> </li> <li> <a rel="nofollow" href="/GetXls?obj_type=dst&amp;obj_id=3026&amp;new_schema=false" class="excel" onclick="return warnDatasetStatus('Released', 'download')"> Create an MS Excel template for this dataset - version 1 </a> <a class="helpButton" href="/help.jsp?screen=dataset&amp;area=excel"></a> </li> <li> <a rel="nofollow" href="/codelists/datasets/3026/csv" class="csv">Get the comma-separated codelists of this dataset</a> </li> %> <li> <a rel="nofollow" href="/codelists/datasets/3026/xml" class="xml">Get the codelists of this dataset in XML format</a> </li> </ul> </div> <!-- start dotted --> <div id="outerframe"> <!-- attributes --> <table class="datatable results"> <!-- static attributes --> <!-- Identifier --> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Identifier <a class="helpButton" href="/help.jsp?screen=dataset&amp;area=identifier"></a> </th> <td class="simple_attr_value"> <b>NoiseDirectiveDF2</b> <input type="hidden" name="idfier" value="NoiseDirectiveDF2"/> </td> </tr> <!-- short name --> <tr id="short_name_row" class="even"> <th class="scope-row short_name"> Short name <a class="helpButton" href="/help.jsp?screen=dataset&amp;area=short_name"></a> </th> <td class="short_name_value"> NoiseDirectiveDF2 <input type="hidden" name="ds_name" value="NoiseDirectiveDF2"/> </td> </tr> <!-- RegistrationStatus --> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Registration status <a class="helpButton" href="/help.jsp?screen=dataset&amp;area=regstatus"></a> </th> <td class="simple_attr_value"> Released <span>30 October 2018</span> </td> </tr> <!-- Reference URL --> <tr class="even"> <th scope="row" class="scope-row simple_attr_title"> Reference URL <a class="helpButton" href="/help.jsp?screen=dataset&amp;area=refurl"></a> </th> <td class="simple_attr_value"> <small><a href="http://dd.eionet.europa.eu/datasets/latest/NoiseDirectiveDF2">http://dd.eionet.europa.eu/datasets/latest/NoiseDirectiveDF2</a></small> </td> </tr> <!-- dynamic attributes --> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Name <a class="helpButton" href="/help.jsp?attrid=1&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> Noise Directive Dataflow 2 <input type="hidden" name="oblig_1" value="M"/> </td> <!-- end of dynamic attribute value display --> </tr> <!-- end of dynamic attribute row --> <tr class="even"> <th scope="row" class="scope-row simple_attr_title"> Definition <a class="helpButton" href="/help.jsp?attrid=4&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> All competent bodies for strategic noise maps, action plans and data collection <input type="hidden" name="oblig_4" value="O"/> </td> <!-- end of dynamic attribute value display --> </tr> <!-- end of dynamic attribute row --> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Version <a class="helpButton" href="/help.jsp?attrid=39&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> 1 <input type="hidden" name="oblig_39" value="O"/> </td> <!-- end of dynamic attribute value display --> </tr> <!-- end of dynamic attribute row --> <tr class="even"> <th scope="row" class="scope-row simple_attr_title"> Owner (Accountable) <a class="helpButton" href="/help.jsp?attrid=61&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> <input type="hidden" name="oblig_61" value="O"/> </td> <!-- end of dynamic attribute value display --> </tr> <!-- end of dynamic attribute row --> <tr class="odd"> <th scope="row" class="scope-row simple_attr_title"> Responsible <a class="helpButton" href="/help.jsp?attrid=62&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> <input type="hidden" name="oblig_62" value="M"/> </td> <!-- end of dynamic attribute value display --> </tr> <!-- end of dynamic attribute row --> <tr class="even"> <th scope="row" class="scope-row simple_attr_title"> Reporting obligation <a class="helpButton" href="/help.jsp?attrid=60&amp;attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> <input type="hidden" name="oblig_60" value="O"/> </td> <!-- end of dynamic attribute value display --> </tr> <!-- end of dynamic attribute row --> <!-- dataset number --> <!-- add, save, check-in, undo check-out buttons --> </table> <!-- end of attributes --> <!-- data model --> <!-- tables list --> <h2 id="tables"> Dataset tables </h2> <table class="datatable results"> <col style="width:50%"/> <col style="width:50%"/> <thead> <tr> <th>Full name</th> <th>Short name</th> </tr> </thead> <tbody> <tr class="odd"> <td> <a href="/tables/8094" title="DF2_Aggl_Map_AggRoad"> DF2_Aggl_Map_AggRoad </a> </td> <td> DF2_Aggl_Map_AggRoad </td> </tr> <tr class="even"> <td> <a href="/tables/8096" title="DF2_Aggl_Map_AggRail"> DF2_Aggl_Map_AggRail </a> </td> <td> DF2_Aggl_Map_AggRail </td> </tr> <tr class="odd"> <td> <a href="/tables/8099" title="DF2_Aggl_Map_AggAir"> DF2_Aggl_Map_AggAir </a> </td> <td> DF2_Aggl_Map_AggAir </td> </tr> <tr class="even"> <td> <a href="/tables/8104" title="DF2_Aggl_Map_AggInd"> DF2_Aggl_Map_AggInd </a> </td> <td> DF2_Aggl_Map_AggInd </td> </tr> <tr class="odd"> <td> <a href="/tables/8097" title="DF2_Aggl_Collect_AggRoad"> DF2_Aggl_Collect_AggRoad </a> </td> <td> DF2_Aggl_Collect_AggRoad </td> </tr> <tr class="even"> <td> <a href="/tables/8098" title="DF2_Aggl_Collect_AggRail"> DF2_Aggl_Collect_AggRail </a> </td> <td> DF2_Aggl_Collect_AggRail </td> </tr> <tr class="odd"> <td> <a href="/tables/8116" title="DF2_Aggl_Collect_AggAir"> DF2_Aggl_Collect_AggAir </a> </td> <td> DF2_Aggl_Collect_AggAir </td> </tr> <tr class="even"> <td> <a href="/tables/8106" title="DF2_Aggl_Collect_AggInd"> DF2_Aggl_Collect_AggInd </a> </td> <td> DF2_Aggl_Collect_AggInd </td> </tr> <tr class="odd"> <td> <a href="/tables/8109" title="DF2_Aggl_AP"> DF2_Aggl_AP </a> </td> <td> DF2_Aggl_AP </td> </tr> <tr class="even"> <td> <a href="/tables/8095" title="DF2_Aggl_AP_Collect"> DF2_Aggl_AP_Collect </a> </td> <td> DF2_Aggl_AP_Collect </td> </tr> <tr class="odd"> <td> <a href="/tables/8105" title="DF2_MAir_Map"> DF2_MAir_Map </a> </td> <td> DF2_MAir_Map </td> </tr> <tr class="even"> <td> <a href="/tables/8107" title="DF2_MAir_Map_Collect"> DF2_MAir_Map_Collect </a> </td> <td> DF2_MAir_Map_Collect </td> </tr> <tr class="odd"> <td> <a href="/tables/8108" title="DF2_MAir_AP"> DF2_MAir_AP </a> </td> <td> DF2_MAir_AP </td> </tr> <tr class="even"> <td> <a href="/tables/8102" title="DF2_MAir_AP_Collect"> DF2_MAir_AP_Collect </a> </td> <td> DF2_MAir_AP_Collect </td> </tr> <tr class="odd"> <td> <a href="/tables/8118" title="DF2_MRail_Map"> DF2_MRail_Map </a> </td> <td> DF2_MRail_Map </td> </tr> <tr class="even"> <td> <a href="/tables/8119" title="DF2_MRail_Map_Code"> DF2_MRail_Map_Code </a> </td> <td> DF2_MRail_Map_Code </td> </tr> <tr class="odd"> <td> <a href="/tables/8103" title="DF2_MRail_Map_Collect"> DF2_MRail_Map_Collect </a> </td> <td> DF2_MRail_Map_Collect </td> </tr> <tr class="even"> <td> <a href="/tables/8101" title="DF2_MRail_AP"> DF2_MRail_AP </a> </td> <td> DF2_MRail_AP </td> </tr> <tr class="odd"> <td> <a href="/tables/8117" title="DF2_MRail_AP_Code"> DF2_MRail_AP_Code </a> </td> <td> DF2_MRail_AP_Code </td> </tr> <tr class="even"> <td> <a href="/tables/8100" title="DF2_MRail_AP_Collect"> DF2_MRail_AP_Collect </a> </td> <td> DF2_MRail_AP_Collect </td> </tr> <tr class="odd"> <td> <a href="/tables/8115" title="DF2_MRoad_Map"> DF2_MRoad_Map </a> </td> <td> DF2_MRoad_Map </td> </tr> <tr class="even"> <td> <a href="/tables/8114" title="DF2_MRoad_Map_Code"> DF2_MRoad_Map_Code </a> </td> <td> DF2_MRoad_Map_Code </td> </tr> <tr class="odd"> <td> <a href="/tables/8111" title="DF2_MRoad_Map_Collect"> DF2_MRoad_Map_Collect </a> </td> <td> DF2_MRoad_Map_Collect </td> </tr> <tr class="even"> <td> <a href="/tables/8113" title="DF2_MRoad_AP"> DF2_MRoad_AP </a> </td> <td> DF2_MRoad_AP </td> </tr> <tr class="odd"> <td> <a href="/tables/8112" title="DF2_MRoad_AP_Code"> DF2_MRoad_AP_Code </a> </td> <td> DF2_MRoad_AP_Code </td> </tr> <tr class="even"> <td> <a href="/tables/8110" title="DF2_MRoad_AP_Collect"> DF2_MRoad_AP_Collect </a> </td> <td> DF2_MRoad_AP_Collect </td> </tr> </tbody> </table> </div> <!-- end dotted --> <!-- various hidden inputs --> <div style="display:none"> <input type="hidden" name="mode" value="view"/> <input type="hidden" name="check_in" value="false"/> <input type="hidden" name="changed" value="0"/> <input type="hidden" name="complete" value="false"/> <input type="hidden" name="saveclose" value="false"/> <input type="hidden" name="submitter_url" value="dataset.jsp"/> </div> </form> </div> <!-- workarea --> </div> <!-- container --> <div id="pagefoot"> <p> <a href="/documentation/doc1">Disclaimer</a> | Copyright: <a rel="license" href="https://creativecommons.org/licenses/by/2.5/dk/deed.en_GB" title="Creative Commons Attribution License"> <img alt="Creative Commons Attribution License" src="https://i.creativecommons.org/l/by/2.5/dk/80x15.png" /></a> | <a href="mailto:helpdesk@eionet.europa.eu?subject=Feedback from the Data Dictionary website">Feedback</a> </p> <p> <a href="http://www.eea.europa.eu">European Environment Agency</a> <br/>Kgs. Nytorv 6, DK-1050 Copenhagen K, Denmark </p> </div> <script type="text/javascript"> var contextPath = ""; </script> <script type="text/javascript" src="/popbox.js"></script> <script type="text/javascript"> // <![CDATA[ var popclickpop = { 'onclick' : function() { Pop(this,-50,'PopBoxImageLarge'); }, 'pbShowPopBar' : false, 'pbShowPopImage' : false, 'pbShowPopText' : false, 'pbShowRevertImage': true, 'pbShowPopCaption' : true }; PopRegisterClass('poponmouseclick', popclickpop); popBoxShowPopBar = false; // ]]> </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10