上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 87 下一页
摘要: 什么是unocss? unocss是一个即时的原子CSS引擎,它可以让你用简短的类名来控制元素的样式,而不需要写复杂的CSS代码。 Unocss: Guide 用Vite安装和配置步骤:UnoCSS Vite Plugin 互动性文档:https://unocss.dev/interactive/( 阅读全文
posted @ 2023-11-30 00:42 槑孒 阅读(2078) 评论(0) 推荐(0)
摘要: <script setup> import MapTimeLegend from "./components/MapTimeLegend" </script> [plugin:vite:import-analysis] Failed to resolve import "./components/M 阅读全文
posted @ 2023-11-29 01:10 槑孒 阅读(1222) 评论(0) 推荐(0)
摘要: import requests import json # 设置缓存时间 data = json.dumps({ "coverage": { "metadata": { "entry": [ { "@key": "cacheAgeMax", "$": "1800" }, { "@key": "cac 阅读全文
posted @ 2023-11-28 22:36 槑孒 阅读(323) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/Mr-Kahn/p/12850742.html https://www.osgeo.cn/geoserver-user-manual/rest/index.html#rest python示例 # xml方式 auth = ('admin', 'geo 阅读全文
posted @ 2023-11-28 17:26 槑孒 阅读(173) 评论(0) 推荐(0)
摘要: 解决方案代码如下: const debounce = (fn, delay) => { let timer = null; return function () { let context = this; let args = arguments; clearTimeout(timer); time 阅读全文
posted @ 2023-11-28 17:12 槑孒 阅读(242) 评论(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 槑孒 阅读(294) 评论(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 槑孒 阅读(754) 评论(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 槑孒 阅读(465) 评论(0) 推荐(0)
摘要: 在Linux系统中,可以使用df命令来查询文件系统的磁盘空间使用情况。 以下是一些常用的df命令选项: df -h 这个命令会以人类可读的方式显示文件系统的磁盘空间使用情况,包括已用空间、可用空间、使用率等。 如果只想查看特定目录的磁盘空间使用情况,可以使用du命令。例如: du -h /path/ 阅读全文
posted @ 2023-11-23 17:35 槑孒 阅读(487) 评论(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 槑孒 阅读(532) 评论(0) 推荐(0)
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 87 下一页