上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页
摘要: 把空间表转为geojson WITH cc_c AS ( SELECT name,name_2,name_3,st_transform(st_simplify(st_transform(geom,3857), 7827),4326) from countries_4326_s ), features 阅读全文
posted @ 2021-12-23 14:50 羊大葱 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 订阅专栏一开始碰到的时候一脸懵逼,后来仔细想了想发现了其中的问题,其实就是sudo python 和 python的区别了,提权后的python路径与普通执行的python路径是不一样的,也就是说,就算你pip install xxx,然后用sudo python xxx.py还是会出现问题. 解决 阅读全文
posted @ 2021-12-20 20:05 羊大葱 阅读(622) 评论(0) 推荐(0) 编辑
摘要: 这个效率比较高的写法 WITH componentTab AS ( SELECT * FROM pgr_connectedComponents ( 'SELECT id,source,target,cost,reverse_cost FROM yh_map_supplypipe' ) ) UPDAT 阅读全文
posted @ 2021-12-17 15:37 羊大葱 阅读(592) 评论(0) 推荐(0) 编辑
摘要: Centos bash: 运行 ./xxx.sh: 权限不够 前言 背景:执行.sh的可执行文件,出现错误:bash: ./xxx.sh: 权限不够 解决方法 [root@idomyway]# ./xxx.sh bash: ./xxx.sh: 权限不够 [root@idomyway]# chmod 阅读全文
posted @ 2021-12-14 10:06 羊大葱 阅读(43) 评论(0) 推荐(0) 编辑
摘要: CentOS下完全离线安装python3.6.8、pip3、numpy、flask本文是基于ubuntu系统环境,安装和使用python3.6.8、pip3、numpy、flask CentOS 7python 3.6.8http://rpm.pbone.net/ 下载各种安装包的地址 (1) 安装 阅读全文
posted @ 2021-12-13 18:39 羊大葱 阅读(3343) 评论(0) 推荐(0) 编辑
摘要: go1.13之后,出现上述提示的解决方法 go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.cn,direct 阅读全文
posted @ 2021-12-13 14:45 羊大葱 阅读(812) 评论(0) 推荐(0) 编辑
摘要: 一个完整实例 with mvtgeom as( select st_asmvtgeom( geom, lsy_bboxxuz4490(218453,43497,18), --st_tileenvelope(18,218453,43496), 4096, 256, false ) as geom, i 阅读全文
posted @ 2021-11-25 17:39 羊大葱 阅读(729) 评论(0) 推荐(0) 编辑
摘要: pyproj urllib PIL flask Python 3.7.10 阅读全文
posted @ 2021-11-22 14:58 羊大葱 阅读(26) 评论(0) 推荐(0) 编辑
摘要: location /iserver { proxy_pass http://192.168.244.166:80/iserver; add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Crede 阅读全文
posted @ 2021-11-11 16:47 羊大葱 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 在线网站的工具,只能生成精灵图,没有json配置文件。 mapbox精灵图工具 mapbox开源了一个精灵图制作工具 spritezero,这个工具可以生成精灵图和对应的json文件。spritezero 的输入文件是svg文件,输出文件是指定比例的精灵图和对应的json文件。 我自己在安装 spr 阅读全文
posted @ 2021-10-29 11:58 羊大葱 阅读(725) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页