{"id":40882477,"url":"https://github.com/bertt/wfsdump","last_synced_at":"2026-01-22T01:16:47.078Z","repository":{"id":282033546,"uuid":"947258843","full_name":"bertt/wfsdump","owner":"bertt","description":"CLI tool dumps WFS data to PostGIS table","archived":false,"fork":false,"pushed_at":"2025-11-24T08:28:11.000Z","size":69,"stargazers_count":9,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-29T23:10:41.181Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bertt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-12T12:05:22.000Z","updated_at":"2025-11-14T10:01:30.000Z","dependencies_parsed_at":"2025-03-12T13:22:39.676Z","dependency_job_id":"8318a120-bcb8-43b3-be54-a21a1f182a95","html_url":"https://github.com/bertt/wfsdump","commit_stats":null,"previous_names":["bertt/wfsdump"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/bertt/wfsdump","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bertt%2Fwfsdump","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bertt%2Fwfsdump/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bertt%2Fwfsdump/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bertt%2Fwfsdump/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bertt","download_url":"https://codeload.github.com/bertt/wfsdump/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bertt%2Fwfsdump/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28648639,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T21:29:11.980Z","status":"ssl_error","status_checked_at":"2026-01-21T21:24:31.872Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":"2026-01-22T01:16:46.386Z","updated_at":"2026-01-22T01:16:47.061Z","avatar_url":"https://github.com/bertt.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wfsdump\n\n## Usage \n\n![image](https://github.com/user-attachments/assets/09ebd759-519d-425c-bc20-141c2af47212)\n\n```\nDescription:\n  CLI tool for dump WFS data to PostGIS table\n\nUsage:\n  wfsdump \u003cwfs\u003e \u003cwfsLayer\u003e [options]\n\nArguments:\n  \u003cwfs\u003e       WFS service\n  \u003cwfsLayer\u003e  WFS layer name\n\nOptions:\n  -?, -h, --help  Show help and usage information\n  --version       Show version information\n  --connection    Connection string [default: Host=localhost;Username=postgres;Password=postgres;Database=postgres]\n  --output        output table [default: public.wfs_dump]\n  --columns       output columns geometry,attributes (csv) [default: geom,attributes]\n  --jobs          Number of parallel jobs [default: 2]\n  --bbox          bbox (space separated) [default: -179|-85|179|85]\n  --z             Tile Z [default: 14]\n  --epsg          EPSG [default: 4326]\n```\n\nCreate output table sample:\n\n```\nCREATE TABLE public.wfs_dump (\n    geom GEOMETRY,\n    attributes jsonb\n);\n```\n\n## XYZ Tiling\n\nThe WFS is requested using XYZ tiles. The list of tiles is generated from the bbox parameter (default: -179|-85|179|85 in EPSG:4326) and the Z level (default 14).\n\nSee for XYZ tiles visualisation https://docs.maptiler.com/google-maps-coordinates-tile-bounds-projection/\n\nSee for bbox definition http://bboxfinder.com/\n\n## Projections\n\nBy default, EPSG code 4326 is used for requesting the WFS and storing the geometries.\n\nIf another EPSG code is specified, the EPSG code is used to request the WFS service (for the bounding box and output SRSNAME) and store \nthe geometries. \n\nNote: The bbox should always be defined in EPSG:4326.\n\n## GUI tool\n\nSee project wfs.ui for functional cross platform GUI application.\n\n\u003cimg width=\"1899\" height=\"989\" alt=\"image\" src=\"https://github.com/user-attachments/assets/3531a4c9-7f93-4815-94d4-5d0dc6261d68\" /\u003e\n\n\n## Sample\n\n```\n./wfsdump https://ahocevar.com/geoserver/wfs ne:ne_10m_admin_0_countries --z 1 --jobs 1\n```\n\nOther WFS services are not tested (yet)\n\n## Releases\n\nSee https://github.com/bertt/wfsdump/tags for releases, zipped executables are available for Linux/Windows/Mac \n\n## History\n\n25-08-28: Release 0.2 alpha 16, adding EPSG output code\n\n25-03-13: Release 0.2, adding error handling\n\n25-03-12: Initial version 0.1\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbertt%2Fwfsdump","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbertt%2Fwfsdump","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbertt%2Fwfsdump/lists"}