会员
周边
众包
新闻
博问
闪存
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
skypxh
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
2021年9月14日
升级spyder
摘要: 1. 更新所有包后更新spyder conda update --all conda update spyder 2. 更新后spyder闪退 第一步:使用管理员运行:conda prompt 第二步:执行命令 conda update anaconda-navigator 第三步:执行anacon
阅读全文
posted @ 2021-09-14 13:40 skypanxh
阅读(384)
评论(0)
推荐(0)
2021年9月11日
遥感影像高中低分辨率
摘要: 关于高中低应该并没有一个确切的界定。 可以参考邓书斌《ENVI遥感图像处理方法》中的归类。中等分辨率:1、Landsat TM5——30m/120m;2、Landsat ETM+——30m/60m/15m;3、SPOT4——10m/20m;4、ASTER——15m/30m/90m。高分辨率:1、IK
阅读全文
posted @ 2021-09-11 14:22 skypanxh
阅读(1856)
评论(0)
推荐(1)
2021年9月1日
裁剪数据
该文被密码保护。
阅读全文
posted @ 2021-09-01 21:35 skypanxh
阅读(2)
评论(0)
推荐(0)
Jupyter配置
摘要: # 插件安装 链接:<https://mp.weixin.qq.com/s/H0sPScKoB8USlT6SeMytAA> ``` conda install xeus-python=0.8.0 -c conda-forge jupyter labextension install @jupyter
阅读全文
posted @ 2021-09-01 14:44 skypanxh
阅读(134)
评论(0)
推荐(0)
Pytorch安装
摘要: 一.Anconda的环境配置 1. 使用清华镜像 conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ conda config --add channels http://mirror
阅读全文
posted @ 2021-09-01 14:43 skypanxh
阅读(86)
评论(0)
推荐(0)
os常用等其它常用代码
摘要: os常用 1.创建路径 if not os.path.exists(路径): os.makedirs(路径) 或者 def mkdir(path): # 引入模块 import os # 去除首位空格 path=path.strip() # 去除尾部 \ 符号 path=path.rstrip("\
阅读全文
posted @ 2021-09-01 14:42 skypanxh
阅读(96)
评论(0)
推荐(0)
pandas常用代码
摘要: pandas常用代码 1. 表格按照某相同列连接 import pandas as pd # df1的"PFAF_ID"列和df2的"ID"列连接,以df1为准 df = pd.merge(df1,df2,left_on='PFAF_ID',right_on='ID',how = "left") 2
阅读全文
posted @ 2021-09-01 14:41 skypanxh
阅读(191)
评论(0)
推荐(0)
numpy常用代码
摘要: numpy常用代码 1.使用xarray导入数据并切片 import xarray as xr ar1r = xr.open_rasterio(r"路径").data[0,:,:] data[0,:,:],两个逗号的三个部分表示对三个维度进行切片 2.使用numpy按数字选择并赋值 outdata_
阅读全文
posted @ 2021-09-01 14:40 skypanxh
阅读(153)
评论(0)
推荐(0)
GDAL常用代码
摘要: GDAL常用代码 1.导入数据 from osgeo import gdal import numpy as np def LoadData(filename): file = gdal.Open(filename) if file == None: print(filename + " can't
阅读全文
posted @ 2021-09-01 14:39 skypanxh
阅读(693)
评论(0)
推荐(0)
上一页
1
2
3
公告