We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OS: Ubuntu 20.04
Browser: Chrome Version 95.0.4638.69 (Official Build) (64-bit)
gv.Polygons doesn't display correctly but hv.Polygons does
GeoJSON file: Download
import pandas as pd import holoviews as hv import geoviews as gv import geoviews.feature as gf import cartopy import cartopy.feature as cf from geoviews import opts from cartopy import crs as ccrs gv.extension('bokeh') df = gpd.read_file("./error-geojson.geojson") projected_df = df.to_crs('EPSG:4326') projected_df = projected_df[projected_df['FID'] == 4] gv.Polygons(projected_df).opts(width=600) hv.Polygons(projected_df).opts(width=600)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ALL software version info
OS: Ubuntu 20.04
Browser: Chrome Version 95.0.4638.69 (Official Build) (64-bit)
Description of expected behavior and the observed behavior
gv.Polygons doesn't display correctly but hv.Polygons does
Complete, minimal, self-contained example code that reproduces the issue
GeoJSON file: Download
Screenshots or screencasts of the bug in action
The text was updated successfully, but these errors were encountered: