Python:是否可以从GeoJSONDataSource过滤数据?

时间:2019-05-28 13:05:23

标签: python bokeh geopandas

我正在使用bokeh并绘制shapefile。提示here时,我使用的是GeoJSONDataSource支持的bokeh

我正在加载shapefile。您可以下载shapefile here

from bokeh.models import GeoJSONDataSource
import geopandas as gpd

file  = 'hti_admbnda_adm2_cnigs_20181129.shp'
dfg = gpd.read_file(file) ## geopandas
dfg1 = GeoJSONDataSource(geojson=dfg.to_json()  ## GeoJSONDataSource

我有一个从dfg过滤数据的方法很简单。例如,如果我想要有关城市Abricots的信息,我会

tmp = dfg[dfg['ADM2_EN']=='Abricots']

我想知道是否可以从dfg1的{​​{1}}过滤信息

0 个答案:

没有答案