Skip to content

Commit

Permalink
Merge branch 'feature/fudgeo-83' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
jlhumber committed Oct 19, 2024
2 parents 159e0cc + 1e83061 commit 9d3e1a7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ Use the `create_feature_class` method of a GeoPackage to make
a new feature class. Feature classes require a name and a Spatial
Reference, the name must follow SQLite naming requirements. Each
feature class is defined with `fid` and `SHAPE` fields, additional
fields can be defined during creation.
fields can be defined during creation. `SHAPE` is the default geometry
column name however it can be specified during feature class creation.

A Feature Class can be created with *Z* or *M* (or both) enabled. If
either of these options are enabled, the geometry inserted into the
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
Expand Down
2 changes: 1 addition & 1 deletion tests/geometry/test_geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from fudgeo.geometry import LineString, Point, Polygon


@mark.skipif(version_info[:2] != (3, 11), reason='threshold based on 3.11')
@mark.skipif(version_info[:2] < (3, 11), reason='threshold based on 3.11')
@mark.parametrize('scale, geom_type, expected', [
(1, Point, 0.025),
(1, LineString, 0.0025),
Expand Down

0 comments on commit 9d3e1a7

Please sign in to comment.