├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASE.md ├── index.js ├── lib ├── authenticate.js ├── constants.js ├── defaults │ ├── index.js │ └── server-metadata.js ├── error.js ├── generate-renderer │ ├── color-ramp.js │ ├── create-symbol.js │ ├── index.js │ └── validate-classification-definition.js ├── helpers │ ├── calculate-extent.js │ ├── data-type-utils.js │ ├── errors.js │ ├── feature-layer-metadata.js │ ├── fields │ │ ├── constants.js │ │ ├── esri-type-utils.js │ │ ├── field-classes.js │ │ ├── fields.js │ │ ├── index.js │ │ ├── layer-fields.js │ │ ├── query-fields.js │ │ └── statistics-fields.js │ ├── get-collection-crs.js │ ├── get-geometry-type-from-geojson.js │ ├── get-spatial-reference.js │ ├── index.js │ ├── is-geojson-table.js │ ├── normalize-extent.js │ ├── normalize-input-data.js │ ├── normalize-spatial-reference.js │ ├── renderers.js │ └── table-layer-metadata.js ├── layer-metadata.js ├── layers-metadata.js ├── query │ ├── filter-and-transform.js │ ├── index.js │ ├── log-warnings.js │ ├── render-count-and-extent.js │ ├── render-features.js │ ├── render-precalculated-statistics.js │ └── render-statistics.js ├── queryRelatedRecords.js ├── relationships-info-route-handler.js ├── response-handler.js ├── rest-info-route-handler.js ├── route.js └── server-info-route-handler.js ├── package.json ├── renovate.json ├── templates ├── errors │ ├── credentials-invalid.json │ └── unauthorized.json ├── features.json ├── renderers │ └── symbology │ │ ├── fill-symbol.json │ │ └── style.xml └── server.json └── test ├── integration ├── authenticate.spec.js ├── error.spec.js ├── fixtures │ ├── budget-table.json │ ├── data-with-complex-metadata.json │ ├── date-no-metadata.json │ ├── date-with-metadata.json │ ├── fully-specified-metadata.json │ ├── no-geometry.json │ ├── offset-applied.json │ ├── one-of-each.json │ ├── polygon-metadata-error.json │ ├── polygon.json │ ├── projection-applied.json │ ├── provider-statistics.json │ ├── relatedData.json │ ├── relatedDataCountProperty.json │ ├── snow-text-objectid.json │ ├── snow.json │ ├── stats-out-single.json │ ├── trees-crs-102645.json │ ├── trees-untagged-102645.json │ └── treesSubset.json ├── info.spec.js ├── layers.spec.js ├── query.spec.js ├── queryRelatedRecords.spec.js ├── route.spec.js ├── schemas │ └── index.js └── template.json.spec.js └── unit ├── defaults └── server-metadata.spec.js ├── generate-renderer ├── color-ramp.spec.js ├── create-symbol.spec.js ├── index.spec.js └── validate-classification-definition.spec.js ├── helpers ├── calculate-extent.spec.js ├── data-type-utils.spec.js ├── feature-layer-metadata.spec.js ├── fields │ ├── constants.spec.js │ ├── esri-type-utils.spec.js │ ├── field-classes.spec.js │ ├── fields.spec.js │ ├── layer-fields.spec.js │ ├── query-fields.spec.js │ └── statistics-fields.spec.js ├── get-collection-crs.spec.js ├── get-geometry-type-from-geojson.spec.js ├── get-spatial-reference.spec.js ├── is-geojson-table.spec.js ├── normalize-extent.spec.js ├── normalize-input-data.spec.js ├── normalize-spatial-reference.spec.js ├── renderers.spec.js └── table-layer-metadata.spec.js ├── layer-metadata.spec.js ├── layers-metadata.spec.js ├── query ├── filter-and-transform.spec.js ├── index.spec.js ├── render-count-and-extent.spec.js ├── render-features.spec.js ├── render-precalculated-statistics.spec.js └── render-statistics.spec.js ├── response-handler.spec.js ├── rest-info-route-handler.spec.js ├── route.spec.js └── server-info-route-handler.spec.js /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode 3 | yarn.lock 4 | **/.DS_Store 5 | .nyc_output/ 6 | coverage/ 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | test 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/RELEASE.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/index.js -------------------------------------------------------------------------------- /lib/authenticate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/authenticate.js -------------------------------------------------------------------------------- /lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/constants.js -------------------------------------------------------------------------------- /lib/defaults/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/defaults/index.js -------------------------------------------------------------------------------- /lib/defaults/server-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/defaults/server-metadata.js -------------------------------------------------------------------------------- /lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/error.js -------------------------------------------------------------------------------- /lib/generate-renderer/color-ramp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/generate-renderer/color-ramp.js -------------------------------------------------------------------------------- /lib/generate-renderer/create-symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/generate-renderer/create-symbol.js -------------------------------------------------------------------------------- /lib/generate-renderer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/generate-renderer/index.js -------------------------------------------------------------------------------- /lib/generate-renderer/validate-classification-definition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/generate-renderer/validate-classification-definition.js -------------------------------------------------------------------------------- /lib/helpers/calculate-extent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/calculate-extent.js -------------------------------------------------------------------------------- /lib/helpers/data-type-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/data-type-utils.js -------------------------------------------------------------------------------- /lib/helpers/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/errors.js -------------------------------------------------------------------------------- /lib/helpers/feature-layer-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/feature-layer-metadata.js -------------------------------------------------------------------------------- /lib/helpers/fields/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/fields/constants.js -------------------------------------------------------------------------------- /lib/helpers/fields/esri-type-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/fields/esri-type-utils.js -------------------------------------------------------------------------------- /lib/helpers/fields/field-classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/fields/field-classes.js -------------------------------------------------------------------------------- /lib/helpers/fields/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/fields/fields.js -------------------------------------------------------------------------------- /lib/helpers/fields/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/fields/index.js -------------------------------------------------------------------------------- /lib/helpers/fields/layer-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/fields/layer-fields.js -------------------------------------------------------------------------------- /lib/helpers/fields/query-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/fields/query-fields.js -------------------------------------------------------------------------------- /lib/helpers/fields/statistics-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/fields/statistics-fields.js -------------------------------------------------------------------------------- /lib/helpers/get-collection-crs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/get-collection-crs.js -------------------------------------------------------------------------------- /lib/helpers/get-geometry-type-from-geojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/get-geometry-type-from-geojson.js -------------------------------------------------------------------------------- /lib/helpers/get-spatial-reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/get-spatial-reference.js -------------------------------------------------------------------------------- /lib/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/index.js -------------------------------------------------------------------------------- /lib/helpers/is-geojson-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/is-geojson-table.js -------------------------------------------------------------------------------- /lib/helpers/normalize-extent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/normalize-extent.js -------------------------------------------------------------------------------- /lib/helpers/normalize-input-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/normalize-input-data.js -------------------------------------------------------------------------------- /lib/helpers/normalize-spatial-reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/normalize-spatial-reference.js -------------------------------------------------------------------------------- /lib/helpers/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/renderers.js -------------------------------------------------------------------------------- /lib/helpers/table-layer-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/helpers/table-layer-metadata.js -------------------------------------------------------------------------------- /lib/layer-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/layer-metadata.js -------------------------------------------------------------------------------- /lib/layers-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/layers-metadata.js -------------------------------------------------------------------------------- /lib/query/filter-and-transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/query/filter-and-transform.js -------------------------------------------------------------------------------- /lib/query/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/query/index.js -------------------------------------------------------------------------------- /lib/query/log-warnings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/query/log-warnings.js -------------------------------------------------------------------------------- /lib/query/render-count-and-extent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/query/render-count-and-extent.js -------------------------------------------------------------------------------- /lib/query/render-features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/query/render-features.js -------------------------------------------------------------------------------- /lib/query/render-precalculated-statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/query/render-precalculated-statistics.js -------------------------------------------------------------------------------- /lib/query/render-statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/query/render-statistics.js -------------------------------------------------------------------------------- /lib/queryRelatedRecords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/queryRelatedRecords.js -------------------------------------------------------------------------------- /lib/relationships-info-route-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/relationships-info-route-handler.js -------------------------------------------------------------------------------- /lib/response-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/response-handler.js -------------------------------------------------------------------------------- /lib/rest-info-route-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/rest-info-route-handler.js -------------------------------------------------------------------------------- /lib/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/route.js -------------------------------------------------------------------------------- /lib/server-info-route-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/lib/server-info-route-handler.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/renovate.json -------------------------------------------------------------------------------- /templates/errors/credentials-invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/templates/errors/credentials-invalid.json -------------------------------------------------------------------------------- /templates/errors/unauthorized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/templates/errors/unauthorized.json -------------------------------------------------------------------------------- /templates/features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/templates/features.json -------------------------------------------------------------------------------- /templates/renderers/symbology/fill-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/templates/renderers/symbology/fill-symbol.json -------------------------------------------------------------------------------- /templates/renderers/symbology/style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/templates/renderers/symbology/style.xml -------------------------------------------------------------------------------- /templates/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/templates/server.json -------------------------------------------------------------------------------- /test/integration/authenticate.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/authenticate.spec.js -------------------------------------------------------------------------------- /test/integration/error.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/error.spec.js -------------------------------------------------------------------------------- /test/integration/fixtures/budget-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/budget-table.json -------------------------------------------------------------------------------- /test/integration/fixtures/data-with-complex-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/data-with-complex-metadata.json -------------------------------------------------------------------------------- /test/integration/fixtures/date-no-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/date-no-metadata.json -------------------------------------------------------------------------------- /test/integration/fixtures/date-with-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/date-with-metadata.json -------------------------------------------------------------------------------- /test/integration/fixtures/fully-specified-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/fully-specified-metadata.json -------------------------------------------------------------------------------- /test/integration/fixtures/no-geometry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/no-geometry.json -------------------------------------------------------------------------------- /test/integration/fixtures/offset-applied.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/offset-applied.json -------------------------------------------------------------------------------- /test/integration/fixtures/one-of-each.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/one-of-each.json -------------------------------------------------------------------------------- /test/integration/fixtures/polygon-metadata-error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/polygon-metadata-error.json -------------------------------------------------------------------------------- /test/integration/fixtures/polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/polygon.json -------------------------------------------------------------------------------- /test/integration/fixtures/projection-applied.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/projection-applied.json -------------------------------------------------------------------------------- /test/integration/fixtures/provider-statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/provider-statistics.json -------------------------------------------------------------------------------- /test/integration/fixtures/relatedData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/relatedData.json -------------------------------------------------------------------------------- /test/integration/fixtures/relatedDataCountProperty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/relatedDataCountProperty.json -------------------------------------------------------------------------------- /test/integration/fixtures/snow-text-objectid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/snow-text-objectid.json -------------------------------------------------------------------------------- /test/integration/fixtures/snow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/snow.json -------------------------------------------------------------------------------- /test/integration/fixtures/stats-out-single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/stats-out-single.json -------------------------------------------------------------------------------- /test/integration/fixtures/trees-crs-102645.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/trees-crs-102645.json -------------------------------------------------------------------------------- /test/integration/fixtures/trees-untagged-102645.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/trees-untagged-102645.json -------------------------------------------------------------------------------- /test/integration/fixtures/treesSubset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/fixtures/treesSubset.json -------------------------------------------------------------------------------- /test/integration/info.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/info.spec.js -------------------------------------------------------------------------------- /test/integration/layers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/layers.spec.js -------------------------------------------------------------------------------- /test/integration/query.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/query.spec.js -------------------------------------------------------------------------------- /test/integration/queryRelatedRecords.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/queryRelatedRecords.spec.js -------------------------------------------------------------------------------- /test/integration/route.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/route.spec.js -------------------------------------------------------------------------------- /test/integration/schemas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/schemas/index.js -------------------------------------------------------------------------------- /test/integration/template.json.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/integration/template.json.spec.js -------------------------------------------------------------------------------- /test/unit/defaults/server-metadata.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/defaults/server-metadata.spec.js -------------------------------------------------------------------------------- /test/unit/generate-renderer/color-ramp.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/generate-renderer/color-ramp.spec.js -------------------------------------------------------------------------------- /test/unit/generate-renderer/create-symbol.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/generate-renderer/create-symbol.spec.js -------------------------------------------------------------------------------- /test/unit/generate-renderer/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/generate-renderer/index.spec.js -------------------------------------------------------------------------------- /test/unit/generate-renderer/validate-classification-definition.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/generate-renderer/validate-classification-definition.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/calculate-extent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/calculate-extent.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/data-type-utils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/data-type-utils.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/feature-layer-metadata.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/feature-layer-metadata.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/fields/constants.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/fields/constants.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/fields/esri-type-utils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/fields/esri-type-utils.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/fields/field-classes.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/fields/field-classes.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/fields/fields.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/fields/fields.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/fields/layer-fields.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/fields/layer-fields.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/fields/query-fields.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/fields/query-fields.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/fields/statistics-fields.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/fields/statistics-fields.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/get-collection-crs.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/get-collection-crs.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/get-geometry-type-from-geojson.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/get-geometry-type-from-geojson.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/get-spatial-reference.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/get-spatial-reference.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/is-geojson-table.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/is-geojson-table.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/normalize-extent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/normalize-extent.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/normalize-input-data.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/normalize-input-data.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/normalize-spatial-reference.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/normalize-spatial-reference.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/renderers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/renderers.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/table-layer-metadata.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/helpers/table-layer-metadata.spec.js -------------------------------------------------------------------------------- /test/unit/layer-metadata.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/layer-metadata.spec.js -------------------------------------------------------------------------------- /test/unit/layers-metadata.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/layers-metadata.spec.js -------------------------------------------------------------------------------- /test/unit/query/filter-and-transform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/query/filter-and-transform.spec.js -------------------------------------------------------------------------------- /test/unit/query/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/query/index.spec.js -------------------------------------------------------------------------------- /test/unit/query/render-count-and-extent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/query/render-count-and-extent.spec.js -------------------------------------------------------------------------------- /test/unit/query/render-features.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/query/render-features.spec.js -------------------------------------------------------------------------------- /test/unit/query/render-precalculated-statistics.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/query/render-precalculated-statistics.spec.js -------------------------------------------------------------------------------- /test/unit/query/render-statistics.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/query/render-statistics.spec.js -------------------------------------------------------------------------------- /test/unit/response-handler.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/response-handler.spec.js -------------------------------------------------------------------------------- /test/unit/rest-info-route-handler.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/rest-info-route-handler.spec.js -------------------------------------------------------------------------------- /test/unit/route.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/route.spec.js -------------------------------------------------------------------------------- /test/unit/server-info-route-handler.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koopjs/FeatureServer/HEAD/test/unit/server-info-route-handler.spec.js --------------------------------------------------------------------------------