摘要: 服务器 主机名 master slave1 slave2 slave3 IP 192.168.1.40 192.168.1.41 192.168.1.42 192.168.1.43 离线包服务器: 192.168.1.50 1.启用root账号 1)sudo passwd root 2)sudo v 阅读全文
posted @ 2018-05-19 06:06 ParamousGIS 阅读(1072) 评论(0) 推荐(0) 编辑
摘要: void MapGenerator::getTiles(const std::vector<TileImage> &vec) { data_.clear(); int rowNum; int colNum; std::tie(colNum, rowNum) = tileTex_.textureSiz 阅读全文
posted @ 2024-03-26 09:56 ParamousGIS 阅读(6) 评论(0) 推荐(0) 编辑
摘要: VSCode + MSBuild 开发过程中出现如下警告:Please define _WIN32_WINNT or _WIN32_WINDOWS appropriately处理方法为:1. 在 c_cpp_properties.json 文件中加入 "_WIN32_WINNT=0x0A00" 的定 阅读全文
posted @ 2024-03-22 17:57 ParamousGIS 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 1.结构体sizeof问题Linux支持指定结构体比特字段,Windows不支持指定结构体比特字段struct index { long long start = 0; long long end = 0; unsigned long long ix = 0; short segment = 0; 阅读全文
posted @ 2024-03-20 11:48 ParamousGIS 阅读(1) 评论(0) 推荐(0) 编辑
摘要: // Approximates the brightness of a RGB value. float luminance( vec3 color ) { return dot(lum, color); } int size = width * height; std::vector<GLfloa 阅读全文
posted @ 2024-02-02 09:56 ParamousGIS 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1. 配置类import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.context.annotation.Bean; import org.sprin 阅读全文
posted @ 2024-01-24 10:55 ParamousGIS 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 1.配置类import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.context.annotation.Bean; import org.spring 阅读全文
posted @ 2024-01-24 10:44 ParamousGIS 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.51cto.com/u_16175468/8063959https://blog.51cto.com/u_16213690/7305835import org.antlr.v4.runtime.*; import org.antlr.v4.runtime.tree.* 阅读全文
posted @ 2024-01-23 11:00 ParamousGIS 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 1) jfireEL —— 高性能 EL 表达式解析框架jfireEL 是快速的 EL 表达式解析器,支持丰富的 EL 表达式,7 倍于 SpringEL 的超高性能。2) Aviator —— 轻量级高性能 Java 表达式引擎Aviator 是一个高性能、轻量级的 Java 语言实现的表达式求值 阅读全文
posted @ 2024-01-23 10:24 ParamousGIS 阅读(521) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2024-01-11 09:13 ParamousGIS 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/nudtcadet/article/details/1029084581.封装生成图层类/** * @fileOverview 天地图WMTS服务API * @author <a href=”https://blog.csdn.net/nudtcad 阅读全文
posted @ 2023-12-28 09:33 ParamousGIS 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 参考:https://lcx.cc/post/816/1. startup.bat@echo off REM change current directory D: cd D:\xxxxxx\nginx-1.24.0 REM set envi variable SET "PATH=%PATH%;D: 阅读全文
posted @ 2023-12-25 11:43 ParamousGIS 阅读(56) 评论(0) 推荐(0) 编辑
摘要: CREATE TABLE oauth2_registered_client ( id varchar(36) NOT NULL, client_id varchar(64) NOT NULL, client_id_issued_at timestamp NOT NULL, client_secret 阅读全文
posted @ 2023-12-15 11:50 ParamousGIS 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 替换UsernamePasswordAuthenticationFilter类1. pom.xml <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-config</art 阅读全文
posted @ 2023-12-05 09:12 ParamousGIS 阅读(30) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- ########################################################################### ## Python code generated with wxFormBuilder (versi 阅读全文
posted @ 2023-11-10 21:33 ParamousGIS 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-10-09 11:31 ParamousGIS 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1. 在VMWare中将CentOS7虚拟机导出ovf,在StarWindV2VConverter中将其转换为VHDX2. 在Hyper-V中新建虚拟机2.1 在选择代数时要注意一定要选择 “第一代”2.2 在选择选择虚拟硬盘时,选择已转换好的VHDX文件3.启动Hyper-V中新建的虚拟机3.1 阅读全文
posted @ 2023-09-07 17:20 ParamousGIS 阅读(624) 评论(0) 推荐(0) 编辑
摘要: 安装vmware-toolboxsudo /usr/bin/vmware-toolbox-cmd disk list # 查看磁盘挂载点,然后执行 sudo /usr/bin/vmware-toolbox-cmd disk shrink /参考:https://blog.csdn.net/u0145 阅读全文
posted @ 2023-09-07 10:16 ParamousGIS 阅读(20) 评论(0) 推荐(0) 编辑
摘要: MVMC(Microsoft Virtual Machine Converter)MSI for 3.0 (mvmc_setup.msi; 25 MB): https://download.microsoft.com/download/9/1/E/91E9F42C-3F1F-4AD9-92B7-8D 阅读全文
posted @ 2023-09-06 16:39 ParamousGIS 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 参考:https://csharpier.com/docs/Configuration1.安装插件CSharpier2.创建配置文件.csharpierrc.json{ "printWidth": 102400, "useTabs": false, "tabWidth": 2, "preproces 阅读全文
posted @ 2023-08-21 10:52 ParamousGIS 阅读(200) 评论(0) 推荐(0) 编辑
摘要: Python简单HTTP Serverfrom http.server import BaseHTTPRequestHandler, HTTPServer class MyHttpRequestHandler(BaseHTTPRequestHandler): def do_POST(self): p 阅读全文
posted @ 2023-07-20 12:02 ParamousGIS 阅读(198) 评论(0) 推荐(0) 编辑
摘要: D:\temp>git clone https://github.com/xxxxxx/yyyyyy.git Cloning into 'yyyyyy'... fatal: unable to access 'https://github.com/xxxxxx/yyyyyy.git/': SSL c 阅读全文
posted @ 2023-06-06 09:21 ParamousGIS 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-06-01 08:53 ParamousGIS 阅读(10) 评论(0) 推荐(0) 编辑
摘要: https://www.eorc.jaxa.jp/ALOS/en/alos-2/datause/a2_format_e.htmPALSAR-2_xx_Format_CEOS_E_g.pdf 阅读全文
posted @ 2023-05-18 17:42 ParamousGIS 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 一般Java通过javax.imageio.ImageIO操作jpeg与png没有问题,但是操作tiff时就会报错,此时只要引入如下的包即可,不需要修改代码即可兼容tiff <dependency> <groupId>com.twelvemonkeys.imageio</groupId> <arti 阅读全文
posted @ 2023-05-09 09:13 ParamousGIS 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1.创建源/etc/yum.repos.d/svn.repo[WandiscoSVN] name=Wandisco SVN Repo baseurl=http://opensource.wandisco.com/centos/$releasever/svn-1.14/RPMS/$basearch/ 阅读全文
posted @ 2023-04-24 09:39 ParamousGIS 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 本图来自网络 阅读全文
posted @ 2023-04-21 09:27 ParamousGIS 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 1.下载QtCipherSqlitePluginhttps://github.com/devbean/QtCipherSqlitePlugin2.利用QT Creator编译QtCipherSqlitePlugin应用QT Creator打开QtCipherSqlitePlugin.pro,然后利用 阅读全文
posted @ 2023-04-15 07:59 ParamousGIS 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 1. string 转换为 numberstd::stoi: string 型变量转换为 int 型变量 std::stol: string 型变量转换为 long 型变量 std::stoul:string 型变量转换为 unsigned long 型变量 std::stoll: string 型 阅读全文
posted @ 2023-04-14 15:27 ParamousGIS 阅读(113) 评论(0) 推荐(0) 编辑
摘要: std::forward : 通常是用于完美转发的,它会将输入的参数原封不动地传递到下一个函数中,这个“原封不动”指的是,如果输入的参数是左值,那么传递给下一个函数的参数的也是左值;如果输入的参数是右值,那么传递给下一个函数的参数的也是右值。std::remove_reference_t : 是一个 阅读全文
posted @ 2023-04-06 17:34 ParamousGIS 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 主要是解决找不到dll的问题1. VS中修改调试时PATH目录2. VS Code中修改调试时PATH目录 阅读全文
posted @ 2023-03-27 15:22 ParamousGIS 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 1.问题描述-- Downloading https://repo.msys2.org/msys/x86_64/libtool-2.4.6-9-x86_64.pkg.tar.xz;https://www2.futureware.at/~nickoe/msys2-mirror/msys/x86_64/ 阅读全文
posted @ 2023-03-23 17:16 ParamousGIS 阅读(250) 评论(0) 推荐(1) 编辑
摘要: #include <iomanip> #include <iostream> #include <string> #include <sstream> #include <locale> #include <codecvt> #include <limits> // #include <glm/gl 阅读全文
posted @ 2023-03-21 11:32 ParamousGIS 阅读(70) 评论(0) 推荐(0) 编辑
摘要: # set(PKG_CONFIG_EXECUTABLE "F:/vcpkg/packages/pkgconf_x64-windows/tools/pkgconf/pkgconf.exe") #set(PKG_CONFIG_USE_CMAKE_PREFIX_PATH ON) set(PKG_CONFI 阅读全文
posted @ 2023-03-07 11:35 ParamousGIS 阅读(775) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.bbsmax.com/A/ZOJPNNEadv/# 指定库头文件所在路径 FIND_PATH(calc_INCLUDE_DIR calc_interface.h ${CMAKE_CURRENT_SOURCE_DIR}/ext/calc/include) # 指定库文件所 阅读全文
posted @ 2023-01-31 11:41 ParamousGIS 阅读(199) 评论(0) 推荐(0) 编辑
摘要: GitHub使用1. PortableGit下载2. PortableGit安装3. 环境变量设置GIT_HOME D:\GreenSoftware\PortableGitPATH %GIT_HOME%\cmd4. 配置Git以管理员的身份运行git-bash.exe 4.1. 在本地创建ssh k 阅读全文
posted @ 2023-01-30 17:48 ParamousGIS 阅读(31) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> int main() { std::string jsonStr = R"delimiter( { "name": "James", "nickname": "good boy" } )delimiter"; std::co 阅读全文
posted @ 2023-01-26 10:19 ParamousGIS 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 参考:C++ REST SDK中的异步任务库PPLX #include <iostream> #include <future> #include <string> #include <sstream> #include <stdexcept> #include <functional> #incl 阅读全文
posted @ 2023-01-17 17:18 ParamousGIS 阅读(56) 评论(0) 推荐(0) 编辑
摘要: promise-cpp是一种 C++ promise/A+ 库#include <iostream> #include <future> #include <string> #include <sstream> #include <stdexcept> #include <functional> # 阅读全文
posted @ 2023-01-17 11:09 ParamousGIS 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 1. Duration Types2. Clocks3. Timepoint Types4. Calendrical Types5. Time Type hh_mm_ss6. Hours Utilities 阅读全文
posted @ 2023-01-17 09:10 ParamousGIS 阅读(27) 评论(0) 推荐(0) 编辑
摘要: /************************************************************************/ /* OGRFromOGCGeomType() */ /*********************************************** 阅读全文
posted @ 2023-01-03 11:08 ParamousGIS 阅读(274) 评论(0) 推荐(0) 编辑