Skip to content

Commit 9611581

Browse files
committed
Test files
1 parent bd2e0e4 commit 9611581

12 files changed

+65
-16
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![minzipped](https://img.shields.io/bundlephobia/minzip/geoparquet)](https://www.npmjs.com/package/geoparquet)
77
[![workflow status](https://github.com/hyparam/geoparquet/actions/workflows/ci.yml/badge.svg)](https://github.com/hyparam/geoparquet/actions)
88
[![mit license](https://img.shields.io/badge/License-MIT-orange.svg)](https://opensource.org/licenses/MIT)
9-
![coverage](https://img.shields.io/badge/Coverage-95-darkred)
9+
![coverage](https://img.shields.io/badge/Coverage-97-darkred)
1010

1111
**GeoParquet** provides a pure JavaScript workflow to read and convert [GeoParquet](https://github.com/opengeospatial/geoparquet) files into [GeoJSON](https://datatracker.ietf.org/doc/html/rfc7946). Under the hood, it uses the [hyparquet](https://github.com/hyparam/hyparquet) library for efficient in-browser parquet parsing, enabling minimal overhead and fast loading.
1212

demo/bundle.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/bundle.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/demo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ window.initMap = async function loadGeoParquet() {
1111
})
1212

1313
// URL or path to your GeoParquet file
14-
const parquetUrl = 'examples/polys.parquet'
14+
const parquetUrl = 'demo/polys.parquet'
1515

1616
try {
1717
// Read the GeoParquet file and convert to GeoJSON
File renamed without changes.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
2+
{
3+
"features": [
4+
{
5+
"geometry": {
6+
"coordinates": [
7+
[
8+
30,
9+
10
10+
],
11+
[
12+
10,
13+
30
14+
],
15+
[
16+
40,
17+
40
18+
]
19+
],
20+
"type": "LineString"
21+
},
22+
"properties": {
23+
"col": 0
24+
},
25+
"type": "Feature"
26+
},
27+
{
28+
"geometry": {
29+
"coordinates": [],
30+
"type": "LineString"
31+
},
32+
"properties": {
33+
"col": 1
34+
},
35+
"type": "Feature"
36+
}
37+
],
38+
"type": "FeatureCollection"
39+
}
1.44 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)