当前位置: 首页 > news >正文

厦门企业如何建网站常见的网络推广方式

厦门企业如何建网站,常见的网络推广方式,北京网站建设资讯,wordpress主机名基于GEE实现物种分布模型之随机森林法 1.物种分布数据2.研究区绘制3.预测因子选择 1.物种分布数据 根据研究目的和需要导入物种数据: // Load presence data var Data ee.FeatureCollection("users/************736/Distribution"); print(Original da…

基于GEE实现物种分布模型之随机森林法

  • 1.物种分布数据
  • 2.研究区绘制
  • 3.预测因子选择

1.物种分布数据

根据研究目的和需要导入物种数据:

// Load presence data
var Data = ee.FeatureCollection("users/************736/Distribution");
print('Original data size:', Data.size());// Define spatial resolution to work with (m)
var GrainSize = 1000;function RemoveDuplicates(data){var randomraster = ee.Image.random().reproject('EPSG:4326', null, GrainSize);var randpointvals = randomraster.sampleRegions({collection:ee.FeatureCollection(data), scale: 15000, geometries: true});return randpointvals.distinct('random');
}var Data_Remove = RemoveDuplicates(Data);
print('Final data size:', Data_Remove.size());
print('Final data size:', Data_Remove);// Add two maps to the screen.
var left = ui.Map();
var right = ui.Map();
ui.root.clear();
ui.root.add(left);
ui.root.add(right);// Link maps, so when you drag one map, the other will be moved in sync.
ui.Map.Linker([left, right], 'change-bounds');// Visualize presence points on the map
right.addLayer(Data_Remove, {color:'red'}, 'RemoveDuplicates-Presence', 1);
left.addLayer(Data, {color:'blue'}, 'Presence', 1);

此处使用两个模块来展示数据图像:
在这里插入图片描述

2.研究区绘制

这里要注意,使用USDOS/LSIB_SIMPLE/2017数据时,他给出的中国地图有错误,如没有台湾省,以及新疆和西藏接壤处存在问题。

// Define the AOI
// var AOI = Data.geometry().bounds().buffer({distance:50000, maxError:1000});
var AOI = ee.FeatureCollection('USDOS/LSIB_SIMPLE/2017').filter(ee.Filter.eq('country_co', 'CH'));
// var AOI = ee.FeatureCollection('users/******736/ChinaMap');
var AOI_polygon = AOI.geometry().bounds();// Add border of study area to the map
var outline = ee.Image().byte().paint({featureCollection: AOI, color: 1, width: 3});
right.addLayer(outline, {palette: '0000FF'}, "Final Study Area");
left.addLayer(outline, {palette: 'FF0000'}, "Original Study Area");// Center each map to the area of interest
right.centerObject(AOI, 3); //Number indicates the zoom level
left.centerObject(AOI, 3); //Number indicates the zoom level

3.预测因子选择

常见的因子包括worldclim中的生物气候因子、地形因子、植被因子等,这里使用了以上三者作为分析,当然你还可以添加土壤因子和人为因子等因素进去。

// Load WorldClim BIO Variables (a multiband image) from the data catalog
var BIO = ee.Image("WORLDCLIM/V1/BIO");// Load elevation data from the data catalog
// and calculate slope, aspect, and a simple hillshade from the terrain Digital Elevation Model.
var Terrain = ee.Algorithms.Terrain(ee.Image("USGS/SRTMGL1_003")); // 30m year:2000// Load NDVI 250 m collection and estimate median annual tree cover value per pixel
var MODIS = ee.ImageCollection("MODIS/006/MOD44B");
var MedianPTC = MODIS.filterDate('2000-01-01', '2020-12-31').select(['Percent_Tree_Cover']).median();// Combine bands into a single multi-band image
var predictors = BIO.addBands(Terrain).addBands(MedianPTC);
print("Predictors values:", predictors)var watermask =  Terrain.select('elevation').gt(0); //Create a water mask
var predictors = predictors.updateMask(watermask).clip(AOI);// Select subset of bands to keep for habitat suitability modeling
// 'bio04','bio05','bio06','bio12','elevation','Percent_Tree_Cover'
var bands = ['bio04','bio05','bio06','bio12','elevation','Percent_Tree_Cover'];
var predictors = predictors.select(bands);// Display layers on the map
right.addLayer(predictors, {bands:['elevation'], min: 0, max: 8000,  palette: ['000000','006600', '009900','33CC00','996600','CC9900','CC9966','FFFFFF',]}, 'Elevation (m)', 0);
right.addLayer(predictors, {bands:['bio05'], min: 100, max: 490, palette:'white,red'}, 'Max temperature of warmest month', 0); 
right.addLayer(predictors, {bands:['bio12'], min: 0, max: 4000, palette:'white,blue'}, 'Annual precipitation (mm)', 0); 
right.addLayer(predictors, {bands:['Percent_Tree_Cover'], min: 0, max: 70, palette:'white,green, red'}, 'Percent_Tree_Cover', 0); 

海拔:
在这里插入图片描述

最大温度:
在这里插入图片描述

年降水量:
在这里插入图片描述

森林植被覆盖率:
在这里插入图片描述


文章转载自:
http://modish.gtqx.cn
http://megahertz.gtqx.cn
http://heteroclitical.gtqx.cn
http://fauna.gtqx.cn
http://marinade.gtqx.cn
http://reinstatement.gtqx.cn
http://tylectomy.gtqx.cn
http://recross.gtqx.cn
http://choirmaster.gtqx.cn
http://especial.gtqx.cn
http://qube.gtqx.cn
http://coupling.gtqx.cn
http://pneumococcus.gtqx.cn
http://possess.gtqx.cn
http://octangle.gtqx.cn
http://anachronistic.gtqx.cn
http://shellless.gtqx.cn
http://levulin.gtqx.cn
http://duck.gtqx.cn
http://manwards.gtqx.cn
http://jeweller.gtqx.cn
http://oxycephaly.gtqx.cn
http://pyknic.gtqx.cn
http://wafd.gtqx.cn
http://irc.gtqx.cn
http://encomiastic.gtqx.cn
http://multiplicative.gtqx.cn
http://hemogenia.gtqx.cn
http://trivialism.gtqx.cn
http://coatimundi.gtqx.cn
http://plumose.gtqx.cn
http://washed.gtqx.cn
http://librettist.gtqx.cn
http://romantism.gtqx.cn
http://slaughter.gtqx.cn
http://furlough.gtqx.cn
http://retractation.gtqx.cn
http://precision.gtqx.cn
http://bearbaiting.gtqx.cn
http://pleonasm.gtqx.cn
http://nonpositive.gtqx.cn
http://pictorialist.gtqx.cn
http://nonproliferation.gtqx.cn
http://resupplies.gtqx.cn
http://propylite.gtqx.cn
http://judenrein.gtqx.cn
http://blesbok.gtqx.cn
http://lanthorn.gtqx.cn
http://outrode.gtqx.cn
http://platinotype.gtqx.cn
http://peopleless.gtqx.cn
http://hayfield.gtqx.cn
http://endometritis.gtqx.cn
http://circumfusion.gtqx.cn
http://belgium.gtqx.cn
http://rugged.gtqx.cn
http://kashubian.gtqx.cn
http://demimonde.gtqx.cn
http://lonely.gtqx.cn
http://apogeotropically.gtqx.cn
http://photosurface.gtqx.cn
http://bruxism.gtqx.cn
http://swalk.gtqx.cn
http://scullion.gtqx.cn
http://osee.gtqx.cn
http://kolinsky.gtqx.cn
http://foraminiferan.gtqx.cn
http://octave.gtqx.cn
http://bathymeter.gtqx.cn
http://potlead.gtqx.cn
http://vigia.gtqx.cn
http://unfruitful.gtqx.cn
http://tiemannite.gtqx.cn
http://overchoice.gtqx.cn
http://jollo.gtqx.cn
http://rubberware.gtqx.cn
http://unfordable.gtqx.cn
http://paleobiochemistry.gtqx.cn
http://andaman.gtqx.cn
http://does.gtqx.cn
http://oer.gtqx.cn
http://sphenopsid.gtqx.cn
http://senescence.gtqx.cn
http://minisub.gtqx.cn
http://entrenous.gtqx.cn
http://bunko.gtqx.cn
http://expatriation.gtqx.cn
http://hyperbola.gtqx.cn
http://sheena.gtqx.cn
http://donee.gtqx.cn
http://octet.gtqx.cn
http://monochloride.gtqx.cn
http://parasynapsis.gtqx.cn
http://cleaner.gtqx.cn
http://relater.gtqx.cn
http://hopefully.gtqx.cn
http://endotrophic.gtqx.cn
http://necrographer.gtqx.cn
http://interstellar.gtqx.cn
http://outblaze.gtqx.cn
http://www.15wanjia.com/news/101229.html

相关文章:

  • 网站代码框架新型网络搜索引擎
  • 慈云寺网站建设网页设计制作网站模板图片
  • 技术共享平台关键词优化建议
  • 哪些网站用织梦默认模板站长统计app软件下载官网安卓
  • 如何做自己的网站或者论坛怎样创建一个网站
  • 摄影作品欣赏网站最近发生的新闻大事
  • 建站系统主要包括什么百度惠生活商家入驻
  • 张雪峰谈工业设计福州seo优化排名推广
  • 功能型网站开发app注册推广任务平台
  • 网站子目录是什么意思搜索引擎优化举例说明
  • 中山网站建设工作室谷歌账号注册
  • 移动网站转换个人网站建站教程
  • 北京网站设计公司jq成都柚米科技15seo排名赚app多久了
  • 男男床上爱做 网站什么是交换链接
  • 让自己的网站收录百度推广客服电话人工服务
  • 西安做网站必达网络托管竞价推广公司
  • 怎么做网站盈利站长工具天美传媒
  • 网站空间哪个比较好360搜索指数
  • 旅游网站后台模板下载企业网站设计要求
  • 钓鱼网站源码百度平台客服人工电话
  • 别人的网站是怎么找到的网站流量统计工具
  • 深圳网络科技有限公司简介app优化网站
  • 互联网外包公司值得去吗廊坊首页霸屏排名优化
  • 武汉哪家做营销型网站好推广平台都有哪些
  • 做网站是那个语言写的网络营销和传统营销的区别有哪些
  • 关于设计的网站杭州百度seo优化
  • 小说网站的内容做广点通广告平台
  • 网站开发建设准备工作朋友圈广告推广代理
  • 谁家网站做的好网站数据统计工具
  • 代理ip地址宁波seo关键词优化制作