数据分析
hahaliang12
这个作者很懒,什么都没留下…
展开
-
python栅格数据出图可视化
import numpy as npimport cartopy.crs as ccrsimport cartopy.mpl.ticker as ctickerimport matplotlib.pyplot as pltimport cartopy.feature as cfeaturefrom mpl_toolkits.basemap import Basemapimport cartopy.io.shapereader as shpreaderfrom cartopy.mpl.tick.原创 2021-06-22 15:27:29 · 2570 阅读 · 3 评论 -
(WWF)上的GIS数据集
世界自然基金会(WWF)上的GIS数据集,其数据网址为:https://www.worldwildlife.org/pages/conservation-science-data-and-tools原创 2021-06-21 15:29:59 · 302 阅读 · 0 评论 -
python文件操作
1.获取特定路径下面特定类型文件(特定后缀名)#使用glob包from glob import glob#文件夹路径input_dir = r''#获得input_dir下面的txt文件列表file_list = glob(input_dir + '*.txt')for each_txt in file_list: print(each_txt)#打印文件路径,此种方法得到的文件名为绝对路径,是全称2.获取特定路径下面的所有文件夹#使用os包import os#文件夹路径inpu原创 2021-06-10 15:20:48 · 1100 阅读 · 2 评论 -
scipy.optimize.curve_fit参数简介
scipy.optimize.curve_fit函数参数列表scipy.optimize.curve_fit(f, xdata, ydata, p0=None, sigma=None, absolute_sigma=False, check_finite=True, bounds=- inf, inf, method=None, jac=None, **kwargs)[source]使用非线性最小二乘拟合函数f。参数列表f:callable可调用模型函数,f(x, …)。它必须将自变量作为原创 2021-06-03 17:39:43 · 6350 阅读 · 0 评论 -
A atmospheric correction tool大气校正工具
S2 surface reflectance images, cloud free selected, were down loaded from the THEIA-LAND site and orthorectified and corrected for atmosphericeffects using the MAJA processor for cloud detection and atmospheric correction ( https://www.theia-land.fr , acce原创 2021-05-31 17:35:28 · 671 阅读 · 0 评论 -
Chiaa
Chiahttps://www.chia.net/faq/#faq-1What is Chia?Chia was incorporated in August of 2017 to develop an improved blockchain and smart transaction platform. We are building the Chia Network to improve the global financial and payments systems. Chia is the原创 2021-05-25 18:37:58 · 226 阅读 · 1 评论 -
python做方程的参数拟合,计算RMSE和R
python做方程的参数拟合,计算RMSE和R#参数拟合import numpy, scipy, matplotlibimport matplotlib.pyplot as pltfrom scipy.optimize import curve_fitfrom scipy.optimize import differential_evolutionimport warningsxData=numpy.array([0,0,100,200,250,300,400], dtype="float"原创 2021-05-11 20:55:45 · 2519 阅读 · 0 评论 -
将Pandas DataFrame转换为字典
将Pandas DataFrame转换为字典该to_dict()方法将列名设置为字典键将“ID”列设置为索引然后转置DataFrame是实现此目的的一种方法。to_dict()还接受一个’orient’参数,您需要该参数才能输出每列的值列表。否则,{index: value}将为每列返回表单的字典。可以使用以下行完成这些步骤:>>> df.set_index('ID').T.to_dict('list'){'p': [1, 3, 2], 'q': [4, 3, 2], 'r': [原创 2021-05-10 18:57:07 · 18174 阅读 · 3 评论 -
Cubist software
Cubist software (version 2.05)Free Software DownloadsThe C source code for single-threaded Linux versions of our software is now available under the GNU General Public License. (These are the full versions, not limited demonstration versions.) The source原创 2021-05-10 10:17:14 · 1083 阅读 · 0 评论 -
International Soil Moisture Network
International Soil Moisture Networkhttps://ismn.geo.tuwien.ac.at/en/原创 2021-05-08 11:36:57 · 856 阅读 · 0 评论 -
The Remote Sensing Code Library
The Remote Sensing Code Library (RSCL)The Remote Sensing Code Library (RSCL) is a free online registry of software codes of interest to remote sensing scientists and engineers. The RSCL is indexed by IEEE and is citable by using the DOI assigned to each c原创 2021-04-26 15:04:01 · 253 阅读 · 0 评论 -
MODIS R
MODIS包也在github上,上面有常见问题模块,可以向开发者提问和提供bug.1,在EARTHDATA注册用户。到官方网站注册https://earthdata.nasa.gov/,比如你的用户名和密码分别是:用户名:james;密码:lileihanmeimei1232,安装MODIS包install.packages(“MODIS”)3,下载数据流程3.1 配置用户名和密码第一个是earthdata的账户配置,在MODIS包中 EarthdataLogin函数来配置,假如你的earth原创 2021-04-22 17:41:38 · 775 阅读 · 0 评论 -
NDVI 300m 10-day
Copernicus Global Land ServiceDelay in Sentinel-1 and Sentinel-3 based products(https://land.copernicus.eu/global/content/delay-sentinel-1-and-sentinel-3-based-products)Published on:2021-03-12Due to a fire at the ESA ground segment infrastructure, h原创 2021-04-22 16:27:18 · 168 阅读 · 0 评论 -
时间序列滤波之软件TIMESAT
时间序列滤波之软件TIMESAT1.TimeSat安装包2.MATLAB2018b(matlab每年分上下半年发布两个版本,一个是上半年的a,和下半年的b。建议通常用b,因为通常更稳定)(虽然该博文发布的时间,正逢美国对我国进行实体清单限制的当下。尤其是MATLAB授权。只希望国产软件借此东风,扶摇直上)TimeSat是一款不错的时间序列滤波软件,很专业,在提取植被物候参数方面有着很好的应用,本文主要讲解TimeSat 3.3软件在Windows和Matlab平台的安装及TimeSat 3.3软件的使原创 2021-04-22 09:43:04 · 2264 阅读 · 0 评论