Android

갑자기 프로그램 실행 에러가 발생해서 해결책을 여러가지 찾아서 적용 해보다가 아래 방법으로 해결되어 다음을 위해 기록해둔다. https://intellij-support.jetbrains.com/hc/en-us/articles/360007568559 1. 관리자 권한으로 cmd 열기 2. 아래 명령어 입력 후 되는지 확인 netsh int ipv4 set dynamicport tcp start=49152 num=16383 netsh int ipv4 set dynamicport udp start=49152 num=16383 net stop winnat net start winnat
https://gist.github.com/fronteer-kr/14d7f779d52a21ac2f16 를 참고하여 php버전을 만듬. 백업용으로 이곳에 기록해둠. PHP 소스코드 class ConvGridGps { const RE = 6371.00877; // 지구 반경(km) const GRID = 5.0; // 격자 간격(km) const SLAT1 = 30.0; // 투영 위도1(degree) const SLAT2 = 60.0; // 투영 위도2(degree) const OLON = 126.0; // 기준점 경도(degree) const OLAT = 38.0; // 기준점 위도(degree) const XO = 43; // 기준점 X좌표(GRID) const YO = 136; // 기1준점 Y좌표(GR...