Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot load the dataset split (in streaming mode) to extract the first rows.
Error code:   StreamingRowsError
Exception:    CastError
Message:      Couldn't cast
datasetId: string
year: string
boundaryDate: string
sourceUrl: string
license: string
attribution: string
sourceSha256: string
retrievedAt: timestamp[s]
sha256: string
national: struct<path: string, sha256: string, bytes: int64>
  child 0, path: string
  child 1, sha256: string
  child 2, bytes: int64
districts: struct<서울: struct<path: string, sha256: string, bytes: int64>, 부산: struct<path: string, sha2 (... 926 chars omitted)
  child 0, 서울: struct<path: string, sha256: string, bytes: int64>
      child 0, path: string
      child 1, sha256: string
      child 2, bytes: int64
  child 1, 부산: struct<path: string, sha256: string, bytes: int64>
      child 0, path: string
      child 1, sha256: string
      child 2, bytes: int64
  child 2, 대구: struct<path: string, sha256: string, bytes: int64>
      child 0, path: string
      child 1, sha256: string
      child 2, bytes: int64
  child 3, 인천: struct<path: string, sha256: string, bytes: int64>
      child 0, path: string
      child 1, sha256: string
      child 2, bytes: int64
  child 4, 광주: struct<path: string, sha256: string, bytes: int64>
      child 0, path: string
      child 1, sha256: string
      child 2, bytes: int64
  child 5, 대전: struct<path: string, sha256: string, bytes: int64>
      child 0, path: string
      child 1, sha256: string
      child 2, bytes: int64
  child 6, 울산: struct<path: string, sha256: string, bytes: int64>
      child 0, path: string
      child 1, sha256: string
      child 2, bytes: int64
  chi
...
ild 2, bytes: int64
  child 12, 전북: struct<path: string, sha256: string, bytes: int64>
      child 0, path: string
      child 1, sha256: string
      child 2, bytes: int64
  child 13, 전남: struct<path: string, sha256: string, bytes: int64>
      child 0, path: string
      child 1, sha256: string
      child 2, bytes: int64
  child 14, 경북: struct<path: string, sha256: string, bytes: int64>
      child 0, path: string
      child 1, sha256: string
      child 2, bytes: int64
  child 15, 경남: struct<path: string, sha256: string, bytes: int64>
      child 0, path: string
      child 1, sha256: string
      child 2, bytes: int64
  child 16, 제주: struct<path: string, sha256: string, bytes: int64>
      child 0, path: string
      child 1, sha256: string
      child 2, bytes: int64
navigationReviewSha256: string
transformation: string
run: struct<boundaryDate: string, kind: string, mapManifestSha256: string, navigationReviewSha256: string (... 23 chars omitted)
  child 0, boundaryDate: string
  child 1, kind: string
  child 2, mapManifestSha256: string
  child 3, navigationReviewSha256: string
  child 4, sourceSha256: string
schemaVersion: int64
files: list<item: struct<bytes: int64, layer: string, object: string, path: string, sha256: string>>
  child 0, item: struct<bytes: int64, layer: string, object: string, path: string, sha256: string>
      child 0, bytes: int64
      child 1, layer: string
      child 2, object: string
      child 3, path: string
      child 4, sha256: string
to
{'datasetId': Value('string'), 'files': List({'bytes': Value('int64'), 'layer': Value('string'), 'object': Value('string'), 'path': Value('string'), 'sha256': Value('string')}), 'run': {'boundaryDate': Value('string'), 'kind': Value('string'), 'mapManifestSha256': Value('string'), 'navigationReviewSha256': Value('string'), 'sourceSha256': Value('string')}, 'schemaVersion': Value('int64')}
because column names don't match
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/utils.py", line 147, in get_rows_or_raise
                  return get_rows(
                      dataset=dataset,
                  ...<4 lines>...
                      column_names=column_names,
                  )
                File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
                  return func(*args, **kwargs)
                File "/src/services/worker/src/worker/utils.py", line 127, in get_rows
                  rows_plus_one = list(itertools.islice(safe_iter(ds, dataset=dataset), rows_max_number + 1))
                File "/src/services/worker/src/worker/utils.py", line 483, in safe_iter
                  yield from ds.decode(False) if ds.features else ds
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2840, in __iter__
                  for key, example in ex_iterable:
                                      ^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2373, in __iter__
                  for key, pa_table in self._iter_arrow():
                                       ~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2398, in _iter_arrow
                  for key, pa_table in self.ex_iterable._iter_arrow():
                                       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 536, in _iter_arrow
                  for key, pa_table in iterator:
                                       ^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 419, in _iter_arrow
                  for key, pa_table in self.generate_tables_fn(**gen_kwags):
                                       ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 343, in _generate_tables
                  self._cast_table(pa_table, json_field_paths=json_field_paths),
                  ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 132, in _cast_table
                  pa_table = table_cast(pa_table, self.info.features.arrow_schema)
                File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2378, in table_cast
                  return cast_table_to_schema(table, schema)
                File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2306, in cast_table_to_schema
                  raise CastError(
                  ...<3 lines>...
                  )
              datasets.table.CastError: Couldn't cast
              datasetId: string
              year: string
              boundaryDate: string
              sourceUrl: string
              license: string
              attribution: string
              sourceSha256: string
              retrievedAt: timestamp[s]
              sha256: string
              national: struct<path: string, sha256: string, bytes: int64>
                child 0, path: string
                child 1, sha256: string
                child 2, bytes: int64
              districts: struct<서울: struct<path: string, sha256: string, bytes: int64>, 부산: struct<path: string, sha2 (... 926 chars omitted)
                child 0, 서울: struct<path: string, sha256: string, bytes: int64>
                    child 0, path: string
                    child 1, sha256: string
                    child 2, bytes: int64
                child 1, 부산: struct<path: string, sha256: string, bytes: int64>
                    child 0, path: string
                    child 1, sha256: string
                    child 2, bytes: int64
                child 2, 대구: struct<path: string, sha256: string, bytes: int64>
                    child 0, path: string
                    child 1, sha256: string
                    child 2, bytes: int64
                child 3, 인천: struct<path: string, sha256: string, bytes: int64>
                    child 0, path: string
                    child 1, sha256: string
                    child 2, bytes: int64
                child 4, 광주: struct<path: string, sha256: string, bytes: int64>
                    child 0, path: string
                    child 1, sha256: string
                    child 2, bytes: int64
                child 5, 대전: struct<path: string, sha256: string, bytes: int64>
                    child 0, path: string
                    child 1, sha256: string
                    child 2, bytes: int64
                child 6, 울산: struct<path: string, sha256: string, bytes: int64>
                    child 0, path: string
                    child 1, sha256: string
                    child 2, bytes: int64
                chi
              ...
              ild 2, bytes: int64
                child 12, 전북: struct<path: string, sha256: string, bytes: int64>
                    child 0, path: string
                    child 1, sha256: string
                    child 2, bytes: int64
                child 13, 전남: struct<path: string, sha256: string, bytes: int64>
                    child 0, path: string
                    child 1, sha256: string
                    child 2, bytes: int64
                child 14, 경북: struct<path: string, sha256: string, bytes: int64>
                    child 0, path: string
                    child 1, sha256: string
                    child 2, bytes: int64
                child 15, 경남: struct<path: string, sha256: string, bytes: int64>
                    child 0, path: string
                    child 1, sha256: string
                    child 2, bytes: int64
                child 16, 제주: struct<path: string, sha256: string, bytes: int64>
                    child 0, path: string
                    child 1, sha256: string
                    child 2, bytes: int64
              navigationReviewSha256: string
              transformation: string
              run: struct<boundaryDate: string, kind: string, mapManifestSha256: string, navigationReviewSha256: string (... 23 chars omitted)
                child 0, boundaryDate: string
                child 1, kind: string
                child 2, mapManifestSha256: string
                child 3, navigationReviewSha256: string
                child 4, sourceSha256: string
              schemaVersion: int64
              files: list<item: struct<bytes: int64, layer: string, object: string, path: string, sha256: string>>
                child 0, item: struct<bytes: int64, layer: string, object: string, path: string, sha256: string>
                    child 0, bytes: int64
                    child 1, layer: string
                    child 2, object: string
                    child 3, path: string
                    child 4, sha256: string
              to
              {'datasetId': Value('string'), 'files': List({'bytes': Value('int64'), 'layer': Value('string'), 'object': Value('string'), 'path': Value('string'), 'sha256': Value('string')}), 'run': {'boundaryDate': Value('string'), 'kind': Value('string'), 'mapManifestSha256': Value('string'), 'navigationReviewSha256': Value('string'), 'sourceSha256': Value('string')}, 'schemaVersion': Value('int64')}
              because column names don't match

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

SGIS 기준연도별 통계지역 경계

국가데이터처 SGIS의 기준연도별 행정구역 경계다. 공공데이터포털의 공개 경계 파일과 공식 지도 JSON API를 별도 리소스로 기록한다. 통계지역 코드·명칭·경계를 제공하며 법정동코드나 지방재정 코드와 동일하다고 간주하지 않는다.

출처: https://sgis.mods.go.kr/view/map/interactiveMap/mainIndexView

이용 조건: 공공데이터포털 15129688의 portalBoundaryFiles는 이용허락범위 제한 없음이다. SGIS 화면 API의 hadmarea·nationalBoundary에는 이 조건을 적용하지 않으며 별도 검토 대상이다.

manifest.json은 현재 검증된 파일의 계층·원래 경로·SHA-256·크기·불변 객체 경로를 제공한다. 같은 commit revision으로 manifest와 객체를 내려받고 해시를 검증한다. 예산현액과 지출액은 합산하지 않는다.

Downloads last month
51