- 博客(246)
- 资源 (13)
- 收藏
- 关注
原创 FreeMarker和WordXml文档
1、WordXml标签含义<w:p> <!--表示一个段落--><w:val > <!--表示一个值--><w:r> <!--表示一个样式串,指明它包括的文本的显示样式,表示一个特定的文本格式--><w:t> <!--表示真正的文本内容--><w:rPr> <!--是<w:r>标签内的标签,对Run文本属性进行修饰--><w:pPr> <!--是&
2022-04-19 14:24:45 567
原创 Mayavi安装和使用
1、python 3.7和mac环境# 注意安装次序,先安装VTK mac没有8.2.0pip install vtk=8.1.2# 通过pip安装mayavipip install mayavi==4.7.3# 通过pip安装PyQt5,默认安装即可pip3 install PyQt5vtk 8.1.2 pypi_0 pypimayavi 4.7.3
2022-04-12 15:12:54 2659 1
原创 scp上传下载
1、服务器下载到本地#服务器端口1022,默认是22scp -P 1022 root@x.x.x.18:/mnt/data/test.docx /home/test1/2、本地上传到服务器scp -P 1022 /Users/jss/IdeaProjects/office-0.0.1-SNAPSHOT.jar root@x.x.x.18:/mnt/data/office/# 本地lib及lib下的所有jar包上传到服务器data文件夹下scp -r -P 1022 /Users/jss/adm
2022-03-25 14:40:28 439
原创 MySQL5.7升级8
服务器为CentOS7、MySQL5.7.27-log下载地址https://downloads.mysql.com/archives/community/(mysql-8.0.26-linux-glibc2.12-x86_64.tar.xz)# 安装包上传至原安装包目录下 我的是/usr/local/ cd /usr/local/# 解压安装包xz -d mysql-8.0.26-linux-glibc2.12-x86_64.tar.xztar -xvf mysql-8.0.26-linu
2021-12-02 13:53:03 1203
原创 炒菜-牛肉
1、土豆炖牛腩料酒、八角1个、花椒几粒、姜半个、葱一段、干辣椒、香叶、桂皮、郫县豆瓣酱胡椒粉准备工作:土豆2个切块(泡水备用)牛腩切块、备料(大葱、姜、红泡椒、八角、桂皮、香叶、青花椒)步骤1:牛腩冷水下锅+料酒10克,大火烧开,撇去浮沫,牛肉捞出备用步骤2:油烧开,炒备料,牛肉下锅,小火炒3分钟,加豆瓣酱,炒出红油,然后加啤酒1瓶步骤3:中小火烧40分钟后,+食用盐1克+少许白糖提鲜+少许胡椒粉+土豆块,大火烧开,转小火烧10分钟步骤4:收汁,加入少许明油,出锅。2、黑椒牛仔骨1、
2021-07-11 13:37:40 346
原创 idea中maven可打包,引用包是红色
解决办法idea2020 03Idea Terminal 中 输入 mvn idea:idea菜单栏File -> Invadiate Cache/Restart
2021-06-11 13:44:52 400 1
原创 Java解析nc
<dependency> <groupId>edu.ucar</groupId> <artifactId>netcdfAll</artifactId> <version>4.6.6</version> </dependency>1、读取NetcdfFile ncfile = NetcdfFile.open("test.nc");Variable variable = ncfile..
2021-04-09 16:42:13 1710 1
原创 visual studio 2015安装
visual studio 2015python在windows运行需要visual studio环境,visual studio 2015及更高最好安装参考:https://www.cnblogs.com/tmdsleep/p/5492732.html错误:visual studio 2015 安装包丢失或损坏 无法安装证书问题
2021-04-08 09:58:20 131
原创 micaps相关
1、micaps4转grid使用meteva库pip install metevaimport meteva.base as mebdef micaps4_to_grid(): filename = r"/test/pre-micaps-1h/1805/20201118_0500_qpf_ml.txt" # 114 127 21 29 grid = meb.grid([113.22, 124.28, 0.01], [33.62, 38.98, 0.01]) grd = meb
2021-04-02 16:47:18 1249
原创 IDEA注解
1、类注解File–>settings–>Editor–>File and Code Templates–>Files->Class/** * @author JSS * @Package: ${PACKAGE_NAME} * @ClassName: ${NAME} * @Description: * @date ${DATE} ${TIME} */2、方法注解File–>settings–>Editor–>Live Templates
2021-02-24 14:18:06 1254
原创 mac之PyTorch入门
官网 :https://pytorch.org/1、安装conda install pytorch torchvision torchaudio -c pytorch
2020-12-24 15:05:59 328
原创 mac相关
1、增加llvim ~/.bash_profilealias ll='ls -alF'source ~/.bash_profile2、Finder 中查看隐藏文件defaults write com.apple.finder AppleShowAllFiles TRUEkillall Finder被隐藏的文件夹会以半透明的形式显现,与正常文件区分开3、大写字母长按·中/英·键,绿灯亮为大写...
2020-12-12 16:13:49 545 1
原创 Python之shp文件
1、读取shppip install pyshppyshp(Python Shapefile Library)是一个Python库,用于在Python脚本中对ArcGIS中的Shapefile文件(.shp,.shx,.dbf等格式)进行读写操作。Reader类, 对shapefile文件读取;Editor类,对shapefile文件编辑;Writer类,对shapefile文件写操作每个文件包含 “几何数据”(Geometry)和"属性数据"(Attribute Record) ,两个文件数据
2020-11-24 22:56:49 8577 3
原创 python之tiff
1、安装libtiffconda安装的没生效libtiff 4.1.0 h56a325e_0 defaults下载whl https://www.lfd.uci.edu/~gohlke/pythonlibs/#pylibtiffpip install pylibtiff-0.4.2-cp37-cp37m-win_amd64.whlpylibtiff 0.4.2
2020-11-24 22:56:39 1063 1
原创 excel读写
EasyExcel不错https://github.com/alibaba/easyexcelhttps://www.yuque.com/easyexcel/doc/read
2020-11-20 09:31:34 160
原创 从MongoDB到Elasticsearch
参考:https://www.compose.com/articles/transporter-maps-mongodb-to-elasticsearch/https://www.digitalocean.com/community/tutorials/how-to-sync-transformed-data-from-mongodb-to-elasticsearch-with-transporter-on-ubuntu-16-04
2020-11-17 16:16:21 220
原创 java之http下载图片无法打开
之前下载可以,忽然之间不行了import org.apache.commons.io.FileUtils;public static void downReloadUrlFile(String url, String filePath) { try { URL httpurl = new URL(url); File out_file = new File(filePath); FileUtils.copyURLToFile(httpurl, out_file); } cat
2020-11-11 16:03:50 1859
原创 StringUtils填充方法
import org.apache.commons.lang3.StringUtils;StringUtils.leftPad(String str,int size,String padStr);StringUtils.leftPad("24", 5,"0"); //左侧填充:StringUtils.rightPad(String str,int size,String padStr);//右侧填充:StringUtils.center(String str, int size, String
2020-10-22 09:32:46 329
原创 maven引入本地jar包
方法一 引入到maven库在jar包目录下mvn install:install-file -Dfile=E:\lib\saaj.jar -DgroupId=saaj -DartifactId=saaj -Dversion=1.0 -Dpackaging=jar方法二 本地引入,打包需注意project的根目录新建lib文件夹,将jar放进去,和src同层级<dependency> <groupId>saaj</groupId>
2020-10-20 17:51:34 248
原创 java通过参数执行main
// java -jar xx.jar hour.json hour public static void main(String[] args) { String str = FileOperationUtil.read(System.getProperty("user.dir"),args[0]); MainUtil.mainUtil(str,args[1]); }
2020-10-20 15:38:55 176
原创 esri的geometry-api学习
<dependency> <groupId>com.esri.geometry</groupId> <artifactId>esri-geometry-api</artifactId> <version>2.2.3</version> </dependency>1、2个geojson是否相交import ...
2020-10-15 13:34:25 1988
原创 Retrofit2 使用
1、@Multipart上传单个文件import okhttp3.MultipartBody;import okhttp3.RequestBody;import retrofit2.http.*; @Multipart @POST("api/v1/grid/upload/{data_code}/{element}") Object uploadZip(@Part MultipartBody.Part file, @PartMap M
2020-10-14 16:40:02 218
原创 InputStream转File
File file = new File(System.getProperty("java.io.tmpdir")+File.separator+RandomUtil.randomString(8)+".zip"); File file1 = new File("E:\\test\\shp.zip"); FileInputStream inStream = new FileInputStream(file1); FileOutputStream...
2020-10-12 18:13:42 4492 1
原创 Java使用GeoTools读取shapefile文件
import com.alibaba.fastjson.JSONObject;import org.geotools.data.shapefile.ShapefileDataStore;import org.geotools.data.simple.SimpleFeatureIterator;import org.geotools.data.simple.SimpleFeatureSource;import org.geotools.geojson.feature.FeatureJSON;impo
2020-10-12 18:09:14 774
原创 Java Zip压缩&解压
一、使用ZipFile解压文件 //String SHAPE_FILE = "E:\\shp\\区县.zip"; // ShapeFile全路径 //unzip(SHAPE_FILE,SHAPE_FILE.replaceAll(".zip","")); public static void unzip(String sourcePath,String targetPath) { //targetPath输出文件路径 File targetFile = new
2020-10-12 18:04:29 142
原创 maven解决omitted for duplicate(依赖冲突)
<dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.2.0</version> <exclusions> <exclusion&
2020-09-18 11:26:34 12070
原创 python之netCDF4
解析nc文件import netCDF4from netCDF4 import Datasetnc_obj = Dataset(f'E:\chqqh\wrf\jan_avg_wrf_d04.nc')print(nc_obj)
2020-09-16 15:57:52 2343 3
原创 Python之geopandas
1、查询点是否在geojson内import geopandas as gpdfrom shapely.geometry import Point logger.info('开始') lon = np.linspace(73, 134.9, 6200) lat = np.linspace(54.2, 12.21, 4200) shape = gpd.read_file(config.ROOT_PATH / 'nanjing.json') region_shape =
2020-08-20 08:59:52 803
maximo75(V75 Report Booklet)
2014-06-18
maximo75中文标准文档
2014-06-18
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人