You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cannot reproduce it here. Can you please show how are you creating the fc object?
>>> import telluric
>>> from shapely.geometry import Point, Polygon
>>> from telluric import (
... GeoFeature,
... FeatureCollection,
... GeoVector,
... )
>>>
>>> fc = FeatureCollection(
... (
... GeoFeature(GeoVector(Point(0, 0)), {"a": 1}),
... GeoFeature(
... GeoVector(Polygon(((0, 0), (1, 1), (2, 0)))),
... {"b": 2},
... ),
... )
... )
>>> fc._repr_html_()[:25]
/home/denis/satellogic/telluric/telluric/plotting.py:171: UserWarning: Plotting a limited representation of the data, use the .plot() method for further customization
"Plotting a limited representation of the data, use the .plot() method for further customization")
'<div style="width:100%;">'
The text was updated successfully, but these errors were encountered: