{"id":19816992,"url":"https://github.com/geoadmin/web-swiss-geometa-validator","last_synced_at":"2026-03-19T11:53:26.540Z","repository":{"id":217686753,"uuid":"744483364","full_name":"geoadmin/web-swiss-geometa-validator","owner":"geoadmin","description":"A web application to validate XML files encoded in ISO19139.che against the swiss geospatial metadata profile.","archived":false,"fork":false,"pushed_at":"2024-04-03T09:55:52.000Z","size":6348,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-02-28T19:43:10.895Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"XSLT","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/geoadmin.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-01-17T11:49:18.000Z","updated_at":"2024-04-09T12:57:13.000Z","dependencies_parsed_at":"2024-04-03T10:55:12.074Z","dependency_job_id":null,"html_url":"https://github.com/geoadmin/web-swiss-geometa-validator","commit_stats":null,"previous_names":["geoadmin/web-swiss-geometa-validator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/geoadmin/web-swiss-geometa-validator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geoadmin%2Fweb-swiss-geometa-validator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geoadmin%2Fweb-swiss-geometa-validator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geoadmin%2Fweb-swiss-geometa-validator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geoadmin%2Fweb-swiss-geometa-validator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/geoadmin","download_url":"https://codeload.github.com/geoadmin/web-swiss-geometa-validator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geoadmin%2Fweb-swiss-geometa-validator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30119427,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T09:35:22.236Z","status":"ssl_error","status_checked_at":"2026-03-05T09:35:20.028Z","response_time":93,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-12T10:11:23.270Z","updated_at":"2026-03-05T10:31:52.519Z","avatar_url":"https://github.com/geoadmin.png","language":"XSLT","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Swiss Geometadata Validator\n![Static Badge](https://img.shields.io/badge/Python-3.9%2B-%2334eb77)\n![example workflow](https://github.com/geoadmin/web-swiss-geometa-validator/actions/workflows/integration-test.yml/badge.svg)\n\nThe swiss geometadata validator gives a standalone tool in form of a Web application and API to validate XML files encoded in `ISO19139.che` against the swiss geospatial metadata profile.\n\n\u003e The ISO19139.che is the XML implementation of the swiss geospatial metadata profile.\n\n## Running with Docker\nClone the repo\n```\ngit clone https://github.com/geoadmin/web-swiss-geometa-validator.git\n\ncd web-swiss-geometa-validator\n```\nBuild and run the docker image\n```\ndocker build -t swiss-geometa-validator .\ndocker run -d -p 8000:5000 --rm swiss-geometa-validator\n```\nThen visist http://localhost:8000 in your browser.\n\n## Running on Linux and Mac OS\n### Installation\nClone the repo and install dependencies in a python virtual environment (recommended).\n```\ngit clone https://github.com/geoadmin/web-swiss-geometa-validator.git\n\ncd web-swiss-geometa-validator\n\npython -m venv .venv\nsource .venv/bin/activate\n\npip install -r requirements.txt\n```\n### Run the application\n```\ngunicorn -c gunicorn.conf.py '__init__:create_app()'\n```\nThen visist http://localhost:8000 in your browser.\n\n## Running on Windows\n### Installation\nClone the repo and install dependencies in a python virtual environment (recommended). Using powershell :\n```\ngit clone https://github.com/geoadmin/web-swiss-geometa-validator.git\n\ncd web-swiss-geometa-validator\n\npython -m venv .venv\n.venv/scripts/Activate.ps1\n\npip install -r requirements.txt\n```\n\n### Run the application\n```\nwaitress-serve --host 127.0.0.1 --port 8000 --threads 20 --call __init__:create_app\n```\nThen visist http://localhost:8000 in your browser.\n\n## Running on Windows at swisstopo\n### Installation\nClone the repo and install dependencies (using powershell) :\n```\ngit clone https://github.com/geoadmin/web-swiss-geometa-validator.git\n\ncd web-swiss-geometa-validator\n\n\u0026 \"C:\\Program Files\\ArcGIS\\Pro\\bin\\Python\\envs\\arcgispro-py3\\Scripts\\pip3\" install --trusted-host github.com --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --proxy=proxy-bvcol.admin.ch:8080 -r requirements.txt\n``` \n\n### Run the application\n```\n\u0026 \"C:\\Program Files\\ArcGIS\\Pro\\bin\\Python\\envs\\arcgispro-py3\\Scripts\\waitress-serve\" --host 127.0.0.1 --port 8000 --threads 20 --call __init__:create_app\n```\nThen visist http://localhost:8000 in your browser.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeoadmin%2Fweb-swiss-geometa-validator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeoadmin%2Fweb-swiss-geometa-validator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeoadmin%2Fweb-swiss-geometa-validator/lists"}