A collection script for weather history data

Source: Internet
Author: User

Recently a project needs to use the past weather data, I found the weather after the site (www.tianqihoubao.com), and in the SS completed the relevant collection, and share with you.

The first analysis of this site provides two types of information:

1. Provincial and municipal relations

2. Weather Records

Corresponding to our create data structure:

[Serializable]
public class province
{public
    string provincename;
    public string Provinceurl;
}
    
[Serializable]
public class city
{public
    province province;
    public string CityName;
    public string Cityurl;
}
    
[Serializable]
public class Weatherdataset
{public City
    ;
    public string Title;
    public string Url;
    
[Serializable]
public class Weatherdata
{public
    weatherdataset DataSet;
    public string Date;
    public string Textweather;
    public string Temp;
    public string Wind;
}

>> website provides 34 municipalities/provinces/SAR weather information, complete list in: http://www.tianqihoubao.com/lishi/index.htm

The corresponding acquisition statements are:

var list = Default.selectnodes ("#content DT a");

>> Each province has a list of cities under its jurisdiction, such as: http://www.tianqihoubao.com/lishi/hebei.htm

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.