下载资源后端资源详情
libspatialindex-1.9.3_debug.zip
大小:849.82KB
价格:10积分
下载量:0
评分:
5.0
上传者:AAALB
更新日期:2024-08-11

libspatialindex-1.9.3-debug.zip

资源文件列表(大概)

文件名
大小
QQJiaoLiu.jpg
79.1KB
QQZhaoPin.jpg
79.43KB
wx.jpg
39.44KB
bin/
-
bin/spatialindex-64.dll
2.12MB
bin/spatialindex_c-64.dll
639KB
include/
-
include/spatialindex/
-
include/spatialindex/LineSegment.h
4.1KB
include/spatialindex/MVRTree.h
2.79KB
include/spatialindex/MovingPoint.h
3.22KB
include/spatialindex/MovingRegion.h
6.72KB
include/spatialindex/Point.h
3KB
include/spatialindex/RTree.h
3.25KB
include/spatialindex/Region.h
3.89KB
include/spatialindex/SpatialIndex.h
8.84KB
include/spatialindex/TPRTree.h
2.77KB
include/spatialindex/TimePoint.h
3.91KB
include/spatialindex/TimeRegion.h
4.68KB
include/spatialindex/Version.h
1.94KB
include/spatialindex/capi/
-
include/spatialindex/capi/BoundsQuery.h
1.99KB
include/spatialindex/capi/CountVisitor.h
1.92KB
include/spatialindex/capi/CustomStorage.h
3.57KB
include/spatialindex/capi/DataStream.h
2.17KB
include/spatialindex/capi/Error.h
2.04KB
include/spatialindex/capi/IdVisitor.h
2.01KB
include/spatialindex/capi/Index.h
3.01KB
include/spatialindex/capi/LeafQuery.h
2.79KB
include/spatialindex/capi/ObjVisitor.h
2.04KB
include/spatialindex/capi/Utility.h
1.9KB
include/spatialindex/capi/sidx_api.h
14.3KB
include/spatialindex/capi/sidx_config.h
2.85KB
include/spatialindex/capi/sidx_export.h
1.9KB
include/spatialindex/capi/sidx_impl.h
1.9KB
include/spatialindex/tools/
-
include/spatialindex/tools/PointerPool.h
2.84KB
include/spatialindex/tools/PoolPointer.h
3.07KB
include/spatialindex/tools/Tools.h
13.26KB
include/spatialindex/tools/rand48.h
2.9KB
lib/
-
lib/spatialindex-64.lib
303.39KB
lib/spatialindex_c-64.lib
123.32KB

资源内容介绍

libspatialindex-1.9.3,笔者在Windows 10 系统下,使用Visual Studio 2017编译好的二进制开发包,Debug版本呢,方便大家下载使用
/****************************************************************************** * Project: libsidx - A C API wrapper around libspatialindex * Purpose: C API. * Author: Howard Butler, hobu.inc@gmail.com ****************************************************************************** * Copyright (c) 2009, Howard Butler * * All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE.******************************************************************************/#ifndef SIDX_API_H_INCLUDED#define SIDX_API_H_INCLUDED#define SIDX_C_API 1#include "sidx_config.h"IDX_C_STARTSIDX_DLL IndexH Index_Create(IndexPropertyH properties);SIDX_DLL IndexH Index_CreateWithStream( IndexPropertyH properties,int (*readNext)(int64_t *id, double **pMin, double **pMax, uint32_t *nDimension, const uint8_t **pData, size_t *nDataLength) );SIDX_DLL void Index_Destroy(IndexH index);SIDX_DLL IndexPropertyH Index_GetProperties(IndexH index);SIDX_DLL RTError Index_DeleteData(IndexH index,int64_t id,double* pdMin,double* pdMax,uint32_t nDimension);SIDX_C_DLL RTError Index_DeleteTPData( IndexH index, int64_t id, double* pdMin, double* pdMax, double* pdVMin, double* pdVMax, double tStart, double tEnd, uint32_t nDimension );SIDX_C_DLL RTError Index_DeleteMVRData( IndexH index,int64_t id,double* pdMin,double* pdMax,double tStart,double tEnd,uint32_t nDimension);SIDX_DLL RTError Index_InsertData(IndexH index,int64_t id,double* pdMin,double* pdMax,uint32_t nDimension,const uint8_t* pData,size_t nDataLength);SIDX_C_DLL RTError Index_InsertTPData( IndexH index, int64_t id, double* pdMin, double* pdMax, double* pdVMin, double* pdVMax, double tStart, double tEnd, uint32_t nDimension, const uint8_t* pData, size_t nDataLength);SIDX_C_DLL RTError Index_InsertMVRData( IndexH index,int64_t id,double* pdMin,double* pdMax,double tStart,double tEnd,uint32_t nDimension,const uint8_t* pData,size_t nDataLength);SIDX_DLL uint32_t Index_IsValid(IndexH index);SIDX_C_DLL RTError Index_TPIntersects_obj( IndexH index, double* pdMin, double* pdMax, double* pdVMin, double* pdVMax, double tStart, double tEnd, uint32_t nDimension, IndexItemH** items, uint64_t* nResults);SIDX_C_DLL RTError Index_MVRIntersects_obj( IndexH index,double* pdMin,double* pdMax,double tStart,double tEnd,uint32_t nDimension,IndexItemH** items,uint64_t* nResults);SIDX_DLL RTError Index_Intersects_obj(IndexH index,double* pdMin,double* pdMax,uint32_t nDimension,IndexItemH** items,uint64_t* nResults);SIDX_C_DLL RTError Index_Contains_obj( IndexH index, double* pdMin, double* pdMax, uint32_t nDimension, IndexItemH** items, uint64_t* nResults);SIDX_C_DLL RTError Index_TPIntersects_id( IndexH index, double* pdMin, double* pdMax, double* pdVMin, double* pdVMax, double tStart, double tEnd, uint32_t nDimension, int64_t** ids, uint64_t* nResults);SIDX_C_DLL RTError Index_MVRIntersects_id( IndexH index,double* pdMin,double* pdMax,double tStart,double tEnd,uint32_t nDimension,int64_t** ids,uint64_t* nResults);SIDX_DLL RTError Index_Intersects_id(IndexH index,double* pdMin,double* pdMax,uint32_t nDimension,int64_t** items,uint64_t* nResults);SIDX_C_DLL RTError Index_Contains_id(IndexH index, double *pdMin, double *pdMax, uint32_t nDimension, int64_t **ids, uint64_t *nResults);SIDX_C_DLL RTError Index_TPIntersects_count( IndexH index, double* pdMin, double* pdMax, double* pdVMin, double* pdVMax, double tStart, double tEnd, uint32_t nDimension, uint64_t* nResults);SIDX_C_DLL RTError Index_MVRIntersects_count( IndexH index,double* pdMin,double* pdMax,double tStart,double tEnd,uint32_t nDimension,uint64_t* nResults);SIDX_DLL RTError Index_Intersects_count(IndexH index,double* pdMin,double* pdMax,uint32_t nDimension,uint64_t* nResults);SIDX_C_DLL RTError Index_Contains_count( IndexH index, double* pdMin, double* pdMax, uint32_t nDimension, uint64_t* nResults);SIDX_C_DLL RTError Index_TPNearestNeighbors_obj(IndexH index, double* pdMin, double* pdMax, double* pdVMin, double* pdVMax, double tStart, double tEnd, uint32_t nDimension, IndexItemH** items, uint64_t* nResults);SIDX_C_DLL RTError Index_MVRNearestNeighbors_obj(IndexH index,double* pdMin,double* pdMax,double tStart,double tEnd,uint32_t nDimension,IndexItemH** items,uint64_t* nResults);SIDX_DLL RTError Index_NearestNeighbors_obj(IndexH index,double* pdMin,double* pdMax,uint32_t nDimension,IndexItemH** items,uint64_t* nResults);SIDX_C_DLL RTError Index_TPNearestNeighbors_id(IndexH index, double* pdMin, double* pdMax, double* pdVMin, double* pdVMax, double tStart, double tEnd, uint32_t nDimension, int6

用户评论 (0)

发表评论

captcha

相关资源

libspatialindex-1.9.3-release.zip

libspatialindex-1.9.3,笔者在Windows 10 系统下,使用Visual Studio 2017编译好的二进制开发包,Release版本,方便大家下载使用

557.17KB47积分

JAVA程序设计:报刊订阅管理系统课程设计

通过学习,了解了JAVA、MySQL数据库以及基于JAVA的GUI应用程序开发,并在本次课程设计中利用这些知识点,实现一个面向于企业的报刊订阅管理系统,能够通过计算机和数据库对本单位的报刊订阅进行一系列的管理,实现智能化管理,克服了传统人工管理方式的缺点以及弊端。 在报刊订阅管理系统中,要实现一个单位指定一个管理员,管理员拥有最高的权限,可以实现录入用户信息,录入管理员信息,报刊目录信息的增删改,订单信息,同时可按用户名、报刊名、部门对系统进行相应的查询信息以及统计信息等功能。界面设计友好,方便用户的操作。然后就是用户功能:可以订阅报刊,修改自己的账户信息,查看自己的订阅记录等等。

6.88MB41积分

HTML网页设计大作业-个人网页设计

个人网页网站(三页网站),这个网站可以帮助用户进行一些关于个人方面的自我介绍,比如说,这里面有一些自我信息的描述(班级、姓名等等)。另外这里还包括了对家乡的相关介绍(美食、风景),还有一些个人爱好、日常生活的描述。可以让人较为全面的了解自己,同时也使得自我的介绍更加的简洁生动,具体可观。

6.68MB22积分

一万多行C++小游戏 多结局 多剧情 不太正常的计算机 Dome

不太正常的计算机Dome,由于代码只好上传资源--永远免费--

659.54KB19积分