Release 0.58.0 includes the Earth high-precision boundary PMTiles/MVT pipeline, standardized Earth boundary source collectors, China POV boundary configuration templates, and removal of the legacy low-precision GeoJSON fallback. It also adds Earth news target-location queueing/archive support, fixes datasource task status visibility, documents the Earth surface depth-spacing rules that prevent far-zoom z-fighting snow/black blocks, and updates bilingual operations/developer docs.
49 lines
1.6 KiB
Python
49 lines
1.6 KiB
Python
from app.models.user import User
|
|
from app.models.gpu_cluster import GPUCluster
|
|
from app.models.task import CollectionTask
|
|
from app.models.data_snapshot import DataSnapshot
|
|
from app.models.datasource import DataSource
|
|
from app.models.datasource_config import DataSourceConfig
|
|
from app.models.alert import Alert, AlertSeverity, AlertStatus
|
|
from app.models.bgp_anomaly import BGPAnomaly
|
|
from app.models.bgp_collector_location import BGPCollectorLocation
|
|
from app.models.bgp_incident import BGPIncident
|
|
from app.models.bgp_observation import BGPObservation
|
|
from app.models.compute_center_location import ComputeCenterLocationRecord
|
|
from app.models.system_setting import SystemSetting
|
|
from app.models.playground_session import PlaygroundSession
|
|
from app.models.playground_message import PlaygroundMessage
|
|
from app.models.system_log import SystemLog, AuditLog
|
|
from app.models.vessel import AISConflictRecord, AISRawObservation, AISSourceHealth, VesselPosition, VesselStatic
|
|
from app.models.datasource_mapping import DataSourceMappingTemplate
|
|
from app.models.earth_news import EarthNewsItem
|
|
|
|
__all__ = [
|
|
"User",
|
|
"GPUCluster",
|
|
"CollectionTask",
|
|
"DataSnapshot",
|
|
"DataSource",
|
|
"DataSourceConfig",
|
|
"SystemSetting",
|
|
"Alert",
|
|
"AlertSeverity",
|
|
"AlertStatus",
|
|
"BGPAnomaly",
|
|
"BGPCollectorLocation",
|
|
"BGPIncident",
|
|
"BGPObservation",
|
|
"ComputeCenterLocationRecord",
|
|
"SystemLog",
|
|
"AuditLog",
|
|
"PlaygroundSession",
|
|
"PlaygroundMessage",
|
|
"VesselPosition",
|
|
"VesselStatic",
|
|
"AISRawObservation",
|
|
"AISConflictRecord",
|
|
"AISSourceHealth",
|
|
"DataSourceMappingTemplate",
|
|
"EarthNewsItem",
|
|
]
|