chump.objects.mobject
Data objects extract and store spatial and temporal information of diverse formats,
and convert them into a uniform data abstraction represented as Pandas dataframes
with highly efficient indexing/slicing capability. Three top data classes,
mobject
, chump.objects.mobject2d
, and chump.objects.mobject3d
, are available to
represent data with various degrees of dimensionality.
The mobject
class serves as the root superclass for all other derived subclasses.
Below are some properties that can be set for all the objects in chump
.
time unit for the object. default is "days". If not set, it will use the global setting.
starting date for time related data. The time will be parsed into timestamps using the starting date and time unit. If not set, it will use the global setting.
set the coordinate reference system for the object using EPSG. e.g. epsg = 4326
. If not set, it will use the global setting.
set the coordinate reference system using strings. See details in https://geopandas.org/en/stable/docs/user_guide/projections.html.