본문 바로가기

개념공부/기타29

Shapefile <정밀 지도 데이터 검색하다가 알게 된 확장자> .shp 파일은 Shapefile로서 Geographic Information System software에 사용되는 Vector data formot을 취하는 파일이다. Vector data format은 point, line, polygon을 표현할 수 있고 그를 나타내는 속성(attribute)값을 가지고 있다. shapefile은 하나의 파일 포맷이 아니라 .shp, .shx, .dbf의 파일로 구성된다. 아래는 국토교통부에서 제공하는 정밀지도 벡터 데이터를 다운로드 받은 것인데, .dbf, .shp, .shx 파일로 구성되어 있음을 알 수 있다. 3개의 파일 중 .shp와 .shx는 공간 데이터를 나타내고, dbf는 속성 정보를 가지고 있다. dbf는 엑셀 프로그램으로 열어서 볼 수 있다. 2022. 6. 20.
자율주행 시뮬레이터 <SUMO> 자율주행, V2X, 교통 상황 등을 시뮬레이션할 수 있는 오픈소스 시뮬레이터 Windows, Linux, MacOS 지원 https://www.eclipse.org/sumo/ Eclipse SUMO - Simulation of Urban MObility Open source, microscopic and continuous multi-modal traffic simulation package www.eclipse.org 2022. 5. 24.
Gaussian Process 공부 중 https://www.youtube.com/watch?v=TuwSgXGReks 2022. 5. 1.
CUDA 예제 프로그램 작성 및 실행 CUDA 예제 프로그램 작성 및 실행을 통한 CUDA 테스트https://jhui.github.io/2017/03/06/CUDA/ “CUDA Tutorial”Sample code in adding 2 numbers with a GPU Terminology: Host (a CPU and host memory), device (a GPU and device memory). This sample code adds 2 numbers together with a GPU: Define a kernel (a function to run on a GPU). Allocate & initialize the host data.jhui.github.io위 github 페이지를 작성해서 덧셈 연산을 GPU로 수행하도록 CUDA.. 2022. 4. 28.
CUDA Tool kit 설치 CUDA 설치 및 사용 튜토리얼은 인터넷에 검색하는것 보다, NVIDIA 공식 문서를 보는것이 가장 효율적인것 같다. https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/index.html New | Project... NVIDIA-> CUDA->, then select a template for your CUDA Toolkit version. For examp" data-og-host="docs.nvidia.com" data-og-source-url="https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/index.html" data-og-url="http.. 2022. 4. 28.
C++ 코드를 웹 서비스/어플리 케이션으로 만드는 방법 참조 1 : https://nlesc-jcer.github.io/cpp2wasm/#/?id=javascript-web-service Guide to make C++ available as a web application nlesc-jcer.github.io 참조 2 : https://www.tutorialspoint.com/cplusplus/cpp_web_programming.htm C++ Web Programming C++ Web Programming What is CGI? The Common Gateway Interface, or CGI, is a set of standards that define how information is exchanged between the web server and a.. 2022. 4. 27.