Skip to content

Fix issues with unwrapping longitudes in RangeXY stream #947

Fix issues with unwrapping longitudes in RangeXY stream

Fix issues with unwrapping longitudes in RangeXY stream #947

Triggered via pull request October 16, 2024 14:43
Status Failure
Total duration 10m 3s
Artifacts 1

test.yaml

on: pull_request
Run pre-commit
16s
Run pre-commit
Setup workflow
4s
Setup workflow
Pixi lock
5s
Pixi lock
Matrix: core_test_suite
Matrix: unit_test_suite
result:test
0s
result:test
Fit to window
Zoom out
Zoom in

Annotations

61 errors
unit:test-310:ubuntu-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 1 Notebook cell execution failed Cell 1: Cell execution caused an exception Input: tiles = gv.tile_sources.OSM() sample_points = dict( Longitude = [-10131185, -10131943, -10131766, -10131032, -10129766], Latitude = [ 3805587, 3803182, 3801073, 3799778, 3798878]) points = gv.Points(sample_points, crs=ccrs.GOOGLE_MERCATOR).opts( size=10, line_color='black', responsive=True, min_height=600 ) point_annotate = annotate.instance() annotated = point_annotate(points, annotations=['Size']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 �[38;5
unit:test-310:ubuntu-latest: examples/user_guide/Projections.ipynb#L1
examples/user_guide/Projections.ipynb::Cell 1 Notebook cell execution failed Cell 1: Cell execution caused an exception Input: nyc, beijing = (-74.0, 40.7, 'NYC'), (116.4, 39.9, 'Beijing') london = (14471.53, 6712008., 'London') cities_lonlat = gv.Points([nyc, beijing], vdims='City') cities_mercator = gv.Points([london], crs=crs.GOOGLE_MERCATOR, vdims='City') (gv.tile_sources.OSM * cities_lonlat * cities_mercator).opts( opts.Points(global_extent=True, width=500, height=475, size=12, color='black')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableE
unit:test-310:ubuntu-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 4 Notebook cell execution failed Cell 4: Cell execution caused an exception Input: rectangles = gv.Rectangles([(0, 0, 10, 10)]) box_annotate = annotate.instance() annotated = box_annotate(rectangles, annotations=['Label'], name='Rectangles') annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 with option_state(obj): --> 258 output = layout_display(obj) �
unit:test-310:ubuntu-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 7 Notebook cell execution failed Cell 7: Cell execution caused an exception Input: sample_poly=dict( Longitude = [-10114986, -10123906, -10130333, -10121522, -10129889, -10122959], Latitude = [ 3806790, 3812413, 3807530, 3805407, 3798394, 3796693]) path = gv.Path([sample_poly], crs=ccrs.GOOGLE_MERCATOR).opts( line_width=2, color='black', responsive=True ) path_annotate = annotate.instance() annotated = path_annotate(path, vertex_annotations=['Height']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif �[38;5;
unit:test-310:ubuntu-latest: examples/user_guide/Working_with_Bokeh.ipynb#L1
examples/user_guide/Working_with_Bokeh.ipynb::Cell 2 Notebook cell execution failed Cell 2: Cell execution caused an exception Input: gts.EsriImagery.opts(width=600, height=570, global_extent=True) * gts.StamenLabels.opts(level='annotation') Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj) 256 elif isinstance(obj, (La
unit:test-310:ubuntu-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 10 Notebook cell execution failed Cell 10: Cell execution caused an exception Input: poly = gv.Polygons([sample_poly], crs=ccrs.GOOGLE_MERCATOR) poly_annotate = annotate.instance() annotated = poly_annotate(poly, annotations=['Value'], vertex_annotations=['Height']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 with option_state(obj): --> 258 output = layout_display(�
unit:test-310:ubuntu-latest: examples/user_guide/Projections.ipynb#L1
examples/user_guide/Projections.ipynb::Cell 3 Notebook cell execution failed Cell 3: Cell execution caused an exception Input: (features * cities_lonlat * cities_mercator).options( opts.Points(projection=crs.Mollweide(), width=800, height=400, size=12, color='black')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj) 256 elif �[3
unit:test-310:ubuntu-latest: examples/user_guide/Working_with_Bokeh.ipynb#L1
examples/user_guide/Working_with_Bokeh.ipynb::Cell 6 Notebook cell execution failed Cell 6: Cell execution caused an exception Input: points = population.to(gv.Points, ['Longitude', 'Latitude'], ['Population', 'City', 'Country']) (gts.OSM * points).opts( opts.Points(width=600, height=350, tools=['hover'], size=np.sqrt(dim('Population'))*0.005, color='Population', cmap='viridis')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:261, in display(obj, raw_output, **kwargs) 259 elif isinstance(obj, (HoloMap, DynamicMap)): 260 with option_state(obj): --> 261 output
unit:test-310:ubuntu-latest: examples/user_guide/Working_with_Bokeh.ipynb#L1
examples/user_guide/Working_with_Bokeh.ipynb::Cell 9 Notebook cell execution failed Cell 9: Cell execution caused an exception Input: dataset = xr.open_dataset('../data/pre-industrial.nc') air_temperature = gv.Dataset(dataset, ['longitude', 'latitude'], 'air_temperature', group='Pre-industrial air temperature') air_temperature.to.image().opts(tools=['hover'], cmap='viridis') *\ gf.coastline().opts(line_color='black', width=600, height=500) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 �[38;5
unit:test-310:ubuntu-latest: examples/gallery/bokeh/airport_graph.ipynb#L1
examples/gallery/bokeh/airport_graph.ipynb::Cell 2 Notebook cell execution failed Cell 2: Cell execution caused an exception Input: (tiles * busiest_airports).opts( opts.Graph(edge_selection_line_color='black', edge_hover_line_color='red', edge_line_width=1, edge_line_alpha=0.01, edge_nonselection_line_alpha=0.01, width=800, height=600)) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = ele
unit:test-312:macos-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 1 Notebook cell execution failed Cell 1: Cell execution caused an exception Input: tiles = gv.tile_sources.OSM() sample_points = dict( Longitude = [-10131185, -10131943, -10131766, -10131032, -10129766], Latitude = [ 3805587, 3803182, 3801073, 3799778, 3798878]) points = gv.Points(sample_points, crs=ccrs.GOOGLE_MERCATOR).opts( size=10, line_color='black', responsive=True, min_height=600 ) point_annotate = annotate.instance() annotated = point_annotate(points, annotations=['Size']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 �[38;5
unit:test-312:macos-latest: examples/user_guide/Projections.ipynb#L1
examples/user_guide/Projections.ipynb::Cell 1 Notebook cell execution failed Cell 1: Cell execution caused an exception Input: nyc, beijing = (-74.0, 40.7, 'NYC'), (116.4, 39.9, 'Beijing') london = (14471.53, 6712008., 'London') cities_lonlat = gv.Points([nyc, beijing], vdims='City') cities_mercator = gv.Points([london], crs=crs.GOOGLE_MERCATOR, vdims='City') (gv.tile_sources.OSM * cities_lonlat * cities_mercator).opts( opts.Points(global_extent=True, width=500, height=475, size=12, color='black')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableE
unit:test-312:macos-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 4 Notebook cell execution failed Cell 4: Cell execution caused an exception Input: rectangles = gv.Rectangles([(0, 0, 10, 10)]) box_annotate = annotate.instance() annotated = box_annotate(rectangles, annotations=['Label'], name='Rectangles') annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 with option_state(obj): --> 258 output = layout_display(obj) �
unit:test-312:macos-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 7 Notebook cell execution failed Cell 7: Cell execution caused an exception Input: sample_poly=dict( Longitude = [-10114986, -10123906, -10130333, -10121522, -10129889, -10122959], Latitude = [ 3806790, 3812413, 3807530, 3805407, 3798394, 3796693]) path = gv.Path([sample_poly], crs=ccrs.GOOGLE_MERCATOR).opts( line_width=2, color='black', responsive=True ) path_annotate = annotate.instance() annotated = path_annotate(path, vertex_annotations=['Height']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif �[38;5;
unit:test-312:macos-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 10 Notebook cell execution failed Cell 10: Cell execution caused an exception Input: poly = gv.Polygons([sample_poly], crs=ccrs.GOOGLE_MERCATOR) poly_annotate = annotate.instance() annotated = poly_annotate(poly, annotations=['Value'], vertex_annotations=['Height']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 with option_state(obj): --> 258 output = layout_display(�
unit:test-312:macos-latest: examples/user_guide/Projections.ipynb#L1
examples/user_guide/Projections.ipynb::Cell 3 Notebook cell execution failed Cell 3: Cell execution caused an exception Input: (features * cities_lonlat * cities_mercator).options( opts.Points(projection=crs.Mollweide(), width=800, height=400, size=12, color='black')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj) 256 elif �[3
unit:test-312:macos-latest: examples/user_guide/Geometries.ipynb#L1
examples/user_guide/Geometries.ipynb::Cell 3 Notebook cell execution failed Cell 3: Cell execution caused an exception Input: gv.output(backend='bokeh') (gf.ocean * gf.land.options(scale='110m', global_extent=True) * gv.Feature(graticules, group='Lines') + gf.ocean * gf.land.options(scale='50m', global_extent=True) * gv.Feature(graticules, group='Lines')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 with option_state(obj): --> 258 output = layout_display�[49
unit:test-312:macos-latest: examples/user_guide/Working_with_Bokeh.ipynb#L1
examples/user_guide/Working_with_Bokeh.ipynb::Cell 2 Notebook cell execution failed Cell 2: Cell execution caused an exception Input: gts.EsriImagery.opts(width=600, height=570, global_extent=True) * gts.StamenLabels.opts(level='annotation') Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj) 256 elif isinstance(obj, (La
unit:test-312:macos-latest: examples/user_guide/Working_with_Bokeh.ipynb#L1
examples/user_guide/Working_with_Bokeh.ipynb::Cell 6 Notebook cell execution failed Cell 6: Cell execution caused an exception Input: points = population.to(gv.Points, ['Longitude', 'Latitude'], ['Population', 'City', 'Country']) (gts.OSM * points).opts( opts.Points(width=600, height=350, tools=['hover'], size=np.sqrt(dim('Population'))*0.005, color='Population', cmap='viridis')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:261, in display(obj, raw_output, **kwargs) 259 elif isinstance(obj, (HoloMap, DynamicMap)): 260 with option_state(obj): --> 261 output
unit:test-312:macos-latest: examples/user_guide/Geometries.ipynb#L1
examples/user_guide/Geometries.ipynb::Cell 7 Notebook cell execution failed Cell 7: Cell execution caused an exception Input: australia = gv.Shape(land_geoms[21]) alice_springs = gv.Text(133.870,-21.5, 'Alice Springs') australia * gv.Points([(133.870,-23.700)]).opts(color='black', width=400) * alice_springs Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj)
unit:test-310:macos-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 1 Notebook cell execution failed Cell 1: Cell execution caused an exception Input: tiles = gv.tile_sources.OSM() sample_points = dict( Longitude = [-10131185, -10131943, -10131766, -10131032, -10129766], Latitude = [ 3805587, 3803182, 3801073, 3799778, 3798878]) points = gv.Points(sample_points, crs=ccrs.GOOGLE_MERCATOR).opts( size=10, line_color='black', responsive=True, min_height=600 ) point_annotate = annotate.instance() annotated = point_annotate(points, annotations=['Size']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 �[38;5
unit:test-310:macos-latest: examples/user_guide/Projections.ipynb#L1
examples/user_guide/Projections.ipynb::Cell 1 Notebook cell execution failed Cell 1: Cell execution caused an exception Input: nyc, beijing = (-74.0, 40.7, 'NYC'), (116.4, 39.9, 'Beijing') london = (14471.53, 6712008., 'London') cities_lonlat = gv.Points([nyc, beijing], vdims='City') cities_mercator = gv.Points([london], crs=crs.GOOGLE_MERCATOR, vdims='City') (gv.tile_sources.OSM * cities_lonlat * cities_mercator).opts( opts.Points(global_extent=True, width=500, height=475, size=12, color='black')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableE
unit:test-310:macos-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 4 Notebook cell execution failed Cell 4: Cell execution caused an exception Input: rectangles = gv.Rectangles([(0, 0, 10, 10)]) box_annotate = annotate.instance() annotated = box_annotate(rectangles, annotations=['Label'], name='Rectangles') annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 with option_state(obj): --> 258 output = layout_display(obj) �
unit:test-310:macos-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 7 Notebook cell execution failed Cell 7: Cell execution caused an exception Input: sample_poly=dict( Longitude = [-10114986, -10123906, -10130333, -10121522, -10129889, -10122959], Latitude = [ 3806790, 3812413, 3807530, 3805407, 3798394, 3796693]) path = gv.Path([sample_poly], crs=ccrs.GOOGLE_MERCATOR).opts( line_width=2, color='black', responsive=True ) path_annotate = annotate.instance() annotated = path_annotate(path, vertex_annotations=['Height']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif �[38;5;
unit:test-310:macos-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 10 Notebook cell execution failed Cell 10: Cell execution caused an exception Input: poly = gv.Polygons([sample_poly], crs=ccrs.GOOGLE_MERCATOR) poly_annotate = annotate.instance() annotated = poly_annotate(poly, annotations=['Value'], vertex_annotations=['Height']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 with option_state(obj): --> 258 output = layout_display(�
unit:test-310:macos-latest: examples/user_guide/Projections.ipynb#L1
examples/user_guide/Projections.ipynb::Cell 3 Notebook cell execution failed Cell 3: Cell execution caused an exception Input: (features * cities_lonlat * cities_mercator).options( opts.Points(projection=crs.Mollweide(), width=800, height=400, size=12, color='black')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj) 256 elif �[3
unit:test-310:macos-latest: examples/user_guide/Geometries.ipynb#L1
examples/user_guide/Geometries.ipynb::Cell 3 Notebook cell execution failed Cell 3: Cell execution caused an exception Input: gv.output(backend='bokeh') (gf.ocean * gf.land.options(scale='110m', global_extent=True) * gv.Feature(graticules, group='Lines') + gf.ocean * gf.land.options(scale='50m', global_extent=True) * gv.Feature(graticules, group='Lines')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 with option_state(obj): --> 258 output = layout_display�[49
unit:test-310:macos-latest: examples/user_guide/Working_with_Bokeh.ipynb#L1
examples/user_guide/Working_with_Bokeh.ipynb::Cell 2 Notebook cell execution failed Cell 2: Cell execution caused an exception Input: gts.EsriImagery.opts(width=600, height=570, global_extent=True) * gts.StamenLabels.opts(level='annotation') Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj) 256 elif isinstance(obj, (La
unit:test-310:macos-latest: examples/user_guide/Working_with_Bokeh.ipynb#L1
examples/user_guide/Working_with_Bokeh.ipynb::Cell 6 Notebook cell execution failed Cell 6: Cell execution caused an exception Input: points = population.to(gv.Points, ['Longitude', 'Latitude'], ['Population', 'City', 'Country']) (gts.OSM * points).opts( opts.Points(width=600, height=350, tools=['hover'], size=np.sqrt(dim('Population'))*0.005, color='Population', cmap='viridis')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:261, in display(obj, raw_output, **kwargs) 259 elif isinstance(obj, (HoloMap, DynamicMap)): 260 with option_state(obj): --> 261 output
unit:test-310:macos-latest: examples/user_guide/Geometries.ipynb#L1
examples/user_guide/Geometries.ipynb::Cell 7 Notebook cell execution failed Cell 7: Cell execution caused an exception Input: australia = gv.Shape(land_geoms[21]) alice_springs = gv.Text(133.870,-21.5, 'Alice Springs') australia * gv.Points([(133.870,-23.700)]).opts(color='black', width=400) * alice_springs Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-310/lib/python3.10/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj)
unit:test-312:ubuntu-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 1 Notebook cell execution failed Cell 1: Cell execution caused an exception Input: tiles = gv.tile_sources.OSM() sample_points = dict( Longitude = [-10131185, -10131943, -10131766, -10131032, -10129766], Latitude = [ 3805587, 3803182, 3801073, 3799778, 3798878]) points = gv.Points(sample_points, crs=ccrs.GOOGLE_MERCATOR).opts( size=10, line_color='black', responsive=True, min_height=600 ) point_annotate = annotate.instance() annotated = point_annotate(points, annotations=['Size']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 �[38;5
unit:test-312:ubuntu-latest: examples/user_guide/Projections.ipynb#L1
examples/user_guide/Projections.ipynb::Cell 1 Notebook cell execution failed Cell 1: Cell execution caused an exception Input: nyc, beijing = (-74.0, 40.7, 'NYC'), (116.4, 39.9, 'Beijing') london = (14471.53, 6712008., 'London') cities_lonlat = gv.Points([nyc, beijing], vdims='City') cities_mercator = gv.Points([london], crs=crs.GOOGLE_MERCATOR, vdims='City') (gv.tile_sources.OSM * cities_lonlat * cities_mercator).opts( opts.Points(global_extent=True, width=500, height=475, size=12, color='black')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableE
unit:test-312:ubuntu-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 4 Notebook cell execution failed Cell 4: Cell execution caused an exception Input: rectangles = gv.Rectangles([(0, 0, 10, 10)]) box_annotate = annotate.instance() annotated = box_annotate(rectangles, annotations=['Label'], name='Rectangles') annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 with option_state(obj): --> 258 output = layout_display(obj) �
unit:test-312:ubuntu-latest: examples/user_guide/Working_with_Bokeh.ipynb#L1
examples/user_guide/Working_with_Bokeh.ipynb::Cell 2 Notebook cell execution failed Cell 2: Cell execution caused an exception Input: gts.EsriImagery.opts(width=600, height=570, global_extent=True) * gts.StamenLabels.opts(level='annotation') Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj) 256 elif isinstance(obj, (La
unit:test-312:ubuntu-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 7 Notebook cell execution failed Cell 7: Cell execution caused an exception Input: sample_poly=dict( Longitude = [-10114986, -10123906, -10130333, -10121522, -10129889, -10122959], Latitude = [ 3806790, 3812413, 3807530, 3805407, 3798394, 3796693]) path = gv.Path([sample_poly], crs=ccrs.GOOGLE_MERCATOR).opts( line_width=2, color='black', responsive=True ) path_annotate = annotate.instance() annotated = path_annotate(path, vertex_annotations=['Height']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif �[38;5;
unit:test-312:ubuntu-latest: examples/user_guide/Annotators.ipynb#L1
examples/user_guide/Annotators.ipynb::Cell 10 Notebook cell execution failed Cell 10: Cell execution caused an exception Input: poly = gv.Polygons([sample_poly], crs=ccrs.GOOGLE_MERCATOR) poly_annotate = annotate.instance() annotated = poly_annotate(poly, annotations=['Value'], vertex_annotations=['Height']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 with option_state(obj): --> 258 output = layout_display(�
unit:test-312:ubuntu-latest: examples/user_guide/Working_with_Bokeh.ipynb#L1
examples/user_guide/Working_with_Bokeh.ipynb::Cell 6 Notebook cell execution failed Cell 6: Cell execution caused an exception Input: points = population.to(gv.Points, ['Longitude', 'Latitude'], ['Population', 'City', 'Country']) (gts.OSM * points).opts( opts.Points(width=600, height=350, tools=['hover'], size=np.sqrt(dim('Population'))*0.005, color='Population', cmap='viridis')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:261, in display(obj, raw_output, **kwargs) 259 elif isinstance(obj, (HoloMap, DynamicMap)): 260 with option_state(obj): --> 261 output
unit:test-312:ubuntu-latest: examples/user_guide/Projections.ipynb#L1
examples/user_guide/Projections.ipynb::Cell 3 Notebook cell execution failed Cell 3: Cell execution caused an exception Input: (features * cities_lonlat * cities_mercator).options( opts.Points(projection=crs.Mollweide(), width=800, height=400, size=12, color='black')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj) 256 elif �[3
unit:test-312:ubuntu-latest: examples/user_guide/Working_with_Bokeh.ipynb#L1
examples/user_guide/Working_with_Bokeh.ipynb::Cell 9 Notebook cell execution failed Cell 9: Cell execution caused an exception Input: dataset = xr.open_dataset('../data/pre-industrial.nc') air_temperature = gv.Dataset(dataset, ['longitude', 'latitude'], 'air_temperature', group='Pre-industrial air temperature') air_temperature.to.image().opts(tools=['hover'], cmap='viridis') *\ gf.coastline().opts(line_color='black', width=600, height=500) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 �[38;5
unit:test-312:ubuntu-latest: examples/gallery/bokeh/airport_graph.ipynb#L1
examples/gallery/bokeh/airport_graph.ipynb::Cell 2 Notebook cell execution failed Cell 2: Cell execution caused an exception Input: (tiles * busiest_airports).opts( opts.Graph(edge_selection_line_color='black', edge_hover_line_color='red', edge_line_width=1, edge_line_alpha=0.01, edge_nonselection_line_alpha=0.01, width=800, height=600)) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/core/options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File ~/work/geoviews/geoviews/.pixi/envs/test-312/lib/python3.12/site-packages/holoviews/ipython/display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = ele
unit:test-310:windows-latest: examples\user_guide\Annotators.ipynb#L1
examples\user_guide\Annotators.ipynb::Cell 1 Notebook cell execution failed Cell 1: Cell execution caused an exception Input: tiles = gv.tile_sources.OSM() sample_points = dict( Longitude = [-10131185, -10131943, -10131766, -10131032, -10129766], Latitude = [ 3805587, 3803182, 3801073, 3799778, 3798878]) points = gv.Points(sample_points, crs=ccrs.GOOGLE_MERCATOR).opts( size=10, line_color='black', responsive=True, min_height=600 ) point_annotate = annotate.instance() annotated = point_annotate(points, annotations=['Size']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLay
unit:test-310:windows-latest: examples\user_guide\Projections.ipynb#L1
examples\user_guide\Projections.ipynb::Cell 1 Notebook cell execution failed Cell 1: Cell execution caused an exception Input: nyc, beijing = (-74.0, 40.7, 'NYC'), (116.4, 39.9, 'Beijing') london = (14471.53, 6712008., 'London') cities_lonlat = gv.Points([nyc, beijing], vdims='City') cities_mercator = gv.Points([london], crs=crs.GOOGLE_MERCATOR, vdims='City') (gv.tile_sources.OSM * cities_lonlat * cities_mercator).opts( opts.Points(global_extent=True, width=500, height=475, size=12, color='black')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option
unit:test-310:windows-latest: examples\user_guide\Annotators.ipynb#L1
examples\user_guide\Annotators.ipynb::Cell 4 Notebook cell execution failed Cell 4: Cell execution caused an exception Input: rectangles = gv.Rectangles([(0, 0, 10, 10)]) box_annotate = annotate.instance() annotated = box_annotate(rectangles, annotations=['Label'], name='Rectangles') annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 with option_state(obj): --> 258 output = layout_display(obj) 259 elif isinstance�
unit:test-310:windows-latest: examples\user_guide\Annotators.ipynb#L1
examples\user_guide\Annotators.ipynb::Cell 7 Notebook cell execution failed Cell 7: Cell execution caused an exception Input: sample_poly=dict( Longitude = [-10114986, -10123906, -10130333, -10121522, -10129889, -10122959], Latitude = [ 3806790, 3812413, 3807530, 3805407, 3798394, 3796693]) path = gv.Path([sample_poly], crs=ccrs.GOOGLE_MERCATOR).opts( line_width=2, color='black', responsive=True ) path_annotate = annotate.instance() annotated = path_annotate(path, vertex_annotations=['Height']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): �[0;3
unit:test-310:windows-latest: examples\user_guide\Working_with_Bokeh.ipynb#L1
examples\user_guide\Working_with_Bokeh.ipynb::Cell 2 Notebook cell execution failed Cell 2: Cell execution caused an exception Input: gts.EsriImagery.opts(width=600, height=570, global_extent=True) * gts.StamenLabels.opts(level='annotation') Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 �[38;5;28
unit:test-310:windows-latest: examples\user_guide\Annotators.ipynb#L1
examples\user_guide\Annotators.ipynb::Cell 10 Notebook cell execution failed Cell 10: Cell execution caused an exception Input: poly = gv.Polygons([sample_poly], crs=ccrs.GOOGLE_MERCATOR) poly_annotate = annotate.instance() annotated = poly_annotate(poly, annotations=['Value'], vertex_annotations=['Height']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 with option_state(obj): --> 258 output = layout_display(obj) 259 elif�[39;
unit:test-310:windows-latest: examples\user_guide\Working_with_Bokeh.ipynb#L1
examples\user_guide\Working_with_Bokeh.ipynb::Cell 6 Notebook cell execution failed Cell 6: Cell execution caused an exception Input: points = population.to(gv.Points, ['Longitude', 'Latitude'], ['Population', 'City', 'Country']) (gts.OSM * points).opts( opts.Points(width=600, height=350, tools=['hover'], size=np.sqrt(dim('Population'))*0.005, color='Population', cmap='viridis')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:261, in display(obj, raw_output, **kwargs) 259 elif isinstance(obj, (HoloMap, DynamicMap)): 260 with option_state(obj): --> 261 output = map_display(obj) �
unit:test-310:windows-latest: examples\user_guide\Projections.ipynb#L1
examples\user_guide\Projections.ipynb::Cell 3 Notebook cell execution failed Cell 3: Cell execution caused an exception Input: (features * cities_lonlat * cities_mercator).options( opts.Points(projection=crs.Mollweide(), width=800, height=400, size=12, color='black')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): �
unit:test-310:windows-latest: examples\user_guide\Working_with_Bokeh.ipynb#L1
examples\user_guide\Working_with_Bokeh.ipynb::Cell 9 Notebook cell execution failed Cell 9: Cell execution caused an exception Input: dataset = xr.open_dataset('../data/pre-industrial.nc') air_temperature = gv.Dataset(dataset, ['longitude', 'latitude'], 'air_temperature', group='Pre-industrial air temperature') air_temperature.to.image().opts(tools=['hover'], cmap='viridis') *\ gf.coastline().opts(line_color='black', width=600, height=500) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255
unit:test-310:windows-latest: examples\gallery\bokeh\airport_graph.ipynb#L1
examples\gallery\bokeh\airport_graph.ipynb::Cell 2 Notebook cell execution failed Cell 2: Cell execution caused an exception Input: (tiles * busiest_airports).opts( opts.Graph(edge_selection_line_color='black', edge_hover_line_color='red', edge_line_width=1, edge_line_alpha=0.01, edge_nonselection_line_alpha=0.01, width=800, height=600)) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-310\lib\site-packages\holoviews\ipython\display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj) 2
unit:test-312:windows-latest: examples\user_guide\Annotators.ipynb#L1
examples\user_guide\Annotators.ipynb::Cell 1 Notebook cell execution failed Cell 1: Cell execution caused an exception Input: tiles = gv.tile_sources.OSM() sample_points = dict( Longitude = [-10131185, -10131943, -10131766, -10131032, -10129766], Latitude = [ 3805587, 3803182, 3801073, 3799778, 3798878]) points = gv.Points(sample_points, crs=ccrs.GOOGLE_MERCATOR).opts( size=10, line_color='black', responsive=True, min_height=600 ) point_annotate = annotate.instance() annotated = point_annotate(points, annotations=['Size']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLay
unit:test-312:windows-latest: examples\user_guide\Projections.ipynb#L1
examples\user_guide\Projections.ipynb::Cell 1 Notebook cell execution failed Cell 1: Cell execution caused an exception Input: nyc, beijing = (-74.0, 40.7, 'NYC'), (116.4, 39.9, 'Beijing') london = (14471.53, 6712008., 'London') cities_lonlat = gv.Points([nyc, beijing], vdims='City') cities_mercator = gv.Points([london], crs=crs.GOOGLE_MERCATOR, vdims='City') (gv.tile_sources.OSM * cities_lonlat * cities_mercator).opts( opts.Points(global_extent=True, width=500, height=475, size=12, color='black')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option
unit:test-312:windows-latest: examples\user_guide\Annotators.ipynb#L1
examples\user_guide\Annotators.ipynb::Cell 4 Notebook cell execution failed Cell 4: Cell execution caused an exception Input: rectangles = gv.Rectangles([(0, 0, 10, 10)]) box_annotate = annotate.instance() annotated = box_annotate(rectangles, annotations=['Label'], name='Rectangles') annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 with option_state(obj): --> 258 output = layout_display(obj) 259 elif isinstance�
unit:test-312:windows-latest: examples\user_guide\Working_with_Bokeh.ipynb#L1
examples\user_guide\Working_with_Bokeh.ipynb::Cell 2 Notebook cell execution failed Cell 2: Cell execution caused an exception Input: gts.EsriImagery.opts(width=600, height=570, global_extent=True) * gts.StamenLabels.opts(level='annotation') Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 �[38;5;28
unit:test-312:windows-latest: examples\user_guide\Annotators.ipynb#L1
examples\user_guide\Annotators.ipynb::Cell 7 Notebook cell execution failed Cell 7: Cell execution caused an exception Input: sample_poly=dict( Longitude = [-10114986, -10123906, -10130333, -10121522, -10129889, -10122959], Latitude = [ 3806790, 3812413, 3807530, 3805407, 3798394, 3796693]) path = gv.Path([sample_poly], crs=ccrs.GOOGLE_MERCATOR).opts( line_width=2, color='black', responsive=True ) path_annotate = annotate.instance() annotated = path_annotate(path, vertex_annotations=['Height']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): �[0;3
unit:test-312:windows-latest: examples\user_guide\Annotators.ipynb#L1
examples\user_guide\Annotators.ipynb::Cell 10 Notebook cell execution failed Cell 10: Cell execution caused an exception Input: poly = gv.Polygons([sample_poly], crs=ccrs.GOOGLE_MERCATOR) poly_annotate = annotate.instance() annotated = poly_annotate(poly, annotations=['Value'], vertex_annotations=['Height']) annotate.compose(tiles, annotated) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:258, in display(obj, raw_output, **kwargs) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): 257 with option_state(obj): --> 258 output = layout_display(obj) 259 elif�[39;
unit:test-312:windows-latest: examples\user_guide\Working_with_Bokeh.ipynb#L1
examples\user_guide\Working_with_Bokeh.ipynb::Cell 6 Notebook cell execution failed Cell 6: Cell execution caused an exception Input: points = population.to(gv.Points, ['Longitude', 'Latitude'], ['Population', 'City', 'Country']) (gts.OSM * points).opts( opts.Points(width=600, height=350, tools=['hover'], size=np.sqrt(dim('Population'))*0.005, color='Population', cmap='viridis')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:261, in display(obj, raw_output, **kwargs) 259 elif isinstance(obj, (HoloMap, DynamicMap)): 260 with option_state(obj): --> 261 output = map_display(obj) �
unit:test-312:windows-latest: examples\user_guide\Projections.ipynb#L1
examples\user_guide\Projections.ipynb::Cell 3 Notebook cell execution failed Cell 3: Cell execution caused an exception Input: (features * cities_lonlat * cities_mercator).options( opts.Points(projection=crs.Mollweide(), width=800, height=400, size=12, color='black')) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj) 256 elif isinstance(obj, (Layout, NdLayout, AdjointLayout)): �
unit:test-312:windows-latest: examples\user_guide\Working_with_Bokeh.ipynb#L1
examples\user_guide\Working_with_Bokeh.ipynb::Cell 9 Notebook cell execution failed Cell 9: Cell execution caused an exception Input: dataset = xr.open_dataset('../data/pre-industrial.nc') air_temperature = gv.Dataset(dataset, ['longitude', 'latitude'], 'air_temperature', group='Pre-industrial air temperature') air_temperature.to.image().opts(tools=['hover'], cmap='viridis') *\ gf.coastline().opts(line_color='black', width=600, height=500) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255
unit:test-312:windows-latest: examples\gallery\bokeh\airport_graph.ipynb#L1
examples\gallery\bokeh\airport_graph.ipynb::Cell 2 Notebook cell execution failed Cell 2: Cell execution caused an exception Input: (tiles * busiest_airports).opts( opts.Graph(edge_selection_line_color='black', edge_hover_line_color='red', edge_line_width=1, edge_line_alpha=0.01, edge_nonselection_line_alpha=0.01, width=800, height=600)) Traceback: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\IPython\core\formatters.py:977, in MimeBundleFormatter.__call__(self, obj, include, exclude) 974 method = get_real_method(obj, self.print_method) 976 if method is not None: --> 977 return method(include=include, exclude=exclude) 978 return None 979 else: File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\dimension.py:1275, in Dimensioned._repr_mimebundle_(self, include, exclude) 1268 def _repr_mimebundle_(self, include=None, exclude=None): 1269 """ 1270 Resolves the class hierarchy for the class rendering the 1271 object using any display hooks registered on Store.display 1272 hooks. The output of all registered display_hooks is then 1273 combined and returned. 1274 """ -> 1275 return Store.render(self) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\core\options.py:1423, in Store.render(cls, obj) 1421 data, metadata = {}, {} 1422 for hook in hooks: -> 1423 ret = hook(obj) 1424 if ret is None: 1425 continue File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:287, in pprint_display(obj) 285 if not ip.display_formatter.formatters['text/plain'].pprint: 286 return None --> 287 return display(obj, raw_output=True) File D:\a\geoviews\geoviews\.pixi\envs\test-312\Lib\site-packages\holoviews\ipython\display_hooks.py:255, in display(obj, raw_output, **kwargs) 253 elif isinstance(obj, (CompositeOverlay, ViewableElement)): 254 with option_state(obj): --> 255 output = element_display(obj) 2
result:test
Process completed with exit code 1.

Artifacts

Produced during runtime
Name Size
pixi-lock
227 KB