File tree Expand file tree Collapse file tree 6 files changed +5
-7
lines changed Expand file tree Collapse file tree 6 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 2
2
// Use IntelliSense to learn about possible attributes.
3
3
// Hover to view descriptions of existing attributes.
4
4
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
- "version" : " 0.2.0 " ,
5
+ "version" : " 0.2.1 " ,
6
6
"configurations" : [
7
7
{
8
8
"name" : " Python: Debug test" ,
Original file line number Diff line number Diff line change 1
1
2
2
3
3
# Changelog
4
- ## [ 0.2.0 ] - 2024-05-04
4
+ ## [ 0.2.1 ] - 2024-05-04
5
5
### Changed
6
6
* feat: Add validation for exclusive arguments
7
7
* feat: Update CLI options for city and bbox
Original file line number Diff line number Diff line change 1
1
# AHN CLI
2
2
3
3
[ ![ License: MIT] ( https://img.shields.io/badge/License-MIT-blue.svg )] ( https://opensource.org/licenses/MIT )
4
- [ ![ Version: 0.2.0 ] ( https://img.shields.io/badge/Version-0.2.0 -green.svg )] ( https://github.com/HideBa/ahn-cli/releases/tag/v0.2.0 )
4
+ [ ![ 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 )
5
5
[ ![ CICD Status: Passing] ( https://img.shields.io/badge/CICD-Passing-brightgreen.svg )] ( https://github.com/HideBa/ahn-cli/actions )
6
6
7
7
## Description
Original file line number Diff line number Diff line change 29
29
30
30
31
31
@click .command ()
32
- @click .version_option (version = "0.2.0 " , prog_name = "ahn_cli" )
32
+ @click .version_option (version = "0.2.1 " , prog_name = "ahn_cli" )
33
33
@click .option (
34
34
"-o" ,
35
35
"--output" ,
Original file line number Diff line number Diff line change @@ -20,8 +20,6 @@ def polygon_to_raster(
20
20
Returns:
21
21
Tuple[np.ndarray, Affine]: A tuple containing the rasterized numpy array and the affine transformation matrix.
22
22
"""
23
- # Implementation code here
24
- pass
25
23
26
24
bbox = polygon .bounds
27
25
height = int ((bbox [3 ] - bbox [1 ]) / resolution )
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " ahn_cli"
3
- version = " 0.2.0 "
3
+ version = " 0.2.1 "
4
4
description = " "
5
5
authors = [
" HideBa <[email protected] >" ]
6
6
license = " MIT"
You can’t perform that action at this time.
0 commit comments