기상청 지역별 날씨정보 API

Open API/그 외 |2022. 1. 27. 13:51
반응형

https://www.kma.go.kr/wid/queryDFS.jsp?gridx=60&gridy=127

gridx , gridy 는 leaf 에서 확인.

 



http://www.kma.go.kr/DFSROOT/POINT/DATA/top.json.txt

[
{"code":"11","value":"서울특별시"},
{"code":"26","value":"부산광역시"}
...
...
]


http://www.kma.go.kr/DFSROOT/POINT/DATA/mdl.11.json.txt  // 11 : 서울특별시
[
{"code":"11110","value":"종로구"},
{"code":"11140","value":"중구"}
...
...
]


http://www.kma.go.kr/DFSROOT/POINT/DATA/leaf.11110.json.txt // 11110 : 종로구
[
{"code":"1111051000","value":"청운동","x":"60","y":"127"},
{"code":"1111052000","value":"효자동","x":"60","y":"127"}
...
...
...
]

 

timeseries_XML.pdf
0.11MB

댓글()

크롬 자동완성 막기

Open API/Jquery|2021. 12. 20. 14:18
반응형

의도치 않은 input에 아이디가 자꾸 찍혀 있어서 찾아보다보니 고질병으로 

autocomplete 속성으로 하는 방법이 있었으나 크롬 버전이 바뀌면서 사용 불가능.

 

 

<input id="email" readonly type="email" onfocus="if (this.hasAttribute('readonly')) {
    this.removeAttribute('readonly');
    // fix for mobile safari to show virtual keyboard
    this.blur();    this.focus();  }" />

 

https://stackoverflow.com/questions/15738259/disabling-chrome-autofill

 

Disabling Chrome Autofill

I have been running into issues with the chrome autofill behavior on several forms. The fields in the form all have very common and accurate names, such as "email", "name", or "password", and the...

stackoverflow.com

 

댓글()

Throttle & Debounce 스로틀과 디바운스

Open API/그 외 |2021. 9. 6. 14:27
반응형

이런 부분도 한번쯤 고려를 해봐야할것 같음.

 

 

 

https://webclub.tistory.com/607

 

디바운스(Debounce)와 스로틀(Throttle ) 그리고 차이점

Throttle, Debounce & Difference 스로틀(Throttle) 과 디바운스(Debounce) 란 무엇일까? 이 두 가지 방법 모두 DOM 이벤트를 기반으로 실행하는 자바스크립트를 성능상의 이유로 JS의 양적인 측면, 즉 이벤트(ev.

webclub.tistory.com

 

 

 

https://zetawiki.com/wiki/Jquery-throttle-debounce

 

jquery-throttle-debounce - 제타위키

다음 문자열 포함...

zetawiki.com

 

댓글()