Docs Menu
Docs Home
/
BI 커넥터
/

지리 공간 데이터

이 페이지의 내용

  • 지리 공간 데이터

컬렉션에 2d 또는 2dsphere 지리 공간적 인덱스 이 포함되어 있는 경우 BI Connector는 인덱싱된 필드를 숫자 경도-위도 좌표 배열에 매핑합니다.

다음 collection이 주어집니다:

db.points.createIndex( { pos : "2dsphere" } )
db.points.insertOne({
pos : { type: "Point", coordinates: [ -73.97, 40.77 ] },
name: "Central Park",
category : "Parks"
})

BI Connector는 다음 스키마를 생성합니다.

schema:
- db: test
tables:
- table: points
collection: points
pipeline: []
columns:
- Name: _id
MongoType: bson.ObjectId
SqlName: _id
SqlType: varchar
- Name: category
MongoType: string
SqlName: category
SqlType: varchar
- Name: name
MongoType: string
SqlName: name
SqlType: varchar
- Name: pos.coordinates
MongoType: geo.2darray
SqlName: pos.coordinates
SqlType: numeric[]

BI Connector 가 에서 읽을 때 지리 공간적 필드를 인식하지 못합니다.

돌아가기

"FLUSH SAMPLE"을 사용하여 스키마 데이터 리샘플링

이 페이지의 내용