A-SW Hub / Repositories
Local Gitea · READ ONLY
← 저장소 Repositories
REPOSITORY

jbnu/spatial-information-db Private

[참조 MVP] 농경지 공간정보 DB — 농경지·장애물 GeoJSON 피처를 경계상자 기준으로 검색하는 경량 저장 모델입니다.

https://git.agrithing.ai/jbnu/spatial-information-db.git
6 commits
1 items · main
·/ tests/component.test.mjs
javascript · 409 B · 6d8f236 Download
import test from 'node:test';import assert from 'node:assert/strict';import { queryFeatures } from '../src/component.mjs';test('filters spatial features by field bounds', () => { const result = queryFeatures([0, 0, 10, 10], [{ id: 'field-1', type: 'field', x: 5, y: 4 }, { id: 'tree-9', type: 'obstacle', x: 15, y: 12 }]); assert.equal(result.count, 1); assert.equal(result.features[0].id, 'field-1'); });