首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

libspatialindex-1.9.3-debug.zip

后端 849.82KB 10 需要积分: 1
立即下载

资源介绍:

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_START SIDX_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

资源文件列表:

libspatialindex-1.9.3_debug.zip 大约有43个文件
  1. QQJiaoLiu.jpg 79.1KB
  2. QQZhaoPin.jpg 79.43KB
  3. wx.jpg 39.44KB
  4. bin/
  5. bin/spatialindex-64.dll 2.12MB
  6. bin/spatialindex_c-64.dll 639KB
  7. include/
  8. include/spatialindex/
  9. include/spatialindex/LineSegment.h 4.1KB
  10. include/spatialindex/MVRTree.h 2.79KB
  11. include/spatialindex/MovingPoint.h 3.22KB
  12. include/spatialindex/MovingRegion.h 6.72KB
  13. include/spatialindex/Point.h 3KB
  14. include/spatialindex/RTree.h 3.25KB
  15. include/spatialindex/Region.h 3.89KB
  16. include/spatialindex/SpatialIndex.h 8.84KB
  17. include/spatialindex/TPRTree.h 2.77KB
  18. include/spatialindex/TimePoint.h 3.91KB
  19. include/spatialindex/TimeRegion.h 4.68KB
  20. include/spatialindex/Version.h 1.94KB
  21. include/spatialindex/capi/
  22. include/spatialindex/capi/BoundsQuery.h 1.99KB
  23. include/spatialindex/capi/CountVisitor.h 1.92KB
  24. include/spatialindex/capi/CustomStorage.h 3.57KB
  25. include/spatialindex/capi/DataStream.h 2.17KB
  26. include/spatialindex/capi/Error.h 2.04KB
  27. include/spatialindex/capi/IdVisitor.h 2.01KB
  28. include/spatialindex/capi/Index.h 3.01KB
  29. include/spatialindex/capi/LeafQuery.h 2.79KB
  30. include/spatialindex/capi/ObjVisitor.h 2.04KB
  31. include/spatialindex/capi/Utility.h 1.9KB
  32. include/spatialindex/capi/sidx_api.h 14.3KB
  33. include/spatialindex/capi/sidx_config.h 2.85KB
  34. include/spatialindex/capi/sidx_export.h 1.9KB
  35. include/spatialindex/capi/sidx_impl.h 1.9KB
  36. include/spatialindex/tools/
  37. include/spatialindex/tools/PointerPool.h 2.84KB
  38. include/spatialindex/tools/PoolPointer.h 3.07KB
  39. include/spatialindex/tools/Tools.h 13.26KB
  40. include/spatialindex/tools/rand48.h 2.9KB
  41. lib/
  42. lib/spatialindex-64.lib 303.39KB
  43. lib/spatialindex_c-64.lib 123.32KB
0评论
提交 加载更多评论
其他资源 libspatialindex-1.9.3-release.zip
libspatialindex-1.9.3,笔者在Windows 10 系统下,使用Visual Studio 2017编译好的二进制开发包,Release版本,方便大家下载使用
JAVA程序设计:报刊订阅管理系统课程设计
通过学习,了解了JAVA、MySQL数据库以及基于JAVA的GUI应用程序开发,并在本次课程设计中利用这些知识点,实现一个面向于企业的报刊订阅管理系统,能够通过计算机和数据库对本单位的报刊订阅进行一系列的管理,实现智能化管理,克服了传统人工管理方式的缺点以及弊端。 在报刊订阅管理系统中,要实现一个单位指定一个管理员,管理员拥有最高的权限,可以实现录入用户信息,录入管理员信息,报刊目录信息的增删改,订单信息,同时可按用户名、报刊名、部门对系统进行相应的查询信息以及统计信息等功能。界面设计友好,方便用户的操作。然后就是用户功能:可以订阅报刊,修改自己的账户信息,查看自己的订阅记录等等。
HTML网页设计大作业-个人网页设计
个人网页网站(三页网站),这个网站可以帮助用户进行一些关于个人方面的自我介绍,比如说,这里面有一些自我信息的描述(班级、姓名等等)。另外这里还包括了对家乡的相关介绍(美食、风景),还有一些个人爱好、日常生活的描述。可以让人较为全面的了解自己,同时也使得自我的介绍更加的简洁生动,具体可观。
HTML网页设计大作业-个人网页设计 HTML网页设计大作业-个人网页设计 HTML网页设计大作业-个人网页设计
一万多行C++小游戏 多结局 多剧情 不太正常的计算机 Dome
不太正常的计算机Dome,由于代码只好上传资源--永远免费--
geos-3.8.0-debug.zip
geos-3.8.0-debug 笔者在Windows 10系统下,使用 Visual Studio 2017编译好的二进制开发包,Debug版本,方便大家下载使用
geos-3.8.0-release.zip
geos-3.8.0-release 笔者在Windows 10系统下,使用 Visual Studio 2017编译好的二进制开发包,Release版本,方便大家下载使用
libexpat-R-2-4-0-debug.zip
libexpat-2.4.0,笔者在 Windows 10下使用 Visual Studio 2017编译好的二进制开发包,Debug版本,方便大家下载使用
1_3_八一错题本.zip
1_3_八一错题本.zip