Data Access and Use

Data Quality Monitoring

 

Information on data quality monitoring is availiable from the EUMETSAT NWP SAF webpage on near-real time (NRT) quality monitoring.

(Note this functionality is currently not available on this website)

function isEmptyOrSpaces(str){ return str === null || str.match(/^ *$/) !== null; } $(document).ready(function() { $('#mysatdatatablewrap').html( '

' ); $.ajax({ dataType: "json", url: "http://www.wmo-sat.info/oscar/satellites.json?orbits=1,2,3,4,7,8&showcurrent=true&statusconstraints=6,8&programmeconstraints=1,2&format=json&callback=?", beforeSend: function(xhr) { xhr.setRequestHeader("Authorization", "Basic " + window.btoa("wmo" + ":" + "oscar13")); }, success: function(d) { $('#mysatdatatable').dataTable( { "data": $(d.data).filter( function (i,n) { return !(isEmptyOrSpaces(n.dataaccesslink) && isEmptyOrSpaces(n.dataaccess)) } ).map( function (i,satellite) { satellite.agencies += "
"+satellite.allagencies ; return satellite; } ), "autoWidth": false, "lengthMenu": [ 10, 25, 50, 100 , 250], "columns": [ { "data": "acronym" , "title" : "Satellite (Acronym)" ,"width": "75px" }, { "data": "agencies" , "title" : "Space Agencies", "width": "75px" }, { "data": "orbittype" , "title" : "Orbit" , "width": "100px"}, { "data": "dataaccess" , "title" : "Data access information" , "orderable" : false , "width": "200px"}, { "data": "dataaccesslink" , "title" : "Data access link" , "orderable" : false , "width": "250px"}, ], "order": [ [1, 'asc' ], [ 0, 'asc'] ] } ); } }); });