Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- was버그
- mysql 튜닝
- table scan
- OpenAPI
- 시스템 파악
- 폭포수 모형
- 스크럼기법
- 프로토타입 모형
- 인증서만료에러
- was SQLRecoverableException
- 변수명 짓는법
- 디미터 법칙
- 클린코드
- plsql
- springboot
- 시스템 파악 정리
- 커맨드공부
- Law of Demeter
- SQLRecoverableException
- pl/sql
- CSS
- 에자일 모형
- Bandit Level 6
- 명령어공부
- avax.net.ssl.SSLHandshakeException:
- 나선형 모형
- Bandit Level 6 → Level 7
- vue
- java.sql.SQLRecoverableException
- Bandit Level 5
Archives
- Today
- Total
개발햄비
[node.js] open API OpenWeatherMap 날씨 얻기 본문
OpenWeatherMap 를 이용한 날씨정보를 가져오는 AP입니다.
주소: https://openweathermap.org/
사용방법:
1. 해당 사이트에 가입
2. API Key 취득
3. API를 불러오기
여기 나와있는 키를 복사해둡니다.
Current Weather Data를 선택합니다.
var apiURI ="http://api.openweathermap.org/data/2.5/weather?q= 원하는 지역 &appid= 발급받은 키 "
$.ajax({
url : apiURI,
method : 'GET',
success : (data)=> {
var temp = String((data.main.temp - 272)).substring(0,3); // 온도
var location = data.name; // 지역이름
$('#chatLog').append('지역 :' + location + ' 온도 :' + tempr + "도입니다. "+'\n');
// 아이콘 취득
var imgURL = "http://openweathermap.org/img/w/" + data.weather[0].icon + ".png";
// 아이콘 표시
$('#img').attr("src", imgURL);
}
});
<div>
<textarea id="chatLog" class="chat_log" readonly>
</textarea>
</div>
<img src="" id="img"></img>
이런 형식으로 지역과 온도, 현재 날씨를 그림으로 표현해서 나오게 됩니다.
-추가- API 주소에 &units=metric를 추가하면 자동으로 섭씨온도로 바꿀수 있습니다
'개발 > openApi' 카테고리의 다른 글
[openAPI]마스크 판매 정보 받아오기 (0) | 2020.03.20 |
---|---|
[openAPI] 환율 정보 API Exchange (0) | 2019.09.01 |
[openAPI] Cloud Natural Language API 감정분석 API (0) | 2019.05.23 |