joi, 2 ianuarie 2014

How to Use the Information Inside Google's Ved Parameter

How to Use the Information Inside Google's Ved Parameter


How to Use the Information Inside Google's Ved Parameter

Posted: 01 Jan 2014 03:29 PM PST

Posted by deedpolloffice

It's been two years now since Google announced that they'd be gradually withholding the search terms from referer headers, as secure (SSL) search was rolled out. This has meant that the keyword report in Analytics shows (not provided) for most visitors.

In our own Analytics reports, (not provided) keywords now make up 82% of all organic visitors.

For paid traffic (coming through AdWords) the keywords are still "provided," which is very helpful, but also very expensive.

And of course there's also the Search Queries report in Webmaster Tools. This is also useful, but it's still a disappointing loss of information compared to what we used to have (even if I personally think Google was probably right to go ahead with it).

The ved parameter to the rescue

Back in May, Tim Resnik wrote about patterns he'd spotted in Google's ved parameter. It turns out that ved codes contain rather useful information about the link that was clicked on in the search engine results page. And as Tim pointed out, this goes some way in replacing what was lost (or rather, killed off) by Google taking away the keyword data.

Three months later, Benjamin Schulz worked out that ved codes are actually encoded in Protocol Buffers (or "Protobuf"). So, as they're not actually encrypted, it's not too hard to unencode them (plus we don't have to feel too guilty about it!).

Google has even released open-source compilers (in several different languages), which you can use to decode ved codes yourself. However these compilers are probably a bit over-the-top for what online marketers need (and probably a bit hard to put into practice).

We've written up a guide to decoding and interpreting ved codesâ€"as well as filling in some of the unanswered questions (such as what parameter 1 means). And we've also written a JavaScript function for decoding veds, whichâ€"as I want to explainâ€"is essential if you want to incorporate this information into your own Analytics reports.

This article is an actionable guide to getting information out of these ved codes, and incorporating it into Analytics.

What is a ved code anyway?

I don't want to repeat too much what has already been written about in other posts, but it's a good idea to summarise what veds are, what's inside them, and how you can access them.

When you click on any of the links in Google's search results, the URL (address) of the link contains a "ved" parameter.

This "ved" code contains information about the link that you clicked on, and when a user comes to your website through Google's search results, the ved code is (usually) passed to you in the referer HTTP header.

What's inside a ved code?

A ved code contains up to five separate parameters, which each tell you something about the link that was clicked on:

Link index (parameter 1)

All the links on the SERP have a numerical index, which gets passed in the ved code.

It only gives you a very rough idea of where the link was in the page (without knowing more about what was on the page), so it's the least useful of the five parameters inside the ved.

However, it is rather useful when it's for a ved code coming from an adword, simply because there's no other information about the position.

Although the link index only gives a rough idea of the position of the adword, there are two concrete things you can take from it:

  • If it's about 45â€"65 or less (shopping results could go up to 85), then it means the adword was in the main column above the organic results
  • If it's about 170 or over, then it means the adword was in the right-hand column or at the bottom of the page

Link type (parameter 2)

This parameter is a number which corresponds to the type of link that was clicked on.

The most common value is 22, which corresponds to a normal (universal) search result.
Other common values (and their meanings) are:

Type of link Value
normal (universal) search result 22
sitelink 2060
one-line sitelink 338
image result (thumbnail) in universal search 245
news result 297
adword (i.e. sponsored search result) 1617

See the complete list, for other (less common) values.

We've actually found well over a hundred distinct values, so this is a small fraction of them! Most of them, though, are very unlikely to appear in referer URLs (bear in mind that these are Google's parameters; they weren't really meant for us).

You'll no doubt have noticed that there are lots of gaps in the values. I don't really know if this is because a lot have been retired, or if Google has left space for future link types (probably a bit of both, but more of the latter). For example, our reports show the link type 703, but we haven't worked out what it means yet. It seems like it's some sort of universal search result just for mobile devices. If you see 703 or other codes in your reports, and you have an idea what they meanâ€"write a comment below, or submit a pull request.

Start result position (parameter 7)

This parameter is the cumulative result position of the first result on the page. On page 2 it will be 10, on page 3 it will be 20, and so on.

It's better to think of this as the page number of results (after subtracting 1, and multiplying by 10)â€"because it's quite a long time ago now that there were always 10 results on every page. Anyhow, you'll need to interpret it in conjunction with parameter 6.

Result position (parameter 6)

This is very similar to the cd parameter, but there are a few important differences:

  • cd is counted from 1 (and upwards), whereas the ved result position is counted from 0.
  • On page 2 of the results, cd keeps on counting (i.e. 11, 12, 13…), but the ved result position is reset to 0.
  • Sometimes the cd parameter is not passed (e.g. for image thumbnails). In these cases, though, the ved result position does seem to get passed.

The ved result position is the more reliable of the two. If, for example, the cd parameter is 11â€"you wouldn't know if this is the 11th result on page 1, or the first result on page 2. With the ved result position, you can distinguish the two.

Sub-result position (parameter 5)

This parameter is like the result position (parameter 6), except it tells you the position in a list of sub-results, such as breadcrumbs, or one-page sitelinks.

How to decode ved codes and pull the information into Analytics

To import the ved into Analytics, you'll need to include some Javascript to decode it (and send it to the Analytics servers).

To do this, you can modify your Analytics JavaScript "snippet" as follows:

1. Include the ved-decode and base64 libraries

You need to include these libraries in your HTML, somewhere before your Analytics snippet.

The ved-decode library is needed to decode the ved and extract the information we want.
The base64 library is needed for Internet Explorer users, because they won't have a native Base64 decoder available in their browser.

Each of the two libraries is licensed under a permissive open-source licence (MIT / Apache v2.0)â€"which lets you use it in any kind of project.

  <!-- Include both these scripts or copy them into your main JavaScript file -->  <!--[if lt IE 10]>      <script type="text/javascript"          src="http://veddecode.opensource.dpo.org.uk/js/base64-1.0.min.js"></script>  <![endif]-->  <script type="text/javascript"      src="http://veddecode.opensource.dpo.org.uk/js/ved_analytics-1.0.min.js"></script>  

2. Send the ved data to Analytics

How you do this depends on whether you're using the old Analytics (ga.js) code, or the new Universal Analytics (analytics.js) code:

If you're using Analytics (ga.js)

Add this JavaScript code just before the call to _gaq.push(['_trackPageview'])â€"

      // The custom variable code needs to go *before* you record the pageview      // (i.e. the call to _trackPageview)      (function(w) {          var customVars = [              { slot: 1, name: 'Google link index',          v: 'linkIndex'         },              { slot: 2, name: 'Google link type',           v: 'linkType'          },              { slot: 3, name: 'Google result position',     v: 'resultPosition'    },              { slot: 4, name: 'Google sub-result position', v: 'subResultPosition' },              { slot: 5, name: 'Google page',                v: 'page'              }              ];          if (w._gaq && w.VedDecode && w.VedDecode.ved) {              for (var i = 0, val; i < customVars.length; ++i) {                  val = w.VedDecode[customVars[i].v];                  w._gaq.push([                      '_setCustomVar',                      customVars[i].slot,                      customVars[i].name,                      val ? val + '' : '(not set)',                      2 // session scope                      ]);              }          }      })(window);  

If you're using Universal Analytics (analytics.js)

For Universal Analytics you need to set up custom dimensions corresponding to the five parameters:

Custom dimension name Scope
Google link index Session
Google link type Session
Google result position Session
Google sub-result position Session
Google page Session

(These are suggested names, of courseâ€"you can call them whatever you like.)

Then add this JavaScript code just before the call to ga('send', 'pageview'):

      // The custom variable code needs to go *before* recording the pageview      (function(w) {          if (w.ga && w.VedDecode && w.VedDecode.ved) {              // Send pageview with custom dimension data              ga('set', {                  dimension1: getVedValue('linkIndex'),                  dimension2: getVedValue('linkType'),                  dimension3: getVedValue('resultPosition'),                  dimension4: getVedValue('subResultPosition'),                  dimension5: getVedValue('page')                  });          }          function getVedValue(key) {              var ret = w.VedDecode[key];              return ret ? ret + '' : '(not set)';          }      })(window);  

Make sure that the index generated for each dimension in your control panel corresponds to the dimension number in the JavaScript code.

For example, if the generated index for the Google link index dimension is 7, then you need to refer to it as dimension7 in the code.

Using the data

After a short while, the ved data should show up in your reports!

How you then use the data is up to you.

Clearly, though, it's going to be useful for optimizing different routes to your site, and looking at how different routes affect your conversion rates.

Personally, I think it's very interestingâ€"for AdWords customersâ€"to see how adword position (i.e. link index) affects conversion rates. It's very frustrating only having daily averages to work with, because you can't see (in the standard reports) how much your adword position varies during the day.

Please let us know what you do with the data in the comments below.

But what if no referer header gets passed?

This is important, because if there's no referer header, then there's no ved parameter.

The referer won't get passed in some cases:

If your site isn't secured by HTTPS

If your site uses HTTP, or it uses HTTP for some pages (in particular, any landing pages), then the referer header may not get passed. Sometimesâ€"even if a user is using secure (HTTPS) searchâ€"Google redirects them through a (non-secure) intermediate HTTP click-tracking page. When this happens, you'll get the referer (and the ved parameter).

However, if Google passes them through a secure (HTTPS) click-tracking page, then you won't get the referer (or the ved parameter) unless your site is also using HTTPS.

In conclusionâ€"if you want to be sure of getting the ved parameter for as many users as possibleâ€"use HTTPS for your site. (Of course this isn't the only reason to use HTTPS!)

If the user is on a mobile device

For mobile devices, Google has started to use hyperlink auditingâ€"which should have been called "click tracking", and is better known as the "ping" attributeâ€"instead of redirects through a click-tracking page. Hyperlink auditing isn't as reliable as a redirect, though, which is why:

  • Google only use it for mobile devices
  • all paid results (e.g. adwords) still go through traditional redirects

According to Google, the main motivation for using the ping attribute (only) on mobile devices, is to improve speedâ€"and I'm inclined to believe them. But it probably also helps that:

  • mobile users are probably less likely to turn hyperlink auditing off (or know how, or know what it is)
  • mobile devices run modern browsers, which support hyperlink auditing

Howeverâ€"you might askâ€"if mobile devices don't go through a redirect, and my site is using HTTPS, shouldn't I get the referer anyway?

Yes, that's right, you should get the referer!
But sadly, Google has specifically disabled it.

What Google do, if they use hyperlink auditing, is to set the meta referrer element to origin:

      <meta name="referrer" content="origin">  

This instructs the user's browser to include the document's origin in the referer header rather than the full URL of the document. So the referer will just state (something like) <a href="https://www.google.co.uk/">https://www.google.co.uk/</a>.

Before you think, "How evil!"â€"there's a good reason for this. If they didn't do this, then the search terms would also appear in the referer, and Google has committed to turning this off for privacy reasons.

So, mobile devices are another kettle of fish, and ved code analysis won't work most of the time. But for most sites, mobile devices will still be in the minority, and things change quickly anyway. (For example, if there was a new anti-privacy law requiring hyperlink auditing to be off by default, that would certainly be the death of it.)


Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don't have time to hunt down but want to read!

gamer4ever: "The Walking Dead Season 2 Episode 1: All That Remains - Bad/Rude/Wr..." and more videos

Seth's Blog : For startups and those about to start: a new course on Skillshare

 

For startups and those about to start: a new course on Skillshare

http://skl.sh/19WeEP0

To start off the year, the folks at Skillshare asked me to teach a course for them. You can find the details on the course at the link above. Reviewing the final footage, I'm excited at how well it turned out, and I'm hoping it will resonate with you.

In this course, I'm teaching specific tactics, and using the Skillshare platform to provide supplemental materials and a chance to interact with others if you choose.

Lately, it feels like I've recently had precisely the same discussion with a dozen different entrepreneurs. They've built (or are about to build) something they're proud of, and then, without warning, they hit a wall.

The problem, surprisingly, isn't their marketing. It's a miscalculation buried deep into the structure of their project. Again and again, the same issues keep coming up. I decided it would be worth creating a course to share my thoughts on how these seven different issues can be avoided (or even better, turned into advantages).

The course features seven lessons plus an intro about business models, together with exercises for each. You get about an hour of original video, along with ebooks, exercises and a chance to post your questions and your work.

If you use discount code BLOG (until January 10) on their site, you will save a few bucks.

I'm going to be actively answering questions online for the first round of students who take the course when it starts on January 10 (it's self-paced, so you can watch it when you want). Hope you find it worthwhile.

       

 

More Recent Articles

[You're getting this note because you subscribed to Seth Godin's blog.]

Don't want to get this email anymore? Click the link below to unsubscribe.




Your email subscriptions, powered by FeedBlitz, LLC, 9 Thoreau Way, Sudbury, MA 01776, USA. +1.978.776.9498

 

miercuri, 1 ianuarie 2014

Mish's Global Economic Trend Analysis

Mish's Global Economic Trend Analysis


America's First Marijuana Stores Open in Colorado; Record Opium Crop in Afghanistan; Six Beneficiaries of "War on Drugs"

Posted: 01 Jan 2014 09:52 PM PST

Colorado ushers in the new year as the first US state to allow retail cannabis sales.
Marijuana users celebrated as Colorado became the first US state to allow retail cannabis sales, putting it in the vanguard of efforts across the country to legalize the drug.

The western state famous for its ski resorts and breathtaking mountain vistas has issued 348 retail licenses -- including for small pot shops -- that can sell up to 28 grams of pot to people aged 21 or older, starting Wednesday.

Washington state on the Pacific Coast will follow Colorado several months from now, when it also allows stores to begin selling cannabis.

Iraq war veteran Sean Azzariti was the first person to legally purchase cannabis for recreational use in the United States.

State officials here anticipate that marijuana sales will generate some $67 million in annual tax revenue.

Colorado and Washington are creating a recreational market in which local authorities will oversee growing, distribution and marketing -- all of it legal -- for people to get high just for the fun of it.

The market is huge: from $1.4 billion in medical marijuana in 2013, it will grow by 64 percent to $2.34 billion in 2014 with recreational pot added in Colorado and Washington, according to ArcView Market Research, which tracks and publishes data on the cannabis industry.

Washington state is expected to open more than 300 pot shops in June.
Record Opium Crop in Afghanistan

In Afghanistan, despite US presence for 13 years, Record opium output boosts Afghan warlords' power base.
Afghanistan, long the world's main heroin supplier, has seen its total area of poppy seed plantations explode to 516,000 acres - a 36 percent increase from 2012, according to the report, released on Wednesday.

Last year, the war-torn Central Asian country accounted for 75 percent of the world's opium supplies; Jean-Luc Lemahieu, head of the UN Office on Drugs and Crime (UNODC) in Afghanistan, has said in the past that supplies may reach 90 percent of the global total this year.

The new data surpasses the previous record set in 2007, when 477,000 acres were cultivated, according to the UN drug watchdog. Total opium output is estimated at 5,500 tons, up 49 percent from 3,700 tons in 2012.

At the same time, efforts to eradicate poppy fields have waned, with the total area targeted down 24 percent from last year.

With profits from opium cultivation nearing $1 billion, or 4 percent of gross domestic product, insurgency groups like the Taliban will only benefit from the cash crop.

The US-led coalition has rejected any crop eradication operations by its soldiers for fear of bankrupting farmers and forcing them to join the insurgency.
Time to End War on Drugs

It's time to admit the war on drugs was a miserable failure. The move in Colorado and Washington is a welcome start.

Prices would collapse overnight all drugs were legal. And by taking out all of the profit, all of the drug addicts who steal to get their fix would no longer need to do so.

Moreover, there would be no pushers attempting to get people hooked for the sole purpose of gaining customers.

Finally, states could save massive amounts of money by freeing all the people sitting in prison for drug-related crimes. States would also get tax revenues whereas profits now go to smugglers.

Beneficiaries of War on Drugs

  1. Smugglers who benefit from high prices
  2. Cops on the take
  3. Those employed fighting the war on drugs
  4. Prison guards and unions who benefit from every person incarcerated
  5. Warlords in Afghanistan 
  6. Du Pont 

Background on Hemp Ban

Here is a section on "hemp and the environment" from my post on The Politics of Ethanol. It will explain point number 6 above on Du Pont.

Unfortunately, the link below no longer works. It was to an MIT article.

Inquiring minds are asking about Hemp and the Environment.
An acre of hemp produces four times as much paper as an acre of trees. Every pot-smoking hippy in the country knows that. The problem is, why doesn't anyone else? In this short article, I will attempt to educate you, the reader, of the many ways in which hemp can Save The Planet. No kidding.

Herbicides are also virtually unnecessary as the plants grow 6 to 16 feet tall in only 110 days. The complex root structure prevents erosion and decays quickly after harvest.

That's all well and good, but what do you do with the hemp? Well, as I mentioned above, it's great for making paper. That's most of the reason that industrial hemp is illegal in the U.S. See, in the mid-1930's, there were two industries that had just made breakthrough machines that would make paper productions much more cost-effective. One was the hemp industry, the other was DuPont. Coincidentally, the 1937 Marijuana Tax Act was passed, effectively making hemp illegal by charging transfers $1/ounce or, for unregistered dealers, $100/ounce, even for industrial grade hemp.

So, with hemp out of the way, DuPont was free to become the giant corporation that it is today, and to produce the great majority of the toxic sludge that contaminates our Northwestern and Southeastern rivers. Had hemp become our primary paper source, this pollution would have been vastly reduced, and here is why: Hemp means no deforestation, which results in less topsoil erosion, more oxygen, less carbon dioxide, less destruction of natural habitats, etc. Hemp paper is much easier to bleach, and does not require chlorine, which means no more thousands of tons of toxic sludge pouring into the water. Scientists in Sweden have developed a hemp-bleaching process that uses only natural enzymes and some pounding of the pulp.

Cotton, the other big evil, is grown on 3% of the world's arable land and uses 26% (wow!) of the world's pesticides and 7% of the world's fertilizer annually. It requires heavy irrigation, depleting the water supply even as it poisons it. Many developing countries grow cotton as a cash crop, trying desperately to pay off foreign debt. While the country's land and water is being destroyed, food crops are neglected, so the people go hungry.

Hemp can be used to make clothing that is, if treated properly, soft like cotton and far more durable, thus rendering cotton unnecessary. Adidas and Ralph Lauren already have hemp products, and Calvin Klein insists that hemp will hit the fashion industry full-force in the years to come.

While an acre of trees is about 60% cellulose, and acre of hemp is nearly 75%. How much hemp is necessary to meet current US energy needs? Somewhere between 10 million and 90 million acres, depending on how efficient the production is. Every year, the US government pays farmers (in cash or "kind") to *not* farm what they call the "soil bank", which happens to be about 90 million acres of farmland. The math is pretty simple.

Hemp seed oil is very similar to petroleum diesel fuel, and produces full engine power with reduced carbon monoxide and 75% less soot and particulates. Hemp stalk (different than the part that can make paper and textiles) can be converted into 500 gallons of methanol/acre.

It seems so simple, you must be saying. If this is true, why are we still using petroleum and paper and cotton? Well, there are corporations who sponsor politicians that have a reason to keep hemp down, like, the oil industry, etc.
"War on Drugs" or "War for Drugs"

Our policy is so stupid one has to wonder if it's a "war on drugs" or a "war for drugs" and against the environment, specifically  for the benefit of the above groups.

Mike "Mish" Shedlock
http://globaleconomicanalysis.blogspot.com

China's Bill for Cleaning Air Pollution Mounts; State TV Promotes Benefits of Smog

Posted: 01 Jan 2014 04:31 PM PST

As China enters 2014 reeling from one of the worst polluted winters in recent years, experts from two major research institutes have openly disagreed over what is the main culprit behind the capital city's dismal air pollution.

Please consider Cars or coal? Scientists split over main culprit of Beijing's air pollution
The Chinese capital has for many years suffered from serious air pollution. Primary sources of pollutants include exhaust emission from Beijing's more than five million motor vehicles, coal burning in neighbouring regions, dust storms from the north and local construction dust. A particularly severe smog engulfed the city for weeks in early 2013, elevating public awareness to unprecedented levels and prompting the government to roll out emergency measures.



A Chinese couple wears protective masks while going around the Tiananmen Square on December 7, 2013. Photo: EPA

The Chinese Academy of Sciences (CAS), the country's top research body, released a study on December 30 saying motor vehicle emissions were only responsible for less than 4 per cent of Beijing's PM2.5, the most health-threatening fine air pollutants. Instead, the study identified fossil fuel burning as the largest contributor of PM2.5, contrary to popular beliefs that the nearly 5.5 million cars clogging the capital's streets were chiefly to blame for its air pollution.

However, barely 24 hours later, Pan Tao, president of the Beijing Municipal Research Institute of Environmental Protection, openly challenged the findings, telling People's Daily online that motor vehicle emissions were "undoubtedly" the major source of Beijing's air pollution.

The CAS study analysed air samples in the capital on a seasonal basis, and found that pollutants generated from industrial production and coal-burning the source of Beijing's PM2.5 pollutants. According to the study, coal burning, industrial pollution and secondary inorganic aerosol, a catch-all term for inorganic particulates formed as a product of complex chemical reactions among pollutants, account respectively for 18 per cent, 25 per cent and 26 per cent of the air pollution at large.

Combined waste incineration and motor vehicle emissions are responsible for 4 per cent of the hazardous PM2.5 fine particles in Beijing's air, it says.

But the academy's conclusion appears self-contradictory as motor vehicle emissions are themselves a major contributor to secondary inorganic aerosol, argued Pan Tao from the Beijing institute. Moreover, Pan asserted, it was simply impossible that car exhaust could account for as little as 4 per cent of Beijing's main air pollutants.
Chinese Hospital Opens Smog Clinic

The Huffington Post reports Chinese Hospital Opens Smog Clinic To Combat Worsening Air Quality
A hospital in southwest China has opened a clinic for patients who are suffering symptoms related to smog, a doctor said Wednesday, highlighting how big a concern pollution has become for Chinese.

One public health expert suggested hospitals may follow suit to cash in on China's notorious smog.

The rising middle class in China has become increasingly fed up with air pollution that has accompanied the country's spectacular economic growth. The term PM2.5, which refers to tiny particles in the air that can penetrate deep into the lungs, has become a common part of the vocabulary.

On Wednesday afternoon, the U.S. Consulate in Chengdu, which measures air quality, gave it an index reading of 160 — or "unhealthy" — based on a PM2.5 reading of 73 micrograms per cubic meter. A safe level under WHO guidelines is 25 micrograms per cubic meter.

The Chinese reading, which also takes into account other pollutants and has a different classification system, came out as "lightly polluted."
Pollution in China's Heilongjiang Province



Local residents travel on a tricycle in the smog in Harbin, northeast China's Heilongjiang province, on October 21, 2013. (STR/AFP/Getty Images) | AFP via Getty Images

Worries in the Path of China's Air

It's not just China suffering from China's pollution. Please consider Worries in the Path of China's Air
When China's skies darken with pollution, it is not the only nation to suffer.

Soot, ozone-forming compounds and other pollutants from China can blow east to Korea and Japan. Ultimately, some even reach the west coast of the United States, scientists say.

Other nations generate pollution too, of course, so the wafting of bad air from China adds to local problems. China's emissions worry countries in the path of the plumes, but in a region where political tensions often run high, international solutions are largely elusive.

 Recent research in Japan suggests that China's contribution to average annual fine-particle pollution ranges from 40 percent in the Tokyo area to 60 percent in Kyushu, which is closer to China, according to Hiroshi Tanimoto, who heads the global atmospheric chemistry section at Japan's National Institute for Environmental Studies. On average, about 10 percent to 20 percent of Japan's springtime ozone comes from Chinese emissions, he said.

"Transport of air pollutants from China enhances the background level entering into Japan," Dr. Tanimoto said in an email. The impact to effect on Korea is even greater, he added.

China's main effect on pollution in the United States, however, involves ozone, scientists say.

China, which accounts for more than half of the world's coal consumption, is trying to reduce its pollution for the sake of its worried citizens. It has cut its emissions of sulfur dioxide, which can lead to acid rain and fine-particle creation; it is rapidly building clean- energy plants and setting some limits on coal; and it orders reduced car travel on days of bad smog. But its fast-growing economy makes the pollution problem hard to solve.

Whereas Europe had success in working to reduce cross-border air pollution in the 1970s and '80s, "there's really been no history of that regional cooperation in Asia," said Loren Cass, an associate professor of political science at the College of the Holy Cross in Massachusetts.
China to Invest in Air Pollution Treatment

XinhuaNet reports China to invest heavily in air pollution treatment
China needs to invest 1.75 trillion yuan (290 billion U.S. dollars) for its air pollution treatment plan from 2013 to 2017, an environment expert has estimated.

Wang Jinnan, deputy head of the Chinese Academy for Environmental Planning, said at the 4th Caixin Summit in Beijing that the investment would drive up GDP by nearly 2 trillion yuan and create over 2 million jobs.

According to Wang, 36.7 percent of the investment, or 640 billion yuan should go on cleaning up industry, followed by 490 billion yuan (28.2 percent) on cleaner energy sources. Cleaning up motor vehicles will absorb 210 billion yuan.

The State Council issued the Air Pollution Prevention and Control Action Plan in September to control PM2.5 (airborne particles of less than 2.5 microns diameter).

The action plan requires PM2.5 in populated regions and metropolises to be reduced significantly by 2017. The annual average of PM2.5 in Beijing would be expected to drop to 60 micrograms per cubic meter.
Broken Window Fallacy Yet Again

Did you catch the huge flaw in the above article?

Pollution cleanup does not contribute to GDP. At best, it shows prior GDP was overstated by the amount of cleanup necessary.  The GDP improvement thesis is just another version of the broken window fallacy.

Simply put, broken windows, hurricanes, tsunamis, and pollution do not add to GDP.

Benefits To China's Smog?!

Even more preposterous than the broken window fallacy is the notion there are Benefits of a Smoggy China.
Northeast China was struck by the most severe smog attack this past week, sending air quality index in more than 40 cities above the 300 hazardous level and forcing schools in Nanjing, Jiangsu Province to shut down. But instead of halting their outdoor modeling show, organizers of a jewelry exhibition in Shenzhen, Guangdong Province had all the models wear face masks on the runway.

an expert from China's Ministry of Environmental Protection just claimed that the smog is there to stay for ten to twenty years. Amid the gloomy outlook, however, there's some silver-lining—CCTV, China's national broadcaster, has identified five benefits of the smog: first, it has made people more united, because smog is a common enemy everywhere in China. Second, it has made people more equal, because both the rich and the poor have to inhale the same polluted air. Third, it has made the Chinese more clear-headed as to the price that the nation has to pay for becoming the "world's factory." Fourth, it has made the Chinese more humorous. Sarcasm abounds when it comes to the topic of smog, and "that sense of humor is the source of strength for defeating the smog." Fifth, it has made the Chinese more knowledgeable, as people become educated on concepts like PM 2.5, important historical events like the London Great Smog of 1952, and even English words like "haze" and "smog."

The Party's mouth piece, The Global Times, has suggested that smog may be also beneficiary to military defense.
Fashion Show Images











In all, xinhuanet.com displayed "56 smog is beautiful images"

Mike "Mish" Shedlock
http://globaleconomicanalysis.blogspot.com