上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 89 下一页
摘要: 解决方案代码如下: const debounce = (fn, delay) => { let timer = null; return function () { let context = this; let args = arguments; clearTimeout(timer); time 阅读全文
posted @ 2023-11-28 17:12 栖木hy 阅读(287) 评论(0) 推荐(1)
摘要: import paramiko import os # SSH 连接信息 hostname = "your_remote_host" port = 22 username = "your_username" password = "your_password" # 远程目录路径 remote_dir 阅读全文
posted @ 2023-11-28 15:39 栖木hy 阅读(324) 评论(0) 推荐(0)
摘要: from geoserver.catalog import Catalog cat = Catalog("http://localhost:8080/geoserver/rest/", username="admin", password="geoserver") data_url = "D:/GI 阅读全文
posted @ 2023-11-28 00:08 栖木hy 阅读(800) 评论(0) 推荐(0)
摘要: /geoserver/bin/startup.sh修改这个启动文件的配置 # Guard against misconfigured JAVA_HOME if [ -n "${JAVA_HOME:-}" ] && [ ! -x "${JAVA_HOME}/bin/java" ]; then echo 阅读全文
posted @ 2023-11-27 15:09 栖木hy 阅读(505) 评论(0) 推荐(0)
摘要: 在Linux系统中,可以使用df命令来查询文件系统的磁盘空间使用情况。 以下是一些常用的df命令选项: df -h 这个命令会以人类可读的方式显示文件系统的磁盘空间使用情况,包括已用空间、可用空间、使用率等。 如果只想查看特定目录的磁盘空间使用情况,可以使用du命令。例如: du -h /path/ 阅读全文
posted @ 2023-11-23 17:35 栖木hy 阅读(528) 评论(0) 推荐(0)
摘要: 安装GDAL 下载:sqlite,proj,gdal 安装gdal前,要安装proj,安装proj时,报错,提示安装sqlite 安装sqlite 官网:https://www.sqlite.org/download.html 下载 wget -c -P /gdal https://www.sqli 阅读全文
posted @ 2023-11-20 15:52 栖木hy 阅读(593) 评论(0) 推荐(0)
摘要: 错误信息表明 vcpkg 在当前工作目录及其父目录中找不到 vcpkg.json 文件,因此无法确定要安装的库。 这可能是因为你执行 vcpkg install 命令的位置不在包含 vcpkg.json 文件的项目目录中。 以下是解决方法: 确保在包含 vcpkg.json 的项目目录中运行命令: 阅读全文
posted @ 2023-11-15 17:34 栖木hy 阅读(2013) 评论(0) 推荐(0)
摘要: 在 vcpkg 中,可以通过设置环境变量 VCPKG_DEFAULT_TRIPLET_OVERRIDE 来指定包的下载源。以下是一些常见的下载源和设置方式: 使用默认源(Microsoft): set VCPKG_DEFAULT_TRIPLET_OVERRIDE=x64-windows 使用清华大学 阅读全文
posted @ 2023-11-15 17:13 栖木hy 阅读(2467) 评论(0) 推荐(0)
摘要: Vcpkg 是一个开源的 C++ 库管理工具,可用于在 Windows 系统上轻松安装和管理第三方库。 以下是在 Windows 上使用 vcpkg 的基本步骤: 安装 vcpkg: 打开命令行终端,例如使用 PowerShell 或 Command Prompt。 克隆 vcpkg 存储库: gi 阅读全文
posted @ 2023-11-15 17:01 栖木hy 阅读(1011) 评论(0) 推荐(0)
摘要: 在Ubuntu中解压tar压缩包,可以使用以下命令: tar -zxvf 文件名.tar 在tar命令中,各个选项具有以下含义: "z":表示通过gzip工具进行压缩或解压缩。其它的压缩或解压缩方式还包括,比如使用"j"表示采用bzip2的方式。 "x":此选项代表执行解压缩操作。相对的,"c"选项 阅读全文
posted @ 2023-11-14 16:47 栖木hy 阅读(513) 评论(0) 推荐(0)
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 89 下一页