{"id":26554207,"url":"https://github.com/hideba/ahn_cli","last_synced_at":"2025-03-22T09:51:02.138Z","repository":{"id":224170955,"uuid":"731346585","full_name":"HideBa/ahn_cli","owner":"HideBa","description":"Python CLI tool which helps you to download AHN point cloud data easily","archived":false,"fork":false,"pushed_at":"2024-05-04T14:16:04.000Z","size":42136,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-05-05T08:36:50.705Z","etag":null,"topics":["ahn","delft-university-of-technology","geo","geospatial-data","lasfile","laspy","point-cloud","python"],"latest_commit_sha":null,"homepage":"","language":"Python","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/HideBa.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2023-12-13T21:59:39.000Z","updated_at":"2024-05-04T14:14:52.000Z","dependencies_parsed_at":"2024-03-13T09:55:34.326Z","dependency_job_id":null,"html_url":"https://github.com/HideBa/ahn_cli","commit_stats":null,"previous_names":["hideba/ahn_cli"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HideBa%2Fahn_cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HideBa%2Fahn_cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HideBa%2Fahn_cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HideBa%2Fahn_cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HideBa","download_url":"https://codeload.github.com/HideBa/ahn_cli/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244937743,"owners_count":20535124,"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","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":["ahn","delft-university-of-technology","geo","geospatial-data","lasfile","laspy","point-cloud","python"],"created_at":"2025-03-22T09:51:01.368Z","updated_at":"2025-03-22T09:51:02.116Z","avatar_url":"https://github.com/HideBa.png","language":"Python","readme":"# AHN CLI\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n[![Version: 0.2.1](https://img.shields.io/badge/Version-0.2.1-green.svg)](https://github.com/HideBa/ahn-cli/releases/tag/v0.2.1)\n[![CICD Status: Passing](https://img.shields.io/badge/CICD-Passing-brightgreen.svg)](https://github.com/HideBa/ahn-cli/actions)\n\n## Description\n\nAHN CLI is a command-line interface tool designed for the effortless downloading of AHN (Actueel Hoogtebestand Nederland) point cloud data for specific cities and classification classes.\n\n## Installation\n\nInstall AHN CLI using pip:\n\n```\npip install ahn_cli\n```\n\n## Usage\n\nTo utilize the AHN CLI, execute the following command with the appropriate options:\n\n```shell\nOptions:\n -c, --city \u003ccity_name\u003e        Download point cloud data for the specified city.\n -o, --output \u003cfile\u003e           Designate the output file for the downloaded data.\n -i, --include-class \u003cclass\u003e   Include specific point cloud classes in the download,\n                               specified in a comma-separated list. Available classes:\n                               0:Created, never classified; 1:Unclassified; 2:Ground;\n                               6:Building; 9:Water; 14:High tension; 26:Civil structure.\n -e, --exclude-class \u003cclass\u003e   Exclude specific point cloud classes from the download,\n                               specified in a comma-separated list. Available classes as above.\n -d, --decimate \u003cstep\u003e         Decimate the point cloud data by the specified step.\n -ncc, --no-clip-city          Avoid clipping the point cloud data to the city boundary.\n -cf, --clip-file \u003cfile\u003e       Provide a file path for a clipping boundary file to clip\n                               the point cloud data to a specified area.\n -e, --epsg \u003cepsg\u003e             Set the EPSG code for user's clip file.\n -b, --bbox \u003cbbox\u003e             Specify a bounding box to clip the point cloud data. It should be comma-separated list with minx,miny,maxx,maxy\n                               centered on the city polygon.\n -p, --preview                 Preview the point cloud data in a 3D viewer.\n -h, --help [category]         Show help information. Optionally specify a category for\n                               detailed help on a specific command.\n -v, --version                 Display the version number of the AHN CLI and exit.\n```\n\n### Usage Examples\n\n**Download Point Cloud Data for Delft with All Classification Classes:**\n\n```\nahn_cli -c delft -o ./delft.laz\n```\n\n**To Include or Exclude Specific Classes:**\n\n```\nahn_cli -c delft -o ./delft.laz -i 1,2\n```\n\n**For Non-Clipped, Rectangular-Shaped Data:**\n\n```\nahn_cli -c delft -o ./delft.laz -i 1,2 -ncc\n```\n\n**To Decimate City-Scale Point Cloud Data:**\n\n```\nahn_cli -c delft -o ./delft.laz -i 1,2 -d 2\n```\n\n**Specify a Bounding box for clipping:**\n\nIf you specify a `b`, it will clip the point cloud data with specified bounding box.\n```\nahn_cli -o ./delft.laz -i 1,2 -b 194198.0,443461.0,194594.0,443694.0\n```\n\n\n## Reporting Issues\n\nEncountering issues or bugs? We greatly appreciate your feedback. Please report any problems by opening an issue on our GitHub repository. Be as detailed as possible in your report, including steps to reproduce the issue, the expected outcome, and the actual result. This information will help us address and resolve the issue more efficiently.\n\n## Contributing\n\nYour contributions are welcome! If you're looking to contribute to the AHN CLI project, please first review our Contribution Guidelines. Whether it's fixing bugs, adding new features, or improving documentation, we value your help.\n\nTo get started:\n\n- Fork the repository on GitHub.\n- Clone your forked repository to your local machine.\n- Create a new branch for your contribution.\n- Make your changes and commit them with clear, descriptive messages.\n  Push your changes to your fork.\n- Submit a pull request to our repository, providing details about your changes and the value they add to the project.\n- We look forward to reviewing your contributions and potentially merging them into the project!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhideba%2Fahn_cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhideba%2Fahn_cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhideba%2Fahn_cli/lists"}