0.2.21 • Published 8 months ago
@jsse/geobox v0.2.21
@jsse/geobox
geo-json-schemas (and maybe more to come!)
Install
pnpm add @jsse/geobox
# or
npm i @jsse/geobox
# or
yarn add @jsse/geobox
Example (wip)
import {Type } from "@sinclair/typebox";
import * as geobox from "./dist/index.js";
const pointSchemaBabydog = geobox.PointFeature(
Type.Object({ dingo: Type.String() })
);
console.log(JSON.stringify(pointSchemaBabydog, null, 2));
// {
// "type": "object",
// "properties": {
// "type": {
// "const": "Feature",
// "type": "string"
// },
// "id": {
// "anyOf": [
// {
// "type": "string"
// },
// {
// "type": "number"
// }
// ]
// },
// "geometry": {
// "title": "GeoJSON Point",
// "type": "object",
// "properties": {
// "type": {
// "const": "Point",
// "type": "string"
// },
// "coordinates": {
// "title": "GeoJSON coordinate",
// "description": "coordinate: [longitude, latitude] or [longitude, latitude, elevation/z]",
// "anyOf": [
// {
// "title": "GeoJSON coordinate 2d",
// "description": "coordinate: [longitude, latitude]",
// "type": "array",
// "items": [
// {
// "title": "Longitude",
// "description": "longitude",
// "type": "number"
// },
// {
// "title": "Latitude",
// "type": "number"
// }
// ],
// "additionalItems": false,
// "minItems": 2,
// "maxItems": 2
// },
// {
// "title": "GeoJSON coordinate 3d",
// "description": "coordinate: [longitude, latitude, elevation/z]",
// "type": "array",
// "items": [
// {
// "title": "Longitude",
// "description": "longitude",
// "type": "number"
// },
// {
// "title": "Latitude",
// "type": "number"
// },
// {
// "type": "number"
// }
// ],
// "additionalItems": false,
// "minItems": 3,
// "maxItems": 3
// }
// ]
// }
// },
// "required": [
// "type",
// "coordinates"
// ]
// },
// "properties": {
// "type": "object",
// "properties": {
// "dingo": {
// "type": "string"
// }
// },
// "required": [
// "dingo"
// ]
// }
// },
// "required": [
// "type",
// "geometry",
// "properties"
// ]
// }
console.log(JSON.stringify(Type.Strict(pointSchemaBabydog), null, 2));
// {
// "type": "object",
// "properties": {
// "type": {
// "const": "Feature",
// "type": "string"
// },
// "id": {
// "anyOf": [
// {
// "type": "string"
// },
// {
// "type": "number"
// }
// ]
// },
// "geometry": {
// "title": "GeoJSON Point",
// "type": "object",
// "properties": {
// "type": {
// "const": "Point",
// "type": "string"
// },
// "coordinates": {
// "title": "GeoJSON coordinate",
// "description": "coordinate: [longitude, latitude] or [longitude, latitude, elevation/z]",
// "anyOf": [
// {
// "title": "GeoJSON coordinate 2d",
// "description": "coordinate: [longitude, latitude]",
// "type": "array",
// "items": [
// {
// "title": "Longitude",
// "description": "longitude",
// "type": "number"
// },
// {
// "title": "Latitude",
// "type": "number"
// }
// ],
// "additionalItems": false,
// "minItems": 2,
// "maxItems": 2
// },
// {
// "title": "GeoJSON coordinate 3d",
// "description": "coordinate: [longitude, latitude, elevation/z]",
// "type": "array",
// "items": [
// {
// "title": "Longitude",
// "description": "longitude",
// "type": "number"
// },
// {
// "title": "Latitude",
// "type": "number"
// },
// {
// "type": "number"
// }
// ],
// "additionalItems": false,
// "minItems": 3,
// "maxItems": 3
// }
// ]
// }
// },
// "required": [
// "type",
// "coordinates"
// ]
// },
// "properties": {
// "type": "object",
// "properties": {
// "dingo": {
// "type": "string"
// }
// },
// "required": [
// "dingo"
// ]
// }
// },
// "required": [
// "type",
// "geometry",
// "properties"
// ]
// }
0.2.21
8 months ago
0.2.20
8 months ago
0.2.19
8 months ago
0.2.18
8 months ago
0.2.17
8 months ago
0.2.16
9 months ago
0.1.12
1 year ago
0.2.15
11 months ago
0.2.14
11 months ago
0.2.13
11 months ago
0.2.12
11 months ago
0.2.11
11 months ago
0.2.10
11 months ago
0.2.1
1 year ago
0.2.0
1 year ago
0.2.7
1 year ago
0.2.6
1 year ago
0.2.9
12 months ago
0.2.8
1 year ago
0.2.3
1 year ago
0.2.2
1 year ago
0.2.5
1 year ago
0.2.4
1 year ago
0.1.11
1 year ago
0.1.10
1 year ago
0.1.9
1 year ago
0.1.7
1 year ago
0.1.4
1 year ago
0.1.3
1 year ago
0.1.5
1 year ago
0.1.2
1 year ago
0.1.1
1 year ago
0.1.0
1 year ago
0.0.12
2 years ago
0.0.10
2 years ago
0.0.11
2 years ago
0.0.3
2 years ago
0.0.9
2 years ago
0.0.8
2 years ago
0.0.5
2 years ago
0.0.4
2 years ago
0.0.7
2 years ago
0.0.6
2 years ago
0.0.2
2 years ago
0.0.1
2 years ago