perl 传单引号_使用geopandas和传单在python和r中绘制精美的地理图

本文主要是介绍perl 传单引号_使用geopandas和传单在python和r中绘制精美的地理图,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

perl 传单引号

There are several geographic libraries that are available for plotting location information on a map. I’ve previously written about the same topic here but since then I’ve used these libraries more extensively as well as got introduced to new ones. After using and examining several libraries, I found that GeoPandas and the Leaflet libraries are two of the most easy to use and highly customizable libraries. The code is available as a GitHub repo:

有几个地理库可用于在地图上绘制位置信息。 我以前在这里曾写过同一主题,但是从那时起,我就更广泛地使用了这些库,并且将它们引入了新库。 使用并检查了几个库之后,我发现GeoPandas和Leaflet库是最易于使用和高度可定制的两个库。 该代码可作为GitHub存储库提供:

数据集 (Dataset)

The dataset is taken from Kaggle. It includes the population density (population per square Km) for various countries across the world. The dataset includes the values ranging from 1961 to 2015.

该数据集取自Kaggle 。 它包括世界各国的人口密度(每平方千米人口)。 数据集包括从1961年到2015年的值。

Image for post
Dataset
数据集

The figure above shows that we need to skip the first 4 rows when reading in the dataset, so we directly start with the data. Columns such as “1960” are empty and hence they can be removed. Also, data for some countries like Belgium is missing so we’ll remove these records from our collection.

上图显示,在读取数据集时,我们需要跳过前4行,因此我们直接从数据开始。 诸如“ 1960”的列为空,因此可以将其删除。 另外,某些国家(例如比利时)的数据丢失了,因此我们将从集合中删除这些记录。

使用GeoPandas的静态图(在Python中) (Static plots using GeoPandas (in Python))

导入库 (Import libraries)

We’ll import the library pandas to read the dataset and then plot the maps using geopandas. Note that to remove unnecessary warnings, I added the specific command.

我们将导入库pandas以读取数据集,然后使用geopandas绘制地图。 请注意,为消除不必要的警告,我添加了特定命令。

import pandas as pd
import geopandas as gpdimport warnings
warnings.filterwarnings('ignore')%matplotlib inline

导入数据集(Import dataset)

Next, we’ll import the dataset. As mentioned before, I skip the first 4 rows.

接下来,我们将导入数据集。 如前所述,我跳过了前4行。

dataset = pd.read_csv("data/dataset.csv", skiprows=4)
dataset = dataset.drop(["Indicator Name", "Indicator Code", "1960", "2016", "Unnamed: 61"], axis = 1)
dataset = dataset.dropna(how = 'any')
dataset["avgPopulationDensity"] = dataset.iloc[:, 2:].mean(axis = 1)
dataset.head()

I remove all the extra columns that I don’t need (“Indicator Name”, “Indicator Code”, “1960”, “2016”, “Unnamed: 61”) using the drop() method. I remove all records with any NULL values using dropna()and finally calculate the average population density across years 1961 to 2015 into a new column avgPopulationDensity.

我使用drop()方法删除了所有不需要的额外列(“指标名称”,“指标代码”,“ 1960”,“ 2016”,“未命名:61”)。 我使用dropna()删除所有具有任何NULL值的记录,最后将1961年至2015年之间的平均人口密度计算到新列avgPopulationDensity

Image for post
Resulting dataset
结果数据集

绘图数据(Plot data)

We first load in the world baseplot directly from geopandas and then merge the dataset we refined above with this baseplot data. Then, we simply plot th data world shaded by the values in the avgPopulationDensity column. We shade the countries in the Reds colormap which means countries with higher average population densities are darker than other countries.

我们首先直接从geopandas加载世界基准图,然后将我们在上面精炼的数据集与此基准图数据合并。 然后,我们简单地绘制由avgPopulationDensity列中的值阴影的数据world 。 我们在“ Reds配色图中为国家/地区加阴影,这意味着平均人口密度较高的国家/地区比其他国家更暗。

world = gpd.read_file(gpd.datasets.get_path('naturalearth_lowres'))
world = world.merge(dataset, how = 'left', left_on = 'iso_a3', right_on = 'Country Code')
world.plot(column = 'avgPopulationDensity', edgecolor = 'black',figsize = (16, 16),cmap = 'Reds')
Image for post
Average Population Density plot (using GeoPandas)
平均人口密度图(使用GeoPandas)

We can clearly see that countries in Asia have more population density values especially India, Bangladesh, Korea and Japan.

我们可以清楚地看到,亚洲国家的人口密度值更高,尤其是印度,孟加拉国,韩国和日本。

使用Leaflet的交互式图(在R中) (Interactive plots using Leaflet (in R))

导入库 (Import libraries)

We’ll load in the leaflet library for generating plots and the sf library for reading in shapefiles.

我们将加载用于生成图形的leaflet库,并加载用于读取shapefile的sf库。

library(leaflet)
library(sf)

导入数据集(Import dataset)

Just like in Python, we’d import in the dataset skipping first 4 rows, remove extra columns, remove rows with missing values and create the avgPopulationDensity column.

就像在Python中一样,我们将跳过前4行导入数据集中,删除多余的列,删除缺少值的行并创建avgPopulationDensity列。

dataset <- read.csv("data/dataset.csv", skip = 4)
dataset[, c("Indicator.Name", "Indicator.Code", "X1960", "X2016", "X")] <- NULL
dataset <- dataset[complete.cases(dataset), ]
dataset["avgPopulationDensity"] <- rowSums(dataset[,3:57])

It’s important that we also load in the shapefile needed for the plotting. Thus, we use the st_read method and merge the dataset with this shapefile into a variable named shapes.

重要的是,我们还要加载绘图所需的shapefile。 因此,我们使用st_read方法并将具有此shapefile的数据集合并到一个名为shapes的变量中。

shapes <- st_read("data/countries_shp/countries.shp")
shapes <- merge(shapes, dataset, by.x = 'ISO3', by.y = 'Country.Code')

绘图数据(Plot data)

Before we plot the data, we first define the color palette we want to use. I defined the shades of red for various bins and based on that I will shade the resultant plot. As this is a custom palette, it’s colors will be different from the one we see in the GeoPandas plot.

在绘制数据之前,我们首先定义要使用的调色板。 我为各种垃圾箱定义了红色阴影,并以此为基础绘制了结果图。 由于这是一个自定义调色板,因此其颜色将与我们在GeoPandas图中看到的颜色不同。

colors <- c("#8B0000","#FF0000", "#FFA07A")
bins <- c(100000, 20000, 5000, 0)color_pal <- leaflet::colorBin(colors, domain = shapes$avgPopulationDensity, bins = bins)

Next, we plot the leaflet geoplot. The leaflet() starts creating the plot and addTiles() adds the tiles for the countries. Next, we set the view of the map by defining the latitude and longitude values as well as the zoom so we can see the whole map at once. We can change the values if needed but as it is an interactive map, we can do so dynamically too.

接下来,我们绘制传单地理图。 leaflet()开始创建图, addTiles()添加国家/地区的图块。 接下来,我们通过定义纬度和经度值以及缩放比例来设置地图视图,以便我们可以一次查看整个地图。 我们可以根据需要更改值,但由于它是一个交互式地图,因此也可以动态更改。

leaflet(shapes) %>% addTiles() %>%setView(lat = 10, lng = 0, zoom = 1) %>%addPolygons(fillColor = ~color_pal(shapes$avgPopulationDensity),fillOpacity = 0.7,label = shapes$Country.Name,stroke = TRUE,color = 'black',weight = 1,opacity = 1)

Finally, based on the avgPopulationDensity column, we color grade the whole plot and attach country names as labels. We customize the look of each country by adding in strokes (STROKE = TRUE), and then setting them to be black with weight = 1, defining the width of each boundary.

最后,基于avgPopulationDensity列,我们对整个绘图进行颜色分级,并附加国家名称作为标签。 我们通过添加笔画( STROKE = TRUE ),然后将它们设置为weight = 1 black ,定义每个边界的宽度,来自定义每个国家/地区的外观。

Image for post
Average Population Density plot (using LeafLet)
平均人口密度图(使用LeafLet)

We observe that countries in Asia like India, Bangladesh, China, Japan and others have high population densities than other countries.

我们观察到,印度,孟加拉国,中国,日本等亚洲国家的人口密度比其他国家高。

结论 (Conclusion)

From the two examples above, we see how easy it is to create beautiful static and dynamic geographic plots. Plus, there are tons of customizations that we can add.

从上面的两个示例中,我们看到了创建漂亮的静态和动态地理图非常容易。 另外,我们可以添加大量自定义设置。

If you have any suggestions, questions or ideas, please let me know down below.

如果您有任何建议,问题或想法,请在下面告诉我。

翻译自: https://towardsdatascience.com/elegant-geographic-plots-in-python-and-r-using-geopandas-and-leaflet-27126b60bace

perl 传单引号


http://www.taodudu.cc/news/show-7943204.html

相关文章:

  • java-IO流中的对象流和序列化理解
  • Node.js(尚硅谷最经典Node.js快速入门学习笔记)
  • 单片机缩写
  • 语音低速率编码技术和数字水印技术的研究
  • 无线网络和技术概念
  • 【专业造轮子】:一位大神的编程之路,让我大吃一惊!
  • Lombok注解@SneakyThrows的作用
  • 电池模拟器之电阻分压1
  • 杰里之693N 纽扣电池供电(硬件有特殊接法--自行对原理图【篇】
  • 电池BMS电流校准原理
  • 电池级碳酸锂、碳酸氢锂除钙镁的工作原理
  • 动力电池原理说明及应用概述
  • 电池工作原理:一种通俗易懂的讲解
  • 【操作系统】总结 (一) 计组部分知识
  • 云网融合,SDN在云数据中心的应用
  • 可口的故事
  • linux下安装qt、qt触摸屏校准tslib
  • 锐捷网络:缔造创新型无线WiFi
  • 系统设计时如何应对现今主流的攻击?
  • 细节选择成功——谈中小企业网站建设之网络营
  • 案例分享:广深沿江高速已部署93根多功能智能杆
  • Gartner:2021-2022年八大网络安全预测
  • 主机加固:系统加固的新概念
  • 网络安全如何解决攻防不对等和系统碎片化危机?
  • 利用网络安全路线图实现IT合规
  • 卷积神经网络与视觉计算,卷积神经网络的可视化
  • 人工神经网络与神经网络,完整的人工神经网络
  • Springboot 异步任务@Async 使用和失效分析
  • ESD与EOS失效案例分享
  • MYSQL索引使用案例分析
  • 这篇关于perl 传单引号_使用geopandas和传单在python和r中绘制精美的地理图的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



    http://www.chinasem.cn/article/202118

    相关文章

    中文分词jieba库的使用与实景应用(一)

    知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

    python: 多模块(.py)中全局变量的导入

    文章目录 global关键字可变类型和不可变类型数据的内存地址单模块(单个py文件)的全局变量示例总结 多模块(多个py文件)的全局变量from x import x导入全局变量示例 import x导入全局变量示例 总结 global关键字 global 的作用范围是模块(.py)级别: 当你在一个模块(文件)中使用 global 声明变量时,这个变量只在该模块的全局命名空

    使用SecondaryNameNode恢复NameNode的数据

    1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

    Hadoop数据压缩使用介绍

    一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

    Makefile简明使用教程

    文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

    使用opencv优化图片(画面变清晰)

    文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

    【Python编程】Linux创建虚拟环境并配置与notebook相连接

    1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

    pdfmake生成pdf的使用

    实际项目中有时会有根据填写的表单数据或者其他格式的数据,将数据自动填充到pdf文件中根据固定模板生成pdf文件的需求 文章目录 利用pdfmake生成pdf文件1.下载安装pdfmake第三方包2.封装生成pdf文件的共用配置3.生成pdf文件的文件模板内容4.调用方法生成pdf 利用pdfmake生成pdf文件 1.下载安装pdfmake第三方包 npm i pdfma

    零基础学习Redis(10) -- zset类型命令使用

    zset是有序集合,内部除了存储元素外,还会存储一个score,存储在zset中的元素会按照score的大小升序排列,不同元素的score可以重复,score相同的元素会按照元素的字典序排列。 1. zset常用命令 1.1 zadd  zadd key [NX | XX] [GT | LT]   [CH] [INCR] score member [score member ...]

    【机器学习】高斯过程的基本概念和应用领域以及在python中的实例

    引言 高斯过程(Gaussian Process,简称GP)是一种概率模型,用于描述一组随机变量的联合概率分布,其中任何一个有限维度的子集都具有高斯分布 文章目录 引言一、高斯过程1.1 基本定义1.1.1 随机过程1.1.2 高斯分布 1.2 高斯过程的特性1.2.1 联合高斯性1.2.2 均值函数1.2.3 协方差函数(或核函数) 1.3 核函数1.4 高斯过程回归(Gauss