├── .deepsource.toml ├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .husky └── pre-commit ├── CHANGELOG.md ├── CNAME ├── LICENSE ├── README.md ├── docs ├── .nojekyll ├── CNAME ├── assets │ ├── highlight.css │ ├── icons.css │ ├── icons.png │ ├── icons@2x.png │ ├── main.js │ ├── search.js │ ├── style.css │ ├── widgets.png │ └── widgets@2x.png ├── classes │ └── HintError.html ├── index.html ├── interfaces │ └── HintIssue.html └── modules.html ├── lib ├── array_is_numbers.ts ├── check_duplicate_keys.ts ├── enforce_bbox.ts ├── enforce_position.ts ├── enforce_position_array.ts ├── enforce_same_position.ts ├── errors.ts ├── forbid_confusing_properties.ts ├── get_array.ts ├── get_member_value.ts ├── get_object.ts ├── get_type.ts ├── index.ts └── types.ts ├── mise.toml ├── package.json ├── pnpm-lock.yaml ├── test ├── bad.test.ts ├── fixture │ ├── bad │ │ ├── bad-duplicate-properties.cli-output-json │ │ ├── bad-duplicate-properties.geojson │ │ ├── bad-featurelist.cli-output-json │ │ ├── bad-featurelist.geojson │ │ ├── bad-json.cli-output-json │ │ ├── bad-json.geojson │ │ ├── bad-object-type.cli-output-json │ │ ├── bad-object-type.geojson │ │ ├── bad-polygonloop.cli-output-json │ │ ├── bad-polygonloop.geojson │ │ ├── bad-properties-as-array.cli-output-json │ │ ├── bad-properties-as-array.geojson │ │ ├── badcoord.cli-output-json │ │ ├── badcoord.geojson │ │ ├── badcoordtype.cli-output-json │ │ ├── badcoordtype.geojson │ │ ├── badfeature-no-properties.geojson │ │ ├── badfeature.cli-output-json │ │ ├── badfeature.geojson │ │ ├── badfeatureid.cli-output-json │ │ ├── badfeatureid.geojson │ │ ├── bbox-4or6elements.geojson │ │ ├── bbox-contains-string.geojson │ │ ├── bbox-string.geojson │ │ ├── different-first-last.geojson │ │ ├── different-first-size.geojson │ │ ├── expected_object.geojson │ │ ├── false.geojson │ │ ├── feature_changed_semantics.geojson │ │ ├── featurecollection-obj.geojson │ │ ├── featurecollection-type-case.geojson │ │ ├── featurecollection.geojson │ │ ├── featurecollection_changed_semantics.geojson │ │ ├── geometry_changed_semantics.geojson │ │ ├── geometrycollection_nested.geojson │ │ ├── multiple_problems.geojson │ │ ├── multipoint-multidimension.geojson │ │ ├── multipoint-nocoordinates.geojson │ │ ├── multipoint-nondimension.geojson │ │ ├── nofeaturetype.geojson │ │ ├── notype.geojson │ │ ├── point-labeled-as-a-multipolygon.geojson │ │ ├── point-string.geojson │ │ ├── point-toofew.geojson │ │ ├── point-toomany.geojson │ │ ├── point.geojson │ │ ├── rootstring.geojson │ │ ├── short-line.geojson │ │ ├── short-linearring.geojson │ │ ├── short-multilinestring.geojson │ │ ├── stringcoord.geojson │ │ └── unknowntype.geojson │ └── good │ │ ├── good-feature-with-id.geojson │ │ ├── good-feature-with-string-id.geojson │ │ ├── good-feature.geojson │ │ ├── good-featurecollection-bbox.geojson │ │ ├── good-featurecollection-bbox3d.geojson │ │ ├── good-featurecollection-extensions.geojson │ │ ├── good-featurecollection.geojson │ │ ├── good-geometrycollection.geojson │ │ ├── good-linestring.geojson │ │ ├── good-multilinestring.geojson │ │ ├── good-multipoint.geojson │ │ ├── good-point-3d.geojson │ │ ├── good-point.geojson │ │ ├── good-polygon.geojson │ │ ├── multipolygon.geojson │ │ ├── nullgeometry.geojson │ │ └── nullproperties.geojson ├── good.test.ts └── scavenge.test.ts ├── tsconfig.json ├── typedoc.json └── types └── momoa.d.ts /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | docs/* linguist-generated 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | dist 5 | coverage 6 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | check-geojson.docs.placemark.io 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | check-geojson.docs.placemark.io 2 | -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/docs/assets/icons.css -------------------------------------------------------------------------------- /docs/assets/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/docs/assets/icons.png -------------------------------------------------------------------------------- /docs/assets/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/docs/assets/icons@2x.png -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/assets/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/docs/assets/widgets.png -------------------------------------------------------------------------------- /docs/assets/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/docs/assets/widgets@2x.png -------------------------------------------------------------------------------- /docs/classes/HintError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/docs/classes/HintError.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces/HintIssue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/docs/interfaces/HintIssue.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/docs/modules.html -------------------------------------------------------------------------------- /lib/array_is_numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/lib/array_is_numbers.ts -------------------------------------------------------------------------------- /lib/check_duplicate_keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/lib/check_duplicate_keys.ts -------------------------------------------------------------------------------- /lib/enforce_bbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/lib/enforce_bbox.ts -------------------------------------------------------------------------------- /lib/enforce_position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/lib/enforce_position.ts -------------------------------------------------------------------------------- /lib/enforce_position_array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/lib/enforce_position_array.ts -------------------------------------------------------------------------------- /lib/enforce_same_position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/lib/enforce_same_position.ts -------------------------------------------------------------------------------- /lib/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/lib/errors.ts -------------------------------------------------------------------------------- /lib/forbid_confusing_properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/lib/forbid_confusing_properties.ts -------------------------------------------------------------------------------- /lib/get_array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/lib/get_array.ts -------------------------------------------------------------------------------- /lib/get_member_value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/lib/get_member_value.ts -------------------------------------------------------------------------------- /lib/get_object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/lib/get_object.ts -------------------------------------------------------------------------------- /lib/get_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/lib/get_type.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/lib/types.ts -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/mise.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /test/bad.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/bad.test.ts -------------------------------------------------------------------------------- /test/fixture/bad/bad-duplicate-properties.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/bad-duplicate-properties.cli-output-json -------------------------------------------------------------------------------- /test/fixture/bad/bad-duplicate-properties.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/bad-duplicate-properties.geojson -------------------------------------------------------------------------------- /test/fixture/bad/bad-featurelist.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/bad-featurelist.cli-output-json -------------------------------------------------------------------------------- /test/fixture/bad/bad-featurelist.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/bad-featurelist.geojson -------------------------------------------------------------------------------- /test/fixture/bad/bad-json.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/bad-json.cli-output-json -------------------------------------------------------------------------------- /test/fixture/bad/bad-json.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/bad-json.geojson -------------------------------------------------------------------------------- /test/fixture/bad/bad-object-type.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/bad-object-type.cli-output-json -------------------------------------------------------------------------------- /test/fixture/bad/bad-object-type.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": {} 3 | } 4 | -------------------------------------------------------------------------------- /test/fixture/bad/bad-polygonloop.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/bad-polygonloop.cli-output-json -------------------------------------------------------------------------------- /test/fixture/bad/bad-polygonloop.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/bad-polygonloop.geojson -------------------------------------------------------------------------------- /test/fixture/bad/bad-properties-as-array.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/bad-properties-as-array.cli-output-json -------------------------------------------------------------------------------- /test/fixture/bad/bad-properties-as-array.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/bad-properties-as-array.geojson -------------------------------------------------------------------------------- /test/fixture/bad/badcoord.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/badcoord.cli-output-json -------------------------------------------------------------------------------- /test/fixture/bad/badcoord.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/badcoord.geojson -------------------------------------------------------------------------------- /test/fixture/bad/badcoordtype.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/badcoordtype.cli-output-json -------------------------------------------------------------------------------- /test/fixture/bad/badcoordtype.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/badcoordtype.geojson -------------------------------------------------------------------------------- /test/fixture/bad/badfeature-no-properties.geojson: -------------------------------------------------------------------------------- 1 | { "type": "Feature", "geometry": null } 2 | -------------------------------------------------------------------------------- /test/fixture/bad/badfeature.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/badfeature.cli-output-json -------------------------------------------------------------------------------- /test/fixture/bad/badfeature.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/badfeature.geojson -------------------------------------------------------------------------------- /test/fixture/bad/badfeatureid.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/badfeatureid.cli-output-json -------------------------------------------------------------------------------- /test/fixture/bad/badfeatureid.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/badfeatureid.geojson -------------------------------------------------------------------------------- /test/fixture/bad/bbox-4or6elements.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/bbox-4or6elements.geojson -------------------------------------------------------------------------------- /test/fixture/bad/bbox-contains-string.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/bbox-contains-string.geojson -------------------------------------------------------------------------------- /test/fixture/bad/bbox-string.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/bbox-string.geojson -------------------------------------------------------------------------------- /test/fixture/bad/different-first-last.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/different-first-last.geojson -------------------------------------------------------------------------------- /test/fixture/bad/different-first-size.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/different-first-size.geojson -------------------------------------------------------------------------------- /test/fixture/bad/expected_object.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/expected_object.geojson -------------------------------------------------------------------------------- /test/fixture/bad/false.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/false.geojson -------------------------------------------------------------------------------- /test/fixture/bad/feature_changed_semantics.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/feature_changed_semantics.geojson -------------------------------------------------------------------------------- /test/fixture/bad/featurecollection-obj.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/featurecollection-obj.geojson -------------------------------------------------------------------------------- /test/fixture/bad/featurecollection-type-case.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/featurecollection-type-case.geojson -------------------------------------------------------------------------------- /test/fixture/bad/featurecollection.geojson: -------------------------------------------------------------------------------- 1 | { "type": "FeatureCollection" } 2 | -------------------------------------------------------------------------------- /test/fixture/bad/featurecollection_changed_semantics.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/featurecollection_changed_semantics.geojson -------------------------------------------------------------------------------- /test/fixture/bad/geometry_changed_semantics.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/geometry_changed_semantics.geojson -------------------------------------------------------------------------------- /test/fixture/bad/geometrycollection_nested.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/geometrycollection_nested.geojson -------------------------------------------------------------------------------- /test/fixture/bad/multiple_problems.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/multiple_problems.geojson -------------------------------------------------------------------------------- /test/fixture/bad/multipoint-multidimension.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/multipoint-multidimension.geojson -------------------------------------------------------------------------------- /test/fixture/bad/multipoint-nocoordinates.geojson: -------------------------------------------------------------------------------- 1 | { "type": "MultiPoint" } 2 | -------------------------------------------------------------------------------- /test/fixture/bad/multipoint-nondimension.geojson: -------------------------------------------------------------------------------- 1 | { "type": "MultiPoint", "coordinates": [0,0] } 2 | -------------------------------------------------------------------------------- /test/fixture/bad/nofeaturetype.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/nofeaturetype.geojson -------------------------------------------------------------------------------- /test/fixture/bad/notype.geojson: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /test/fixture/bad/point-labeled-as-a-multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/point-labeled-as-a-multipolygon.geojson -------------------------------------------------------------------------------- /test/fixture/bad/point-string.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/point-string.geojson -------------------------------------------------------------------------------- /test/fixture/bad/point-toofew.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/point-toofew.geojson -------------------------------------------------------------------------------- /test/fixture/bad/point-toomany.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/point-toomany.geojson -------------------------------------------------------------------------------- /test/fixture/bad/point.geojson: -------------------------------------------------------------------------------- 1 | { "type": "Point" } 2 | -------------------------------------------------------------------------------- /test/fixture/bad/rootstring.geojson: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /test/fixture/bad/short-line.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/short-line.geojson -------------------------------------------------------------------------------- /test/fixture/bad/short-linearring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/short-linearring.geojson -------------------------------------------------------------------------------- /test/fixture/bad/short-multilinestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/short-multilinestring.geojson -------------------------------------------------------------------------------- /test/fixture/bad/stringcoord.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/bad/stringcoord.geojson -------------------------------------------------------------------------------- /test/fixture/bad/unknowntype.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FooBar" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixture/good/good-feature-with-id.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/good-feature-with-id.geojson -------------------------------------------------------------------------------- /test/fixture/good/good-feature-with-string-id.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/good-feature-with-string-id.geojson -------------------------------------------------------------------------------- /test/fixture/good/good-feature.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/good-feature.geojson -------------------------------------------------------------------------------- /test/fixture/good/good-featurecollection-bbox.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/good-featurecollection-bbox.geojson -------------------------------------------------------------------------------- /test/fixture/good/good-featurecollection-bbox3d.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/good-featurecollection-bbox3d.geojson -------------------------------------------------------------------------------- /test/fixture/good/good-featurecollection-extensions.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/good-featurecollection-extensions.geojson -------------------------------------------------------------------------------- /test/fixture/good/good-featurecollection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/good-featurecollection.geojson -------------------------------------------------------------------------------- /test/fixture/good/good-geometrycollection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/good-geometrycollection.geojson -------------------------------------------------------------------------------- /test/fixture/good/good-linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/good-linestring.geojson -------------------------------------------------------------------------------- /test/fixture/good/good-multilinestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/good-multilinestring.geojson -------------------------------------------------------------------------------- /test/fixture/good/good-multipoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/good-multipoint.geojson -------------------------------------------------------------------------------- /test/fixture/good/good-point-3d.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/good-point-3d.geojson -------------------------------------------------------------------------------- /test/fixture/good/good-point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/good-point.geojson -------------------------------------------------------------------------------- /test/fixture/good/good-polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/good-polygon.geojson -------------------------------------------------------------------------------- /test/fixture/good/multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/multipolygon.geojson -------------------------------------------------------------------------------- /test/fixture/good/nullgeometry.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/nullgeometry.geojson -------------------------------------------------------------------------------- /test/fixture/good/nullproperties.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/fixture/good/nullproperties.geojson -------------------------------------------------------------------------------- /test/good.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/good.test.ts -------------------------------------------------------------------------------- /test/scavenge.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/test/scavenge.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/typedoc.json -------------------------------------------------------------------------------- /types/momoa.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/placemark/check-geojson/HEAD/types/momoa.d.ts --------------------------------------------------------------------------------