keplergl_static(map)
File "/opt/anaconda3/lib/python3.8/site-packages/streamlit_keplergl/__init__.py", line 29, in keplergl_static
html = fig._repr_html_()
File "/opt/anaconda3/lib/python3.8/site-packages/keplergl/keplergl.py", line 170, in _repr_html_
keplergl_data = json.dumps({"config": config_to_add, "data": data_to_add, "options": {"readOnly": read_only, "centerMap": center_map}})
File "/opt/anaconda3/lib/python3.8/json/__init__.py", line 231, in dumps
return _default_encoder.encode(obj)
File "/opt/anaconda3/lib/python3.8/json/encoder.py", line 199, in encode
chunks = self.iterencode(o, _one_shot=True)
File "/opt/anaconda3/lib/python3.8/json/encoder.py", line 257, in iterencode
return _iterencode(o, 0)
File "/opt/anaconda3/lib/python3.8/json/encoder.py", line 179, in default
raise TypeError(f'Object of type {o.__class__.__name__} '
TypeError: Object of type Timestamp is not JSON serializable```
Here are all of the types in my GeoDataFrame:
```TimeUTC datetime64[ns]
AeroscopeID string
DroneType string
Callsign string
FlightID string
Latitude float64
Longitude float64
Altitude float64
HomeLongitude float64
HomeLatitude float64
PilotLongitude float64
PilotLatitude float64
geometry geometry
dtype: object```
There is no "Timestamp" column.
I tried duplicating TimeUTC and converting it to a string with no luck.