본문 바로가기

Dev Story/gis

[GeoTools] Load the EPSG Properties File GeoTools에서 좌표를 지정하거나 좌표변환을 하기 위해서는 EPSG 코드를 사용하게 되는데 기본 라이브러리에 포함되지 않은 EPSG 코드가 있을경우 org.opengis.referencing.NoSuchAuthorityCodeException 가 발생한다. 아래와 같은 방법으로 사용자 정의 프로퍼티 파일을 읽어 추가시켜줄 수 있다. import java.io.File; import java.io.IOException; import java.net.URL; import org.geotools.factory.Hints; import org.geotools.metadata.iso.citation.Citations; import org.geotools.referencing.CRS; import org.geo.. 더보기
[postgis] PostGIS Shapefile Import/Export Manager 사용방법 (Import) PostGIS 2.0 Shapefile and DBF Loader Exporter 실행 한 화면입니다. 이전 버전과 비교했을 때 많이 심플해진 UI입니다. [View connection details...] 에서 접속정보를 입력 후 [OK]를 누르면 해당 서버에 접속이 됩니다. Log Window 에서 접속 성공/실패 여부를 확인할 수 있습니다. [Add File] 버튼으로 shape파일 또는 dbf파일을 선택합니다. 다중 선택도 가능합니다. Import List에 방금 선택한 파일의 목록이 보입니다. import방식에 대해서 Create, Append, Delete, Prepare를 Mode에서 선택이 가능합니다. Schema, Table, Geo_Column, SRID 등도 수정이 가능합니다. 불행히.. 더보기
위치, 공간정보 활용 데이터 서비스 통계지리정보서비스http://sgis.kostat.go.kr/ 서울특별시 열린 데이터 광장http://data.seoul.go.kr/ 서울시교통정보http://api.bus.go.kr/index.jsp 더보기
OGC Web Coverage Service (WCS) Web Coverage Service (WCS) 1) Overview The OGC Web Coverage Service (WCS) supports electronic retrieval of geospatial data as "coverages" – that is, digital geospatial information representing space/time-varying phe-nomena. This document specifies the WCS core; every implementation of a WCS shall adhere to this standard. This standard thus defines only basic requirements. Extensions to the core .. 더보기
OGC Web Feature Service (WFS) Web Feature Service (WFS) 1) Overview The WFS specification defines interfaces for describing data manipulation operations of geographic features. Data manipulation operations include the ability to:get or query features based on spatial and non-spatial constraintscreate a new feature instancedelete a feature instanceupdate a feature instanceThe basic Web Feature Service allows querying and retr.. 더보기
OGC Web Map Service (WMS) Web Map Service (WMS) 1) Overview The OpenGIS® Web Map Service Interface Standard (WMS) provides a simple HTTP interface for requesting geo-registered map images from one or more distributed geospatial databases. A WMS request defines the geographic layer(s) and area of interest to be processed. The response to the request is one or more geo-registered map images (returned as JPEG, PNG, etc) tha.. 더보기
Google Map WMS Library (java) Download the Jar file here: GoogleWMS.jar (Current Version: 1.1) Just run this file on the server from the command line using:java -jar GoogleWMS.jarThe service will start on port 8998. WMS Clients can now connect on:http://:8998?request=GetMap http://peterdamen.com/GoogleWMS/http://sourceforge.net/projects/googlewms/ 더보기
건폐율, 용적률 그리고 계산 방법 ■ 건폐율 - 대지 면적에 대한 건물의 바닥 면적의 비율. 건축 밀도를 나타내는 지표의 하나로, 시가지의 토지 이용 효과를 판정하고 토지에 대한 시설량·인구량의 적절성을 판정하거나 도시 계획의 관점에서 건축을 규제하는 데에 지표로 쓴다 - 바닥면적 / 시설부지면적 * 100 ■ 용적률 - 대지 면적에 대한 건물 연면적(延面積)의 비율. 건축물에 의한 토지의 이용도를 보여 주는 기준 - 연면적 / 시설부지면적* 100 ※ 비고 - 바닥면적 : 제일 넓은 바닥면적(지하제외) - 연면적 : 지상층합계 면적 - 시설부지면적 : 대지면적 더보기