我的github
posts - 3226,  comments - 42,  views - 158万
09 2022 档案
GeoServer文件管理
该文被密码保护。
posted @ 2022-09-30 10:06 XiaoNiuFeiTian 阅读(57) 评论(0) 推荐(0) 编辑
SpringBoot中写前端代码JSP、HTML、thymeleaf、wicket
摘要:为什么spring boot不能很好的支持jsp?:https://www.zhihu.com/question/61385975 在springboot中使用jsp:https://blog.csdn.net/cflsup/article/details/123089542 >>freemaker 阅读全文
posted @ 2022-09-29 09:20 XiaoNiuFeiTian 阅读(408) 评论(0) 推荐(0) 编辑
postgis st_point报错st_point(geometry)不存在
该文被密码保护。
posted @ 2022-09-28 19:38 XiaoNiuFeiTian 阅读(165) 评论(0) 推荐(0) 编辑
SL 249-2012 中国河流代码河流编码(Code for China river)2012年编
摘要:1. 范围 本标准规定了全国流域面积大于500km2或长度大于30km的河流,以及大型、重要中型水库和水闸所在河流的代码。 注:本标准以国家测绘局1:25万水系图为基础数据,参照经水利部及各流域机构审定的1:5万水系图编制。 AFD16006 参考:https://www.docin.com/p-1 阅读全文
posted @ 2022-09-28 15:23 XiaoNiuFeiTian 阅读(760) 评论(0) 推荐(0) 编辑
图形学入门(闫令琪)
摘要:Lecture 01 : Overview of Computer Graphics Lecture 02 : Review of Linear Algebra Lecture 03 : Transformation Lecture 04 : Transformation Count. Lectur 阅读全文
posted @ 2022-09-27 19:04 XiaoNiuFeiTian 阅读(164) 评论(0) 推荐(0) 编辑
unity安装教程
摘要:参考:https://baijiahao.baidu.com/s?id=1739504876410897821&wfr=spider&for=pc 除了游戏以外,Unity还被广泛的用于建筑可视化、实时三维动画等类型互动内容的综合型创作活动。 加载地形。。切图 加载3dtiles >>快速入门: 第 阅读全文
posted @ 2022-09-27 11:33 XiaoNiuFeiTian 阅读(223) 评论(0) 推荐(0) 编辑
DEM降雨淹没分析
该文被密码保护。
posted @ 2022-09-22 10:45 XiaoNiuFeiTian 阅读(209) 评论(0) 推荐(0) 编辑
arcgis打断多边形
该文被密码保护。
posted @ 2022-09-21 11:13 XiaoNiuFeiTian 阅读(27) 评论(0) 推荐(0) 编辑
postgis: "public.geometry" 不存在
该文被密码保护。
posted @ 2022-09-16 11:58 XiaoNiuFeiTian 阅读(19) 评论(0) 推荐(0) 编辑
python list
摘要:Python有6个序列的内置类型,但最常见的是列表和元组。 参考:https://www.runoob.com/python/python-lists.html 实例: #!/usr/bin/python # -*- coding: UTF-8 -*- list = [] ## 空列表 list.a 阅读全文
posted @ 2022-09-14 11:23 XiaoNiuFeiTian 阅读(18) 评论(0) 推荐(0) 编辑
python对文件名排序
摘要:import numpy as np import os img_path='./img/' img_list=os.listdir(img_path) img_list.sort() img_list.sort(key = lambda x: int(x[:-4])) ##文件名按数字排序 img 阅读全文
posted @ 2022-09-14 11:14 XiaoNiuFeiTian 阅读(425) 评论(0) 推荐(0) 编辑
python遍历文件夹下的所有文件名
摘要:遍历文件夹下的文件名 参考:https://blog.csdn.net/qingjiu3/article/details/122986159 import os path='d:/test' try: path=unicode(path,'utf-8')#经过编码处理 except: pass#py 阅读全文
posted @ 2022-09-14 10:40 XiaoNiuFeiTian 阅读(547) 评论(0) 推荐(0) 编辑
arcpy调用Raster_To_Polygon函数
该文被密码保护。
posted @ 2022-09-13 23:44 XiaoNiuFeiTian 阅读(74) 评论(0) 推荐(0) 编辑
PG+POSTGIS地图空间点网格聚合算法
该文被密码保护。
posted @ 2022-09-13 11:41 XiaoNiuFeiTian 阅读(203) 评论(0) 推荐(0) 编辑
ENVI/IDL读取tif(遥感)影像&SRTM高程异常校正
该文被密码保护。
posted @ 2022-09-13 11:22 XiaoNiuFeiTian 阅读(139) 评论(0) 推荐(0) 编辑
java字符串中查找某个字符出现的位置
摘要:string 类的 indexof() 方法和lastIndexOf()方法 区别: indexOf()是从前往后找 lastIndexOf是从字符串末尾开始检索,检索到子字符,则返回子字符在字符串中的位置 阅读全文
posted @ 2022-09-09 14:44 XiaoNiuFeiTian 阅读(3887) 评论(0) 推荐(0) 编辑
PostGIS导入csv后怎么添加geom
该文被密码保护。
posted @ 2022-09-07 14:48 XiaoNiuFeiTian 阅读(61) 评论(0) 推荐(0) 编辑
arcgis 栅格拼接2
该文被密码保护。
posted @ 2022-09-07 11:44 XiaoNiuFeiTian 阅读(57) 评论(0) 推荐(0) 编辑
java List排序
摘要:2.1 新建 Comparator 比较器 List<Person> list = new ArrayList<Person>() {}; Collections.sort(list, new PersonComparator()); class PersonComparator implement 阅读全文
posted @ 2022-09-06 14:14 XiaoNiuFeiTian 阅读(23) 评论(0) 推荐(0) 编辑
Type argument cannot be of primitive type
摘要:创建泛型集合List的时候报错,提示为:Type argument cannot be of primitive type 原因:泛型类型参数不能是原始数据类型,而应该是对象。因为在编译时会把带泛型的转换成Object类型,而基本数据类型不属于Object,所以比如想放int类型,就需要使用它的封装 阅读全文
posted @ 2022-09-06 11:50 XiaoNiuFeiTian 阅读(47) 评论(0) 推荐(0) 编辑
requestbody参数不为空检校
摘要:@RequestBody入参字段判空校验,后端@Valid参数校验,内部类参数校验:https://blog.csdn.net/L9009121314/article/details/122296787 @NotEmpty,@NotNull和@NotBlank的区别:https://blog.csd 阅读全文
posted @ 2022-09-05 09:37 XiaoNiuFeiTian 阅读(935) 评论(0) 推荐(0) 编辑
SpringBoot多数据源配置
该文被密码保护。
posted @ 2022-09-02 15:37 XiaoNiuFeiTian 阅读(308) 评论(0) 推荐(0) 编辑
spring data连接postgresql实现CRUD
该文被密码保护。
posted @ 2022-09-02 15:06 XiaoNiuFeiTian 阅读(50) 评论(0) 推荐(0) 编辑
spring data jpa和hibernate的区别
该文被密码保护。
posted @ 2022-09-02 11:16 XiaoNiuFeiTian 阅读(374) 评论(0) 推荐(1) 编辑
hibernate和mybatis的区别&hibernate和mybatis可以同时使用吗?
该文被密码保护。
posted @ 2022-09-02 10:55 XiaoNiuFeiTian 阅读(203) 评论(0) 推荐(0) 编辑
SQL Server shape转点
该文被密码保护。
posted @ 2022-09-02 10:20 XiaoNiuFeiTian 阅读(25) 评论(0) 推荐(0) 编辑
AE IRasterCursor 获取栅格图层像素值
该文被密码保护。
posted @ 2022-09-01 14:12 XiaoNiuFeiTian 阅读(35) 评论(0) 推荐(0) 编辑

< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8

点击右上角即可分享
微信分享提示