├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin ├── HELP.md └── geojsonhint ├── lib ├── index.js ├── object.js └── rhr.js ├── package.json └── test ├── data ├── bad │ ├── bad-duplicate-properties.cli-output-json │ ├── bad-duplicate-properties.cli-output-pretty │ ├── bad-duplicate-properties.geojson │ ├── bad-duplicate-properties.result │ ├── bad-duplicate-properties.result-object │ ├── bad-feature-with-number-id.result │ ├── bad-featurelist.cli-output-json │ ├── bad-featurelist.cli-output-pretty │ ├── bad-featurelist.geojson │ ├── bad-featurelist.result │ ├── bad-featurelist.result-object │ ├── bad-json.cli-output-json │ ├── bad-json.cli-output-pretty │ ├── bad-json.geojson │ ├── bad-json.result │ ├── bad-json.result-object │ ├── bad-object-type.cli-output-json │ ├── bad-object-type.cli-output-pretty │ ├── bad-object-type.geojson │ ├── bad-object-type.result │ ├── bad-object-type.result-object │ ├── bad-polygon-interiorring-rhr.cli-output-json │ ├── bad-polygon-interiorring-rhr.cli-output-pretty │ ├── bad-polygon-interiorring-rhr.geojson │ ├── bad-polygon-interiorring-rhr.result │ ├── bad-polygon-interiorring-rhr.result-object │ ├── bad-polygonloop.cli-output-json │ ├── bad-polygonloop.cli-output-pretty │ ├── bad-polygonloop.geojson │ ├── bad-polygonloop.result │ ├── bad-polygonloop.result-object │ ├── bad-properties-as-array.cli-output-json │ ├── bad-properties-as-array.cli-output-pretty │ ├── bad-properties-as-array.geojson │ ├── bad-properties-as-array.result │ ├── bad-properties-as-array.result-object │ ├── badcoord.cli-output-json │ ├── badcoord.cli-output-pretty │ ├── badcoord.geojson │ ├── badcoord.result │ ├── badcoord.result-object │ ├── badcoordtype.cli-output-json │ ├── badcoordtype.cli-output-pretty │ ├── badcoordtype.geojson │ ├── badcoordtype.result │ ├── badcoordtype.result-object │ ├── badfeature.cli-output-json │ ├── badfeature.cli-output-pretty │ ├── badfeature.geojson │ ├── badfeature.result │ ├── badfeature.result-object │ ├── badfeatureid.cli-output-json │ ├── badfeatureid.cli-output-pretty │ ├── badfeatureid.geojson │ ├── badfeatureid.result │ ├── badfeatureid.result-object │ ├── bbox-4or6elements.cli-output-pretty │ ├── bbox-4or6elements.geojson │ ├── bbox-4or6elements.result │ ├── bbox-4or6elements.result-object │ ├── bbox-contains-string.cli-output-pretty │ ├── bbox-contains-string.geojson │ ├── bbox-contains-string.result │ ├── bbox-contains-string.result-object │ ├── bbox-string.cli-output-pretty │ ├── bbox-string.geojson │ ├── bbox-string.result │ ├── bbox-string.result-object │ ├── different-first-last.cli-output-pretty │ ├── different-first-last.geojson │ ├── different-first-last.result │ ├── different-first-last.result-object │ ├── different-first-size.cli-output-pretty │ ├── different-first-size.geojson │ ├── different-first-size.result │ ├── different-first-size.result-object │ ├── excessive_precision_truncated.cli-output-pretty │ ├── excessive_precision_truncated.geojson │ ├── excessive_precision_truncated.result │ ├── excessive_precision_truncated.result-object │ ├── expected_object.cli-output-pretty │ ├── expected_object.geojson │ ├── expected_object.result │ ├── expected_object.result-object │ ├── false.cli-output-pretty │ ├── false.geojson │ ├── false.result │ ├── false.result-object │ ├── feature_changed_semantics.cli-output-pretty │ ├── feature_changed_semantics.geojson │ ├── feature_changed_semantics.result │ ├── feature_changed_semantics.result-object │ ├── featurecollection-obj.cli-output-pretty │ ├── featurecollection-obj.geojson │ ├── featurecollection-obj.result │ ├── featurecollection-obj.result-object │ ├── featurecollection-type-case.cli-output-pretty │ ├── featurecollection-type-case.geojson │ ├── featurecollection-type-case.result │ ├── featurecollection-type-case.result-object │ ├── featurecollection.geojson │ ├── featurecollection.result │ ├── featurecollection.result-object │ ├── featurecollection_changed_semantics.geojson │ ├── featurecollection_changed_semantics.result │ ├── featurecollection_changed_semantics.result-object │ ├── geometry_changed_semantics.geojson │ ├── geometry_changed_semantics.result │ ├── geometry_changed_semantics.result-object │ ├── geometrycollection_nested.geojson │ ├── geometrycollection_nested.result │ ├── geometrycollection_nested.result-object │ ├── geometrycollection_single.geojson │ ├── geometrycollection_single.result │ ├── geometrycollection_single.result-object │ ├── multiple_problems.geojson │ ├── multiple_problems.result │ ├── multiple_problems.result-object │ ├── multipoint-multidimension.geojson │ ├── multipoint-multidimension.result │ ├── multipoint-multidimension.result-object │ ├── multipoint-nondimension.geojson │ ├── multipoint-nondimension.result │ ├── multipoint-nondimension.result-object │ ├── nofeaturetype.geojson │ ├── nofeaturetype.result │ ├── nofeaturetype.result-object │ ├── notype.geojson │ ├── notype.result │ ├── notype.result-object │ ├── point-labeled-as-a-multipolygon.geojson │ ├── point-labeled-as-a-multipolygon.result │ ├── point-labeled-as-a-multipolygon.result-object │ ├── point-string.geojson │ ├── point-string.result │ ├── point-string.result-object │ ├── point-toofew.geojson │ ├── point-toofew.result │ ├── point-toofew.result-object │ ├── point-toomany.geojson │ ├── point-toomany.result │ ├── point-toomany.result-object │ ├── point.geojson │ ├── point.result │ ├── point.result-object │ ├── polygon_winding_order.geojson │ ├── polygon_winding_order.result │ ├── polygon_winding_order.result-object │ ├── rootstring.geojson │ ├── rootstring.result │ ├── rootstring.result-object │ ├── short-line.geojson │ ├── short-line.result │ ├── short-line.result-object │ ├── short-linearring.geojson │ ├── short-linearring.result │ ├── short-linearring.result-object │ ├── short-multilinestring.geojson │ ├── short-multilinestring.result │ ├── short-multilinestring.result-object │ ├── stringcoord.geojson │ ├── stringcoord.result │ ├── stringcoord.result-object │ ├── unknowntype.geojson │ ├── unknowntype.result │ └── unknowntype.result-object └── 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 │ ├── issue82.geojson │ ├── multipolygon.geojson │ ├── nullgeometry.geojson │ └── nullproperties.geojson └── hint.test.js /.eslintignore: -------------------------------------------------------------------------------- 1 | geojsonhint.js 2 | coverage 3 | test 4 | bench.js 5 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | geojsonhint.js 3 | node_modules/ 4 | .tap/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/README.md -------------------------------------------------------------------------------- /bin/HELP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/bin/HELP.md -------------------------------------------------------------------------------- /bin/geojsonhint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/bin/geojsonhint -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/lib/object.js -------------------------------------------------------------------------------- /lib/rhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/lib/rhr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/package.json -------------------------------------------------------------------------------- /test/data/bad/bad-duplicate-properties.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-duplicate-properties.cli-output-json -------------------------------------------------------------------------------- /test/data/bad/bad-duplicate-properties.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-duplicate-properties.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/bad-duplicate-properties.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-duplicate-properties.geojson -------------------------------------------------------------------------------- /test/data/bad/bad-duplicate-properties.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-duplicate-properties.result -------------------------------------------------------------------------------- /test/data/bad/bad-duplicate-properties.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-duplicate-properties.result-object -------------------------------------------------------------------------------- /test/data/bad/bad-feature-with-number-id.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-feature-with-number-id.result -------------------------------------------------------------------------------- /test/data/bad/bad-featurelist.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-featurelist.cli-output-json -------------------------------------------------------------------------------- /test/data/bad/bad-featurelist.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-featurelist.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/bad-featurelist.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-featurelist.geojson -------------------------------------------------------------------------------- /test/data/bad/bad-featurelist.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-featurelist.result -------------------------------------------------------------------------------- /test/data/bad/bad-featurelist.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-featurelist.result-object -------------------------------------------------------------------------------- /test/data/bad/bad-json.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-json.cli-output-json -------------------------------------------------------------------------------- /test/data/bad/bad-json.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-json.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/bad-json.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-json.geojson -------------------------------------------------------------------------------- /test/data/bad/bad-json.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-json.result -------------------------------------------------------------------------------- /test/data/bad/bad-json.result-object: -------------------------------------------------------------------------------- 1 | [{"message":"Expected string or object as input","line":0}] -------------------------------------------------------------------------------- /test/data/bad/bad-object-type.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-object-type.cli-output-json -------------------------------------------------------------------------------- /test/data/bad/bad-object-type.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-object-type.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/bad-object-type.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": {} 3 | } 4 | -------------------------------------------------------------------------------- /test/data/bad/bad-object-type.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-object-type.result -------------------------------------------------------------------------------- /test/data/bad/bad-object-type.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-object-type.result-object -------------------------------------------------------------------------------- /test/data/bad/bad-polygon-interiorring-rhr.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-polygon-interiorring-rhr.cli-output-json -------------------------------------------------------------------------------- /test/data/bad/bad-polygon-interiorring-rhr.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-polygon-interiorring-rhr.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/bad-polygon-interiorring-rhr.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-polygon-interiorring-rhr.geojson -------------------------------------------------------------------------------- /test/data/bad/bad-polygon-interiorring-rhr.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-polygon-interiorring-rhr.result -------------------------------------------------------------------------------- /test/data/bad/bad-polygon-interiorring-rhr.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-polygon-interiorring-rhr.result-object -------------------------------------------------------------------------------- /test/data/bad/bad-polygonloop.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-polygonloop.cli-output-json -------------------------------------------------------------------------------- /test/data/bad/bad-polygonloop.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-polygonloop.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/bad-polygonloop.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-polygonloop.geojson -------------------------------------------------------------------------------- /test/data/bad/bad-polygonloop.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-polygonloop.result -------------------------------------------------------------------------------- /test/data/bad/bad-polygonloop.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-polygonloop.result-object -------------------------------------------------------------------------------- /test/data/bad/bad-properties-as-array.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-properties-as-array.cli-output-json -------------------------------------------------------------------------------- /test/data/bad/bad-properties-as-array.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-properties-as-array.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/bad-properties-as-array.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-properties-as-array.geojson -------------------------------------------------------------------------------- /test/data/bad/bad-properties-as-array.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-properties-as-array.result -------------------------------------------------------------------------------- /test/data/bad/bad-properties-as-array.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bad-properties-as-array.result-object -------------------------------------------------------------------------------- /test/data/bad/badcoord.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badcoord.cli-output-json -------------------------------------------------------------------------------- /test/data/bad/badcoord.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badcoord.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/badcoord.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badcoord.geojson -------------------------------------------------------------------------------- /test/data/bad/badcoord.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badcoord.result -------------------------------------------------------------------------------- /test/data/bad/badcoord.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badcoord.result-object -------------------------------------------------------------------------------- /test/data/bad/badcoordtype.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badcoordtype.cli-output-json -------------------------------------------------------------------------------- /test/data/bad/badcoordtype.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badcoordtype.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/badcoordtype.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badcoordtype.geojson -------------------------------------------------------------------------------- /test/data/bad/badcoordtype.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badcoordtype.result -------------------------------------------------------------------------------- /test/data/bad/badcoordtype.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badcoordtype.result-object -------------------------------------------------------------------------------- /test/data/bad/badfeature.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badfeature.cli-output-json -------------------------------------------------------------------------------- /test/data/bad/badfeature.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badfeature.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/badfeature.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badfeature.geojson -------------------------------------------------------------------------------- /test/data/bad/badfeature.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badfeature.result -------------------------------------------------------------------------------- /test/data/bad/badfeature.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badfeature.result-object -------------------------------------------------------------------------------- /test/data/bad/badfeatureid.cli-output-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badfeatureid.cli-output-json -------------------------------------------------------------------------------- /test/data/bad/badfeatureid.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badfeatureid.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/badfeatureid.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badfeatureid.geojson -------------------------------------------------------------------------------- /test/data/bad/badfeatureid.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badfeatureid.result -------------------------------------------------------------------------------- /test/data/bad/badfeatureid.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/badfeatureid.result-object -------------------------------------------------------------------------------- /test/data/bad/bbox-4or6elements.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bbox-4or6elements.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/bbox-4or6elements.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bbox-4or6elements.geojson -------------------------------------------------------------------------------- /test/data/bad/bbox-4or6elements.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bbox-4or6elements.result -------------------------------------------------------------------------------- /test/data/bad/bbox-4or6elements.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bbox-4or6elements.result-object -------------------------------------------------------------------------------- /test/data/bad/bbox-contains-string.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bbox-contains-string.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/bbox-contains-string.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bbox-contains-string.geojson -------------------------------------------------------------------------------- /test/data/bad/bbox-contains-string.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bbox-contains-string.result -------------------------------------------------------------------------------- /test/data/bad/bbox-contains-string.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bbox-contains-string.result-object -------------------------------------------------------------------------------- /test/data/bad/bbox-string.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bbox-string.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/bbox-string.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bbox-string.geojson -------------------------------------------------------------------------------- /test/data/bad/bbox-string.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bbox-string.result -------------------------------------------------------------------------------- /test/data/bad/bbox-string.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/bbox-string.result-object -------------------------------------------------------------------------------- /test/data/bad/different-first-last.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/different-first-last.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/different-first-last.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/different-first-last.geojson -------------------------------------------------------------------------------- /test/data/bad/different-first-last.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/different-first-last.result -------------------------------------------------------------------------------- /test/data/bad/different-first-last.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/different-first-last.result-object -------------------------------------------------------------------------------- /test/data/bad/different-first-size.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/different-first-size.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/different-first-size.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/different-first-size.geojson -------------------------------------------------------------------------------- /test/data/bad/different-first-size.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/different-first-size.result -------------------------------------------------------------------------------- /test/data/bad/different-first-size.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/different-first-size.result-object -------------------------------------------------------------------------------- /test/data/bad/excessive_precision_truncated.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/excessive_precision_truncated.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/excessive_precision_truncated.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/excessive_precision_truncated.geojson -------------------------------------------------------------------------------- /test/data/bad/excessive_precision_truncated.result: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/data/bad/excessive_precision_truncated.result-object: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/data/bad/expected_object.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/expected_object.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/expected_object.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/expected_object.geojson -------------------------------------------------------------------------------- /test/data/bad/expected_object.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/expected_object.result -------------------------------------------------------------------------------- /test/data/bad/expected_object.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/expected_object.result-object -------------------------------------------------------------------------------- /test/data/bad/false.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/false.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/false.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/false.geojson -------------------------------------------------------------------------------- /test/data/bad/false.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/false.result -------------------------------------------------------------------------------- /test/data/bad/false.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/false.result-object -------------------------------------------------------------------------------- /test/data/bad/feature_changed_semantics.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/feature_changed_semantics.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/feature_changed_semantics.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/feature_changed_semantics.geojson -------------------------------------------------------------------------------- /test/data/bad/feature_changed_semantics.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/feature_changed_semantics.result -------------------------------------------------------------------------------- /test/data/bad/feature_changed_semantics.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/feature_changed_semantics.result-object -------------------------------------------------------------------------------- /test/data/bad/featurecollection-obj.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/featurecollection-obj.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/featurecollection-obj.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/featurecollection-obj.geojson -------------------------------------------------------------------------------- /test/data/bad/featurecollection-obj.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/featurecollection-obj.result -------------------------------------------------------------------------------- /test/data/bad/featurecollection-obj.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/featurecollection-obj.result-object -------------------------------------------------------------------------------- /test/data/bad/featurecollection-type-case.cli-output-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/featurecollection-type-case.cli-output-pretty -------------------------------------------------------------------------------- /test/data/bad/featurecollection-type-case.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/featurecollection-type-case.geojson -------------------------------------------------------------------------------- /test/data/bad/featurecollection-type-case.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/featurecollection-type-case.result -------------------------------------------------------------------------------- /test/data/bad/featurecollection-type-case.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/featurecollection-type-case.result-object -------------------------------------------------------------------------------- /test/data/bad/featurecollection.geojson: -------------------------------------------------------------------------------- 1 | { "type": "FeatureCollection" } 2 | -------------------------------------------------------------------------------- /test/data/bad/featurecollection.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/featurecollection.result -------------------------------------------------------------------------------- /test/data/bad/featurecollection.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/featurecollection.result-object -------------------------------------------------------------------------------- /test/data/bad/featurecollection_changed_semantics.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/featurecollection_changed_semantics.geojson -------------------------------------------------------------------------------- /test/data/bad/featurecollection_changed_semantics.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/featurecollection_changed_semantics.result -------------------------------------------------------------------------------- /test/data/bad/featurecollection_changed_semantics.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/featurecollection_changed_semantics.result-object -------------------------------------------------------------------------------- /test/data/bad/geometry_changed_semantics.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/geometry_changed_semantics.geojson -------------------------------------------------------------------------------- /test/data/bad/geometry_changed_semantics.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/geometry_changed_semantics.result -------------------------------------------------------------------------------- /test/data/bad/geometry_changed_semantics.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/geometry_changed_semantics.result-object -------------------------------------------------------------------------------- /test/data/bad/geometrycollection_nested.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/geometrycollection_nested.geojson -------------------------------------------------------------------------------- /test/data/bad/geometrycollection_nested.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/geometrycollection_nested.result -------------------------------------------------------------------------------- /test/data/bad/geometrycollection_nested.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/geometrycollection_nested.result-object -------------------------------------------------------------------------------- /test/data/bad/geometrycollection_single.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/geometrycollection_single.geojson -------------------------------------------------------------------------------- /test/data/bad/geometrycollection_single.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/geometrycollection_single.result -------------------------------------------------------------------------------- /test/data/bad/geometrycollection_single.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/geometrycollection_single.result-object -------------------------------------------------------------------------------- /test/data/bad/multiple_problems.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/multiple_problems.geojson -------------------------------------------------------------------------------- /test/data/bad/multiple_problems.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/multiple_problems.result -------------------------------------------------------------------------------- /test/data/bad/multiple_problems.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/multiple_problems.result-object -------------------------------------------------------------------------------- /test/data/bad/multipoint-multidimension.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/multipoint-multidimension.geojson -------------------------------------------------------------------------------- /test/data/bad/multipoint-multidimension.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/multipoint-multidimension.result -------------------------------------------------------------------------------- /test/data/bad/multipoint-multidimension.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/multipoint-multidimension.result-object -------------------------------------------------------------------------------- /test/data/bad/multipoint-nondimension.geojson: -------------------------------------------------------------------------------- 1 | { "type": "MultiPoint", "coordinates": [0,0] } 2 | -------------------------------------------------------------------------------- /test/data/bad/multipoint-nondimension.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/multipoint-nondimension.result -------------------------------------------------------------------------------- /test/data/bad/multipoint-nondimension.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/multipoint-nondimension.result-object -------------------------------------------------------------------------------- /test/data/bad/nofeaturetype.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/nofeaturetype.geojson -------------------------------------------------------------------------------- /test/data/bad/nofeaturetype.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/nofeaturetype.result -------------------------------------------------------------------------------- /test/data/bad/nofeaturetype.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/nofeaturetype.result-object -------------------------------------------------------------------------------- /test/data/bad/notype.geojson: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /test/data/bad/notype.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/notype.result -------------------------------------------------------------------------------- /test/data/bad/notype.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/notype.result-object -------------------------------------------------------------------------------- /test/data/bad/point-labeled-as-a-multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/point-labeled-as-a-multipolygon.geojson -------------------------------------------------------------------------------- /test/data/bad/point-labeled-as-a-multipolygon.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/point-labeled-as-a-multipolygon.result -------------------------------------------------------------------------------- /test/data/bad/point-labeled-as-a-multipolygon.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/point-labeled-as-a-multipolygon.result-object -------------------------------------------------------------------------------- /test/data/bad/point-string.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/point-string.geojson -------------------------------------------------------------------------------- /test/data/bad/point-string.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/point-string.result -------------------------------------------------------------------------------- /test/data/bad/point-string.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/point-string.result-object -------------------------------------------------------------------------------- /test/data/bad/point-toofew.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/point-toofew.geojson -------------------------------------------------------------------------------- /test/data/bad/point-toofew.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/point-toofew.result -------------------------------------------------------------------------------- /test/data/bad/point-toofew.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/point-toofew.result-object -------------------------------------------------------------------------------- /test/data/bad/point-toomany.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/point-toomany.geojson -------------------------------------------------------------------------------- /test/data/bad/point-toomany.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/point-toomany.result -------------------------------------------------------------------------------- /test/data/bad/point-toomany.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/point-toomany.result-object -------------------------------------------------------------------------------- /test/data/bad/point.geojson: -------------------------------------------------------------------------------- 1 | { "type": "Point" } 2 | -------------------------------------------------------------------------------- /test/data/bad/point.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/point.result -------------------------------------------------------------------------------- /test/data/bad/point.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/point.result-object -------------------------------------------------------------------------------- /test/data/bad/polygon_winding_order.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/polygon_winding_order.geojson -------------------------------------------------------------------------------- /test/data/bad/polygon_winding_order.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/polygon_winding_order.result -------------------------------------------------------------------------------- /test/data/bad/polygon_winding_order.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/polygon_winding_order.result-object -------------------------------------------------------------------------------- /test/data/bad/rootstring.geojson: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /test/data/bad/rootstring.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/rootstring.result -------------------------------------------------------------------------------- /test/data/bad/rootstring.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/rootstring.result-object -------------------------------------------------------------------------------- /test/data/bad/short-line.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/short-line.geojson -------------------------------------------------------------------------------- /test/data/bad/short-line.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/short-line.result -------------------------------------------------------------------------------- /test/data/bad/short-line.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/short-line.result-object -------------------------------------------------------------------------------- /test/data/bad/short-linearring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/short-linearring.geojson -------------------------------------------------------------------------------- /test/data/bad/short-linearring.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/short-linearring.result -------------------------------------------------------------------------------- /test/data/bad/short-linearring.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/short-linearring.result-object -------------------------------------------------------------------------------- /test/data/bad/short-multilinestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/short-multilinestring.geojson -------------------------------------------------------------------------------- /test/data/bad/short-multilinestring.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/short-multilinestring.result -------------------------------------------------------------------------------- /test/data/bad/short-multilinestring.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/short-multilinestring.result-object -------------------------------------------------------------------------------- /test/data/bad/stringcoord.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/stringcoord.geojson -------------------------------------------------------------------------------- /test/data/bad/stringcoord.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/stringcoord.result -------------------------------------------------------------------------------- /test/data/bad/stringcoord.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/stringcoord.result-object -------------------------------------------------------------------------------- /test/data/bad/unknowntype.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FooBar" 3 | } 4 | -------------------------------------------------------------------------------- /test/data/bad/unknowntype.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/unknowntype.result -------------------------------------------------------------------------------- /test/data/bad/unknowntype.result-object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/bad/unknowntype.result-object -------------------------------------------------------------------------------- /test/data/good/good-feature-with-id.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/good-feature-with-id.geojson -------------------------------------------------------------------------------- /test/data/good/good-feature-with-string-id.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/good-feature-with-string-id.geojson -------------------------------------------------------------------------------- /test/data/good/good-feature.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/good-feature.geojson -------------------------------------------------------------------------------- /test/data/good/good-featurecollection-bbox.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/good-featurecollection-bbox.geojson -------------------------------------------------------------------------------- /test/data/good/good-featurecollection-bbox3d.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/good-featurecollection-bbox3d.geojson -------------------------------------------------------------------------------- /test/data/good/good-featurecollection-extensions.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/good-featurecollection-extensions.geojson -------------------------------------------------------------------------------- /test/data/good/good-featurecollection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/good-featurecollection.geojson -------------------------------------------------------------------------------- /test/data/good/good-geometrycollection.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/good-geometrycollection.geojson -------------------------------------------------------------------------------- /test/data/good/good-linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/good-linestring.geojson -------------------------------------------------------------------------------- /test/data/good/good-multilinestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/good-multilinestring.geojson -------------------------------------------------------------------------------- /test/data/good/good-multipoint.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/good-multipoint.geojson -------------------------------------------------------------------------------- /test/data/good/good-point-3d.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/good-point-3d.geojson -------------------------------------------------------------------------------- /test/data/good/good-point.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/good-point.geojson -------------------------------------------------------------------------------- /test/data/good/good-polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/good-polygon.geojson -------------------------------------------------------------------------------- /test/data/good/issue82.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/issue82.geojson -------------------------------------------------------------------------------- /test/data/good/multipolygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/multipolygon.geojson -------------------------------------------------------------------------------- /test/data/good/nullgeometry.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/nullgeometry.geojson -------------------------------------------------------------------------------- /test/data/good/nullproperties.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/data/good/nullproperties.geojson -------------------------------------------------------------------------------- /test/hint.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojsonhint/HEAD/test/hint.test.js --------------------------------------------------------------------------------