
GIS
marsrprj
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
OGR读取Oracle Spatial数据
[code="c++"]#include "ogrsf_frmts.h"int main(){ OGRRegisterAll(); OGRDataSource *pogrDataSource = NULL; OGRLayer *pogrLayer = NULL; OGRFeature *pogrFeature = NULL; OGRGeometry *pog...2010-03-17 18:46:20 · 282 阅读 · 0 评论 -
ArcSDE C API读取数据
[code="java"]#include "stdafx.h"#include "windows.h"#include "sdetype.h"#include "sdeerno.h"#include "assert.h"#include #pragma comment(lib, "sde.lib")using namespa2010-03-17 20:13:51 · 262 阅读 · 0 评论 -
GeoTools读取Shape File
[code="java"]package com.test.geotools.shp;import java.io.File;import java.io.IOException;import java.net.MalformedURLException;import org.geotools.data.FeatureSource;import org.geotoo...2010-03-18 20:55:10 · 240 阅读 · 0 评论 -
CentOS上配置lighttpd/fastcgi环境(1)
1、 安装pcre 下载地址:http://cdnetworks-kr-1.dl.sourceforge.net/project/pcre/pcre/7.9/pcre-7.9.tar.bz2 # tar jxvf pcre-7.9.tar.bz2 #cd pcre-7.9 #./configure #make #make install 2、 安装bzip2 下载地...2010-03-20 22:52:14 · 197 阅读 · 0 评论 -
Postgres插入bytea数据
[code="java"]#######################################################################SQL: CREATE TABLE test(id serial NOT NULL,bt bytea);######################################################...2010-03-23 16:15:49 · 1710 阅读 · 0 评论 -
CentOS上配置lighttpd/fastcgi环境(2)
在lighttpd上开发fastcgi程序需要安装两个库一、安装开发库1) fcgi http://fastcgi.com/dist/fcgi-2.4.0.tar.gz fcgi用于处理fastCGI请求2) rudeCGI http://rudeserver.com/cgiparser/download/rudecgi-5.0.0.tar.bz2 ru...2010-03-25 20:55:43 · 273 阅读 · 0 评论