기상청 날씨정보 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 가 나름 다루기 편해서입니다.


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

프로그램

+
제목 글쓴이 날짜 조회
18년 전 조회 2,055
18년 전 조회 2,177
18년 전 조회 3,317
18년 전 조회 2,474
18년 전 조회 2,118
18년 전 조회 2,477
18년 전 조회 2,203
18년 전 조회 3,730
18년 전 조회 1,880
18년 전 조회 2,014
18년 전 조회 1,714
18년 전 조회 2,569
18년 전 조회 3,498
18년 전 조회 2,613
18년 전 조회 2,087
18년 전 조회 3,348
18년 전 조회 4,829
18년 전 조회 2,108
18년 전 조회 3,647
18년 전 조회 1,921
18년 전 조회 3,848
18년 전 조회 6,219
18년 전 조회 1,785
18년 전 조회 2,527
18년 전 조회 2,156
18년 전 조회 1,905
18년 전 조회 2,777
18년 전 조회 2,989
18년 전 조회 1,947
18년 전 조회 3,046
18년 전 조회 3,520
18년 전 조회 1,868
18년 전 조회 2,293
18년 전 조회 4,218
18년 전 조회 4,841
18년 전 조회 2,228
18년 전 조회 2,076
18년 전 조회 3,042
18년 전 조회 2,216
18년 전 조회 4,291
18년 전 조회 2,002
16년 전 조회 2,289
18년 전 조회 2,597
18년 전 조회 2,486
18년 전 조회 3,944
18년 전 조회 1,934
18년 전 조회 3,038
18년 전 조회 1,985
18년 전 조회 2,266
18년 전 조회 7,804
18년 전 조회 2,378
18년 전 조회 4,457
18년 전 조회 2,789
18년 전 조회 2,787
18년 전 조회 2,508
18년 전 조회 2,547
18년 전 조회 2,986
18년 전 조회 3,573
18년 전 조회 5,690
18년 전 조회 3,121
18년 전 조회 3,066
18년 전 조회 2,910
18년 전 조회 2,158
18년 전 조회 2,580
18년 전 조회 5,675
18년 전 조회 3,408
18년 전 조회 2,961
18년 전 조회 3,612
18년 전 조회 2,847
18년 전 조회 3,211
18년 전 조회 6,234
18년 전 조회 2,978
18년 전 조회 2,353
18년 전 조회 2,993
18년 전 조회 1,820
18년 전 조회 1만
18년 전 조회 4,815
18년 전 조회 3,634
18년 전 조회 2,178
18년 전 조회 3,940
18년 전 조회 2,628
18년 전 조회 4,090
18년 전 조회 5,503
18년 전 조회 4,182
18년 전 조회 3,033
18년 전 조회 3,289
18년 전 조회 2,799
18년 전 조회 3,131
18년 전 조회 2,245
18년 전 조회 3,808
18년 전 조회 2,494
18년 전 조회 2,615
18년 전 조회 2,423
18년 전 조회 3,405
18년 전 조회 2,345
18년 전 조회 3,029
18년 전 조회 4,216
18년 전 조회 4,929
18년 전 조회 2,747
18년 전 조회 3,201