11 2022 档案
cesium动态改变primitive,entity模型颜色
该文被密码保护。
webpack-dev-server
摘要:解决:npm install webpack-dev-server --save-dev https://blog.csdn.net/weixin_41184962/article/details/124099576
阅读全文
中间表
摘要:中间表是数据库中专门存放中间计算结果的数据表。中间表往往是为了前端查询统计更快或更方便而在数据库中建立的汇总表,这种表是由原始数据加工而成的中间结果,因此被称为中间表。 数据库中为什么会有这么多中间表?:https://www.zhihu.com/question/496756943 中间表的好处
阅读全文
ArcGIS简化线Smooth和Generalize的区别
该文被密码保护。
Cesium之ColorMaterialProperty颜色材质属性
摘要:Cesium自定义材质Material以及一些思考:https://blog.csdn.net/GhostPaints/article/details/124382690 Cesium中自定义材质(以飞线材质为例):https://blog.csdn.net/qq_33235279/article/
阅读全文
Cesium.Color
摘要:1. Cesium.Color.fromBytes 取值:0-255 2. Cesium.Color 取值:0-1 3. Cesium.Color.fromCssColorString 字符串:"rgba(255, 255, 255, 0.75)" 或者 "#ffffff" 参考:https://b
阅读全文
cesium切片底图正常出来但控制台一直报404错的方法
该文被密码保护。
vscode断点
摘要:选择run->start debugging 在lauch.json中设置监听调试的url地址 参考:https://www.cnblogs.com/ymwmn/p/15811295.html 感觉不如直接打印来的简单
阅读全文
arcgis线性参考法原理&Near Analysis(近邻分析)
该文被密码保护。
ECMWF是什么?
摘要:欧洲中期天气预报中心(European Centre for Medium-Range Weather Forecasts 简称 ECMWF)是一个包括34个国家支持的国际性组织,是当今全球独树一帜的国际性天气预报研究和业务机构。其前身为欧洲的一个科学与技术合作项目。1975年ECMWF正式成立,总
阅读全文
GeoServer和ArcGISServer的WMTS服务怎么发布和调用
该文被密码保护。
MVT.js:Cesium.defineProperties找不到
摘要:改为Object.defineProperties 参考:https://www.cnblogs.com/lilei2blog/p/8622438.html http://cesium.xin/wordpress/archives/cesium-dynamic-entity.html Object中
阅读全文
Cesium.CesiumVectorTile
摘要:目的:实现矢量贴地 简介:Cesium VectorTileImageryProvider支持小数据量的geojson、shape文件 矢量 动态切片,实现贴地 https://github.com/MikesWei/CesiumVectorTile 说在前面:很多时候我们是加载shp会转为geoj
阅读全文
stats.js一个JavaScript性能监视器:dom和domElement
摘要:getElementById(): //初始化性能插件 var stats; function initStats() { stats = new Stats(); console.log(stats); document.body.appendChild( stats.domElement );
阅读全文
关于浏览器:如何计算一个物体在WebGL中的渲染时间?看上去我计算错了
摘要:webgl渲染一帧所用时间测试 为了衡量渲染时间,我在开始和结束时都加上了时间戳。 我正在两台计算机上运行它:客户端和服务器 我不知道这种方法是否适合计算渲染时间。即使以某种方式,我仍然感觉到代码已被执行,在硬件级别,渲染的图像尚未显示在浏览器窗口中。如何了解为各个交互更新的各个框架。如果获得该状态
阅读全文
st_linemerge::将输入的MultiLineString连接成一个或多个LineString。
摘要:Description Returns a LineString or MultiLineString formed by joining together the line elements of a MultiLineString. Lines are joined at their endpo
阅读全文
glew
摘要:The OpenGL Extension Wrangler Library is a simple tool that helps C/C++ developers initialize extensions and write portable applications. GLEW current
阅读全文
无法解析的外部符号 __imp__glClear@4,该符号在函数 _main 中被引用 opengl01 c:\Users\
摘要:按照Cherno所讲的操作结果链接出错,好像是找不到gl。。难道glfw不自带opengl.dll的吗?然后搜到csdn上一位名为目竞的博主写的内容,成功解决: bing国内搜到,让我在program files(x86)里找OpenGL32.lib,设置上的。我心想这应该是正确答案了,结果发现系统
阅读全文
OpenTK第二章: Introduction to OpenTK(简介)
摘要:First of all, what is OpenTK? 首先,什么是OpenTK? Simply put, the Open Toolkit is a free project that allows you to use OpenGL, OpenGL|ES, OpenCL and OpenAL
阅读全文
opentk第1章 chapter1:Installation(安装)
摘要:[Prerequisites] OpenTK is a managed library that targets the .Net 2.0 framework. To use it, you will need either the .Net or Mono runtime, plus device
阅读全文
glfw和glut
摘要:由于在Windows平台下初始化OpenGL非常麻烦,不仅需要创建OpenGL上下文,而且更麻烦的是调用OpenGL的GPU驱动的函数(具体多麻烦查看我的博文)。所以推荐使用第三方已经写好的库GLFW,类似的库还有GLUT。 参考:https://blog.csdn.net/weixin_43666
阅读全文
geoserver数据表属性修改后无法加载(postgis)
该文被密码保护。
JavaScript 数组拼接
摘要:[].concat.apply([],...) 参考1:https://www.runoob.com/jsref/jsref-concat-array.html 参考2:类数组拼接(将json数组中的属性取出来拼接到一起形成一个新的数组)
阅读全文
NativeWindow.InputDriver已过时
摘要:NativeWindow 类 定义 命名空间:System.Windows.Forms 程序集:System.Windows.Forms.dll 提供窗口句柄和窗口过程的低级封装。 参考:https://learn.microsoft.com/zh-cn/dotnet/api/system.wind
阅读全文
opentk第0章 chapter0
摘要:Chapter 0: Learn OpenTK in 15' 第0章:在15年学习OpenTK So, you have downloaded the latest version of OpenTK - what now? 所以,现在你已经下载了最新版本的OpenTK - 接下来该怎么办? Thi
阅读全文
opentk简介
摘要:The Open Toolkit library is a fast, low-level C# wrapper for OpenGL, OpenAL & OpenCL. It also includes windowing, mouse, keyboard and joystick input a
阅读全文
什么是体元?什么是体素?Marching Cubes算法理解
该文被密码保护。
Cesium提交记录
摘要:提交记录1 每次release所做的修改记录 最早2012年5月份的第一个版本 参考:https://github.com/CesiumGS/cesium
阅读全文
OpenGlobe
摘要:Note: OpenGlobe is great for learning along with our book, 3D Engine Design for Virtual Globes. But for a production quality, open source, virtual glo
阅读全文
jts:为什么multipolygon有四个中括号组成?
该文被密码保护。
jquery中美元符号$是什么?下划线又代表什么?
摘要:用途:一般用(function() {}),什么时候执行? https://blog.csdn.net/u011033906/artic
阅读全文
nodejs读取文件
摘要:读取普通文件:https://blog.csdn.net/bnzjxbsjjdnnxj/article/details/123831042 https://wenku.baidu.com/view/61cabadbfa0f76c66137ee06eff9aef8941e4816.html 读取jso
阅读全文
JavaScript中的Object.keys的详解和用法
摘要:目的:在实际开发中,我们有时需要知道对象的所有属性。 解决办法:ES5 引入了Object.keys方法,成员是参数对象自身的(不含继承的)所有可遍历( enumerable )属性的键名。 参考:https://blog.csdn.net/weixin_46663768/article/detai
阅读全文
从零开始学GeoServer源码系列博客
摘要:从零开始学GeoServer源码一(开篇):https://blog.csdn.net/xiangshangdemayi/article/details/122419885从零开始学GeoServer源码二(搭建开发环境):https://blog.csdn.net/xiangshangdemayi
阅读全文