├── .gitignore ├── CHARTER.adoc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── asciidoctor.json ├── core ├── .gitignore ├── 21-045.adoc ├── README.md ├── UML │ └── README.md ├── abstract_tests │ └── README.md ├── annex-a.adoc ├── annex-b.adoc ├── annex-bibliography.adoc ├── annex-c.adoc ├── annex-history.adoc ├── api_guidelines_assessment.adoc ├── clause_0_front_material.adoc ├── clause_10_prisms.adoc ├── clause_11_circular_arcs.adoc ├── clause_12_measures.adoc ├── clause_13_feature_types_and_schemas.adoc ├── clause_14_profiles.adoc ├── clause_15_jsonfg-api.adoc ├── clause_16_media_types.adoc ├── clause_1_scope.adoc ├── clause_2_conformance.adoc ├── clause_3_references.adoc ├── clause_4_terms_and_definitions.adoc ├── clause_5_conventions.adoc ├── clause_6_introduction.adoc ├── clause_7_building_blocks.adoc ├── clause_8_core.adoc ├── clause_9_polyhedra.adoc ├── examples │ ├── README.md │ ├── airports.json │ ├── arc.json │ ├── building.json │ ├── circle-document.json │ ├── circle.json │ ├── cologne-cathedral.json │ ├── compound-curve.json │ ├── curve-polygon.json │ ├── extensions │ │ ├── geodesicstring.json │ │ ├── refsys-byvalue.json │ │ └── timeSeries.json │ ├── fence.json │ ├── multi-curve.json │ ├── multi-surface.json │ ├── pylon.json │ ├── road-segment.json │ ├── toronto-city-hall.json │ └── validate.sh ├── figures │ └── README.md ├── images │ ├── README.md │ ├── TorontoCityHall_3D_2.png │ ├── buildings_cologne_lod1.png │ └── cologne_cathedral_lod2.png ├── requirements │ └── README.md ├── schemas │ ├── README.md │ ├── conformsto.json │ ├── coordrefsys.json │ ├── feature.json │ ├── feature.min.json │ ├── featurecollection.json │ ├── featurecollection.min.json │ ├── featureschema.json │ ├── featuretype.json │ ├── geometry-object.json │ ├── geometry.json │ ├── jsonfg-object.json │ ├── jsonfg-object.min.json │ ├── jsonfg-root-object.json │ ├── jsonfg-root-object.min.json │ ├── link.json │ ├── measures.json │ ├── place.json │ ├── schema.min.py │ └── time.json └── standard.css └── proposals ├── README.md └── TEMPLATE.adoc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/.gitignore -------------------------------------------------------------------------------- /CHARTER.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/CHARTER.adoc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/README.md -------------------------------------------------------------------------------- /asciidoctor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/asciidoctor.json -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.pdf 3 | -------------------------------------------------------------------------------- /core/21-045.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/21-045.adoc -------------------------------------------------------------------------------- /core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/README.md -------------------------------------------------------------------------------- /core/UML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/UML/README.md -------------------------------------------------------------------------------- /core/abstract_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/abstract_tests/README.md -------------------------------------------------------------------------------- /core/annex-a.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/annex-a.adoc -------------------------------------------------------------------------------- /core/annex-b.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/annex-b.adoc -------------------------------------------------------------------------------- /core/annex-bibliography.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/annex-bibliography.adoc -------------------------------------------------------------------------------- /core/annex-c.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/annex-c.adoc -------------------------------------------------------------------------------- /core/annex-history.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/annex-history.adoc -------------------------------------------------------------------------------- /core/api_guidelines_assessment.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/api_guidelines_assessment.adoc -------------------------------------------------------------------------------- /core/clause_0_front_material.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_0_front_material.adoc -------------------------------------------------------------------------------- /core/clause_10_prisms.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_10_prisms.adoc -------------------------------------------------------------------------------- /core/clause_11_circular_arcs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_11_circular_arcs.adoc -------------------------------------------------------------------------------- /core/clause_12_measures.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_12_measures.adoc -------------------------------------------------------------------------------- /core/clause_13_feature_types_and_schemas.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_13_feature_types_and_schemas.adoc -------------------------------------------------------------------------------- /core/clause_14_profiles.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_14_profiles.adoc -------------------------------------------------------------------------------- /core/clause_15_jsonfg-api.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_15_jsonfg-api.adoc -------------------------------------------------------------------------------- /core/clause_16_media_types.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_16_media_types.adoc -------------------------------------------------------------------------------- /core/clause_1_scope.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_1_scope.adoc -------------------------------------------------------------------------------- /core/clause_2_conformance.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_2_conformance.adoc -------------------------------------------------------------------------------- /core/clause_3_references.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_3_references.adoc -------------------------------------------------------------------------------- /core/clause_4_terms_and_definitions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_4_terms_and_definitions.adoc -------------------------------------------------------------------------------- /core/clause_5_conventions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_5_conventions.adoc -------------------------------------------------------------------------------- /core/clause_6_introduction.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_6_introduction.adoc -------------------------------------------------------------------------------- /core/clause_7_building_blocks.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_7_building_blocks.adoc -------------------------------------------------------------------------------- /core/clause_8_core.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_8_core.adoc -------------------------------------------------------------------------------- /core/clause_9_polyhedra.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/clause_9_polyhedra.adoc -------------------------------------------------------------------------------- /core/examples/README.md: -------------------------------------------------------------------------------- 1 | This folder contains JSON examples. 2 | -------------------------------------------------------------------------------- /core/examples/airports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/airports.json -------------------------------------------------------------------------------- /core/examples/arc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/arc.json -------------------------------------------------------------------------------- /core/examples/building.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/building.json -------------------------------------------------------------------------------- /core/examples/circle-document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/circle-document.json -------------------------------------------------------------------------------- /core/examples/circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/circle.json -------------------------------------------------------------------------------- /core/examples/cologne-cathedral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/cologne-cathedral.json -------------------------------------------------------------------------------- /core/examples/compound-curve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/compound-curve.json -------------------------------------------------------------------------------- /core/examples/curve-polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/curve-polygon.json -------------------------------------------------------------------------------- /core/examples/extensions/geodesicstring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/extensions/geodesicstring.json -------------------------------------------------------------------------------- /core/examples/extensions/refsys-byvalue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/extensions/refsys-byvalue.json -------------------------------------------------------------------------------- /core/examples/extensions/timeSeries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/extensions/timeSeries.json -------------------------------------------------------------------------------- /core/examples/fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/fence.json -------------------------------------------------------------------------------- /core/examples/multi-curve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/multi-curve.json -------------------------------------------------------------------------------- /core/examples/multi-surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/multi-surface.json -------------------------------------------------------------------------------- /core/examples/pylon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/pylon.json -------------------------------------------------------------------------------- /core/examples/road-segment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/road-segment.json -------------------------------------------------------------------------------- /core/examples/toronto-city-hall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/toronto-city-hall.json -------------------------------------------------------------------------------- /core/examples/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/examples/validate.sh -------------------------------------------------------------------------------- /core/figures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/figures/README.md -------------------------------------------------------------------------------- /core/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/images/README.md -------------------------------------------------------------------------------- /core/images/TorontoCityHall_3D_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/images/TorontoCityHall_3D_2.png -------------------------------------------------------------------------------- /core/images/buildings_cologne_lod1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/images/buildings_cologne_lod1.png -------------------------------------------------------------------------------- /core/images/cologne_cathedral_lod2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/images/cologne_cathedral_lod2.png -------------------------------------------------------------------------------- /core/requirements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/requirements/README.md -------------------------------------------------------------------------------- /core/schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/README.md -------------------------------------------------------------------------------- /core/schemas/conformsto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/conformsto.json -------------------------------------------------------------------------------- /core/schemas/coordrefsys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/coordrefsys.json -------------------------------------------------------------------------------- /core/schemas/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/feature.json -------------------------------------------------------------------------------- /core/schemas/feature.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/feature.min.json -------------------------------------------------------------------------------- /core/schemas/featurecollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/featurecollection.json -------------------------------------------------------------------------------- /core/schemas/featurecollection.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/featurecollection.min.json -------------------------------------------------------------------------------- /core/schemas/featureschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/featureschema.json -------------------------------------------------------------------------------- /core/schemas/featuretype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/featuretype.json -------------------------------------------------------------------------------- /core/schemas/geometry-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/geometry-object.json -------------------------------------------------------------------------------- /core/schemas/geometry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/geometry.json -------------------------------------------------------------------------------- /core/schemas/jsonfg-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/jsonfg-object.json -------------------------------------------------------------------------------- /core/schemas/jsonfg-object.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/jsonfg-object.min.json -------------------------------------------------------------------------------- /core/schemas/jsonfg-root-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/jsonfg-root-object.json -------------------------------------------------------------------------------- /core/schemas/jsonfg-root-object.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/jsonfg-root-object.min.json -------------------------------------------------------------------------------- /core/schemas/link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/link.json -------------------------------------------------------------------------------- /core/schemas/measures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/measures.json -------------------------------------------------------------------------------- /core/schemas/place.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/place.json -------------------------------------------------------------------------------- /core/schemas/schema.min.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/schema.min.py -------------------------------------------------------------------------------- /core/schemas/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/schemas/time.json -------------------------------------------------------------------------------- /core/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/core/standard.css -------------------------------------------------------------------------------- /proposals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/proposals/README.md -------------------------------------------------------------------------------- /proposals/TEMPLATE.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeospatial/ogc-feat-geo-json/HEAD/proposals/TEMPLATE.adoc --------------------------------------------------------------------------------