기상청 날씨정보 XML

http://www.kma.go.kr/XML/weather/sfc_web_map.xml

기상청 날씨정보에 관한 질답 http://kldp.org/node/76834
[이 게시물은 관리자님에 의해 2011-10-31 17:12:10 PHP & HTML에서 이동 됨]
|

댓글 7개

해당지역 날씨를 인쿨루드해서 쓸려면 어캐 해요???? XML은 잘 몰라서요 ;;;
fsockopen이나 파일오픈해서 판단해주는수밖에 없죠;;
근데 저거 금방없어질 예감인데 ㅋㅋ;;
흠..날씨배너 복잡한 방식보다는 쉬운 방법도 있어요

날씨배너 색상별 지역별 75종 kweather 걸루 만들어 봤는데 구경오세요

kweather 은 회원가입도 해야하고 절차가 복잡하니 제 것 가져다 쓰세요

제것은 누르면 음악플레이어도 나옵니다.. 쩝..

http://blog.paran.com/necast/24428191
//저 링크로 날씨 정보 끌어 오는 소스입니다.

function make_weather(){

srand((double)microtime()*1000000);
$boundary = "---------------------".substr(md5(rand(0,32000)),0,10);
$header = "POST /XML/weather/sfc_web_map.xml HTTP/1.0\r\n";
$header .= "Host: kma.go.kr\r\n";
$header .= "Content-type: multipart/form-data, boundary=".$boundary."\r\n";

/*
// 본문 생성
foreach($sms AS $index => $value){
$data .="--$boundary\r\n";
$data .= "Content-Disposition: form-data; name=\"".$index."\"\r\n";
$data .= "\r\n".$value."\r\n";
$data .="--$boundary\r\n";
}
*/
$header .= "Content-length: " . strlen($data) . "\r\n\r\n";

$fp = fsockopen('kma.go.kr', 80);

if ($fp) {
fputs($fp, $header.$data);
$rsp = '';
while(!feof($fp)) {
$rsp .= fgets($fp,8192);
}
fclose($fp);
$msg = explode("\r\n\r\n",trim($rsp));
$rMsg = explode(",", $msg[1]);
}

$xmldoc = new DOMDocument();
$xmldoc->loadXML($msg[1]);

$local_dom_result = $xmldoc->getElementsByTagName('local');

$result = array();
foreach($local_dom_result as $subkey){
$ta = $subkey->getAttribute('ta');
$icon = $subkey->getAttribute('icon');
$name = iconv("UTF-8", "euckr",$subkey->nodeValue);
$result[$name]=array('icon'=>$icon, 'ta'=>$ta);
}

return $result;
}

// 결과 값은.
array(
array('속초'=>array('icon'=>'01', 'ta'=>'20.93'),
array('서울'=>array('icon'=>'02', 'ta'=>'24.93'),
);

형태 입니다.

디자이너가 어디서 날씨 스크롤 플래쉬소스를 떡하니 붙여 놔서 할수 없이 작업해야 했습니다.

icon을 넣는 이유는 아이콘도 기상청에서 제공하는 날씨 아이콘 숫자처럼 01.gif, 02.gif 로 있더군

요. 정확하게 매치되네요.

euc-kr 용이며, utf-8에서는 그냥 iconv 만 빼면 됩니다.

php.5.1 이상에서 작동하며, 이유는 simplexml 보다는 domdocument 가 나름 다루기 편해서입니다.
헉 제가 찾고있던 부분이에요
//저 링크로 날씨 정보 끌어 오는 소스입니다.

function make_weather(){

srand((double)microtime()*1000000);
$boundary = "---------------------".substr(md5(rand(0,32000)),0,10);
$header = "POST /XML/weather/sfc_web_map.xml HTTP/1.0\r\n";
$header .= "Host: kma.go.kr\r\n";
$header .= "Content-type: multipart/form-data, boundary=".$boundary."\r\n";

/*
// 본문 생성
foreach($sms AS $index => $value){
$data .="--$boundary\r\n";
$data .= "Content-Disposition: form-data; name=\"".$index."\"\r\n";
$data .= "\r\n".$value."\r\n";
$data .="--$boundary\r\n";
}
*/
$header .= "Content-length: " . strlen($data) . "\r\n\r\n";

$fp = fsockopen('kma.go.kr', 80);

if ($fp) {
fputs($fp, $header.$data);
$rsp = '';
while(!feof($fp)) {
$rsp .= fgets($fp,8192);
}
fclose($fp);
$msg = explode("\r\n\r\n",trim($rsp));
$rMsg = explode(",", $msg[1]);
}

$xmldoc = new DOMDocument();
$xmldoc->loadXML($msg[1]);

$local_dom_result = $xmldoc->getElementsByTagName('local');

$result = array();
foreach($local_dom_result as $subkey){
$ta = $subkey->getAttribute('ta');
$icon = $subkey->getAttribute('icon');
$name = iconv("UTF-8", "euckr",$subkey->nodeValue);
$result[$name]=array('icon'=>$icon, 'ta'=>$ta);
}

return $result;
}

// 결과 값은.
array(
array('속초'=>array('icon'=>'01', 'ta'=>'20.93'),
array('서울'=>array('icon'=>'02', 'ta'=>'24.93'),
);

형태 입니다.

디자이너가 어디서 날씨 스크롤 플래쉬소스를 떡하니 붙여 놔서 할수 없이 작업해야 했습니다.

icon을 넣는 이유는 아이콘도 기상청에서 제공하는 날씨 아이콘 숫자처럼 01.gif, 02.gif 로 있더군

요. 정확하게 매치되네요.

euc-kr 용이며, utf-8에서는 그냥 iconv 만 빼면 됩니다.

php.5.1 이상에서 작동하며, 이유는 simplexml 보다는 domdocument 가 나름 다루기 편해서입니다.


네발가락님 짱^^
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
17년 전 조회 1,921
17년 전 조회 2,052
18년 전 조회 3,185
18년 전 조회 2,334
18년 전 조회 1,986
18년 전 조회 2,333
18년 전 조회 2,064
18년 전 조회 3,592
18년 전 조회 1,760
18년 전 조회 1,877
18년 전 조회 1,577
18년 전 조회 2,429
18년 전 조회 3,358
18년 전 조회 2,503
18년 전 조회 1,944
18년 전 조회 3,208
18년 전 조회 4,689
18년 전 조회 1,971
18년 전 조회 3,505
18년 전 조회 1,799
18년 전 조회 3,711
18년 전 조회 6,088
18년 전 조회 1,641
18년 전 조회 2,395
18년 전 조회 2,018
18년 전 조회 1,752
18년 전 조회 2,647
18년 전 조회 2,860
18년 전 조회 1,811
18년 전 조회 2,915
18년 전 조회 3,404
18년 전 조회 1,729
18년 전 조회 2,151
18년 전 조회 4,085
18년 전 조회 4,715
18년 전 조회 2,098
18년 전 조회 1,927
18년 전 조회 2,897
18년 전 조회 2,087
18년 전 조회 4,173
18년 전 조회 1,862
16년 전 조회 2,158
18년 전 조회 2,475
18년 전 조회 2,359
18년 전 조회 3,815
18년 전 조회 1,800
18년 전 조회 2,901
18년 전 조회 1,861
18년 전 조회 2,124
18년 전 조회 7,669
18년 전 조회 2,246
18년 전 조회 4,346
18년 전 조회 2,661
18년 전 조회 2,670
18년 전 조회 2,381
18년 전 조회 2,439
18년 전 조회 2,868
18년 전 조회 3,458
18년 전 조회 5,557
18년 전 조회 2,998
18년 전 조회 2,947
18년 전 조회 2,776
18년 전 조회 2,036
18년 전 조회 2,452
18년 전 조회 5,554
18년 전 조회 3,268
18년 전 조회 2,832
18년 전 조회 3,498
18년 전 조회 2,704
18년 전 조회 3,073
18년 전 조회 6,093
18년 전 조회 2,849
18년 전 조회 2,224
18년 전 조회 2,867
18년 전 조회 1,697
18년 전 조회 1만
18년 전 조회 4,686
18년 전 조회 3,511
18년 전 조회 2,035
18년 전 조회 3,824
18년 전 조회 2,508
18년 전 조회 3,954
18년 전 조회 5,382
18년 전 조회 4,043
18년 전 조회 2,904
18년 전 조회 3,181
18년 전 조회 2,674
18년 전 조회 3,002
18년 전 조회 2,122
18년 전 조회 3,671
18년 전 조회 2,357
18년 전 조회 2,493
18년 전 조회 2,301
18년 전 조회 3,276
18년 전 조회 2,216
18년 전 조회 2,892
18년 전 조회 4,076
18년 전 조회 4,795
18년 전 조회 2,592
18년 전 조회 3,081