修改为东南天坐标系

This commit is contained in:
2026-01-20 09:49:52 +08:00
parent 9538757047
commit 333fad40ac
7201 changed files with 1030888 additions and 85410 deletions

View File

@@ -40,6 +40,7 @@ from chromadb.api.types import (
Embeddings,
Metadatas,
Documents,
ReadLevel,
Schema,
URIs,
Where,
@@ -432,6 +433,15 @@ class SegmentAPI(ServerAPI):
"Collection forking is not implemented for SegmentAPI"
)
@override
def _get_indexing_status(
self,
collection_id: UUID,
tenant: str = DEFAULT_TENANT,
database: str = DEFAULT_DATABASE,
) -> "IndexingStatus":
raise NotImplementedError("Indexing status is not implemented for SegmentAPI")
@override
def _search(
self,
@@ -439,6 +449,7 @@ class SegmentAPI(ServerAPI):
searches: List[Search],
tenant: str = DEFAULT_TENANT,
database: str = DEFAULT_DATABASE,
read_level: ReadLevel = ReadLevel.INDEX_AND_WAL,
) -> SearchResult:
raise NotImplementedError("Search is not implemented for SegmentAPI")