{"id":28356877,"url":"https://github.com/gastonzalba/ol-wfs-capabilities","last_synced_at":"2025-10-07T16:07:49.616Z","repository":{"id":184707673,"uuid":"671057069","full_name":"GastonZalba/ol-wfs-capabilities","owner":"GastonZalba","description":"Open Layers format for reading WFS capabilities data","archived":false,"fork":false,"pushed_at":"2023-11-06T14:31:00.000Z","size":315,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-30T00:22:12.548Z","etag":null,"topics":["capabilities","geoserver","getcapabilities","ol","openlayers","parser","wfs","xml"],"latest_commit_sha":null,"homepage":"https://raw.githack.com/GastonZalba/ol-wfs-capabilities/main/examples/converter.html","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GastonZalba.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-07-26T12:50:32.000Z","updated_at":"2025-06-17T15:01:12.000Z","dependencies_parsed_at":"2023-09-06T06:15:23.329Z","dependency_job_id":null,"html_url":"https://github.com/GastonZalba/ol-wfs-capabilities","commit_stats":null,"previous_names":["gastonzalba/ol-wfscapabilities"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/GastonZalba/ol-wfs-capabilities","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GastonZalba%2Fol-wfs-capabilities","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GastonZalba%2Fol-wfs-capabilities/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GastonZalba%2Fol-wfs-capabilities/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GastonZalba%2Fol-wfs-capabilities/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GastonZalba","download_url":"https://codeload.github.com/GastonZalba/ol-wfs-capabilities/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GastonZalba%2Fol-wfs-capabilities/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278803279,"owners_count":26048664,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["capabilities","geoserver","getcapabilities","ol","openlayers","parser","wfs","xml"],"created_at":"2025-05-28T07:10:13.302Z","updated_at":"2025-10-07T16:07:49.612Z","avatar_url":"https://github.com/GastonZalba.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ol-wfs-capabilities\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://www.npmjs.com/package/ol-wfs-capabilities\"\u003e\n        \u003cimg src=\"https://img.shields.io/npm/v/ol-wfs-capabilities.svg\" alt=\"npm version\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://img.shields.io/npm/dm/ol-wfs-capabilities\"\u003e\n        \u003cimg alt=\"npm\" src=\"https://img.shields.io/npm/dm/ol-wfs-capabilities\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/gastonzalba/ol-wfs-capabilities/blob/master/LICENSE\"\u003e\n        \u003cimg src=\"https://img.shields.io/npm/l/ol-wfs-capabilities.svg\" alt=\"license\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\nModule to work alongside OpenLayers for reading WFS Capabilities data (versions 1.0.0, 1.1.0 and 2.0.0) and convert it to JSON, complementing the native classes `ol/format/WMSCapabilities` and `ol/format/WMTSCapabilities`.\n\nOpenLayers (at least up to 8.1.0 version) does not have a native way to do this (see related [issue](https://github.com/openlayers/openlayers/issues/8909)), hence the creation of this module that does not depend on any other external dependency other than what comes with OpenLayers.\n\n## Online example\n\nSee [converter](https://raw.githack.com/GastonZalba/ol-wfs-capabilities/main/examples/converter.html) to text and parse data\n\n## Usage\n\n```js\nimport WFSCapabilities from 'ol-wfs-capabilities';\n\nconst parser = new WFSCapabilities();\n\nconst parsedCapabilities = parser.read(myWfsCapabilitiesSource);\n```\n\n## Changelog\n\nSee CHANGELOG for details of changes in each release.\n\n## Install\n\n### Parcel, Webpack, etc.\n\nNPM package: [ol-wfs-capabilities](https://www.npmjs.com/package/ol-wfs-capabilities).\n\nInstall the package via `npm`\n\n```shell\nnpm install ol-wfs-capabilities\n```\n\n### TypeScript type definition\n\nTypeScript types are shipped with the project in the dist directory and should be automatically used in a TypeScript project. Interfaces are provided for the Options.\n\n## Development\n\n```shell\n# install dependencies\nnpm install\n\n# run test\nnpm test\n# run test without pretest\nnpx jest\n\n# run online example locally on http://localhost:3009/\nnpm run watch \n```\n\n## License\nMIT (c) Gastón Zalba.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgastonzalba%2Fol-wfs-capabilities","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgastonzalba%2Fol-wfs-capabilities","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgastonzalba%2Fol-wfs-capabilities/lists"}