CINXE.COM
Dataset - NoiseDirectiveDF0
<!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 - NoiseDirectiveDF0</title> <script type="text/javascript" src="/modal_dialog.js"></script> <script type="text/javascript"> // <![CDATA[ function linkDataset(checkedoutCopyId){ var url="datasets.jsp?ctx=popup®Status=Released,Candidate,Recorded,Qualified®StatusFilter=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="2920"/> </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&obj_type=DST&obj_id=2920&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=DST2920" class="xsd"> Create an XML Schema for this dataset - version 1 </a> </li> <li> <a rel="nofollow" href="/GetXls?obj_type=dst&obj_id=2920&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&area=excel"></a> </li> <li> <a rel="nofollow" href="/codelists/datasets/2920/csv" class="csv">Get the comma-separated codelists of this dataset</a> </li> %> <li> <a rel="nofollow" href="/codelists/datasets/2920/xml" class="xml">Get the codelists of this dataset in XML format</a> </li> <li> <a rel="nofollow" href="/DocDownload?file=8eab303e78d3d97df38c7f3304114ef0"><img style="border:0" src="/images/zip.png" width="16" height="16" alt="icon"/>GIS templates</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&area=identifier"></a> </th> <td class="simple_attr_value"> <b>NoiseDirectiveDF0</b> <input type="hidden" name="idfier" value="NoiseDirectiveDF0"/> </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&area=short_name"></a> </th> <td class="short_name_value"> NoiseDirectiveDF0 <input type="hidden" name="ds_name" value="NoiseDirectiveDF0"/> </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&area=regstatus"></a> </th> <td class="simple_attr_value"> Released <span>07 November 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&area=refurl"></a> </th> <td class="simple_attr_value"> <small><a href="http://dd.eionet.europa.eu/datasets/latest/NoiseDirectiveDF0">http://dd.eionet.europa.eu/datasets/latest/NoiseDirectiveDF0</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&attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> Noise Directive Dataflow 0 <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"> Keywords <a class="helpButton" href="/help.jsp?attrid=5&attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> Noise <input type="hidden" name="oblig_5" 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"> Definition <a class="helpButton" href="/help.jsp?attrid=4&attrtype=SIMPLE"></a> </th> <!-- dynamic attribute value display --> <td class="simple_attr_value"> Dataflow zero is a report to be submitted at the top level of the hierarchy of reporting by the Member State, defining the various organisations who would be reporting within the Member State. DF0 would set out responsibilities, coverage and contact information for all referenced organisations. DF0 thus defines the reporting structure in which the Member State proposes to submit all subsequent reports. <input type="hidden" name="oblig_4" 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"> Version <a class="helpButton" href="/help.jsp?attrid=39&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="odd"> <th scope="row" class="scope-row simple_attr_title"> Owner (Accountable) <a class="helpButton" href="/help.jsp?attrid=61&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="even"> <th scope="row" class="scope-row simple_attr_title"> Responsible <a class="helpButton" href="/help.jsp?attrid=62&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="odd"> <th scope="row" class="scope-row simple_attr_title"> Reporting obligation <a class="helpButton" href="/help.jsp?attrid=60&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/7245" title="DF0_MRoad"> DF0_MRoad </a> </td> <td> DF0_MRoad </td> </tr> <tr class="even"> <td> <a href="/tables/7242" title="DF0_Aggl"> DF0_Aggl </a> </td> <td> DF0_Aggl </td> </tr> <tr class="odd"> <td> <a href="/tables/7243" title="DF0_MAir"> DF0_MAir </a> </td> <td> DF0_MAir </td> </tr> <tr class="even"> <td> <a href="/tables/7244" title="DF0_MRail"> DF0_MRail </a> </td> <td> DF0_MRail </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:ServiceDesk@eea.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>