bedrock-ge 0.2.1__py3-none-any.whl → 0.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bedrock_ge/__init__.py +1 -1
- bedrock_ge/gi/ags/transform.py +12 -1
- {bedrock_ge-0.2.1.dist-info → bedrock_ge-0.2.2.dist-info}/METADATA +16 -8
- {bedrock_ge-0.2.1.dist-info → bedrock_ge-0.2.2.dist-info}/RECORD +6 -6
- {bedrock_ge-0.2.1.dist-info → bedrock_ge-0.2.2.dist-info}/WHEEL +0 -0
- {bedrock_ge-0.2.1.dist-info → bedrock_ge-0.2.2.dist-info}/licenses/LICENSE +0 -0
bedrock_ge/__init__.py
CHANGED
bedrock_ge/gi/ags/transform.py
CHANGED
@@ -77,8 +77,19 @@ def ags3_db_to_no_gis_brgi_db(
|
|
77
77
|
|
78
78
|
@pa.check_types(lazy=True)
|
79
79
|
def ags_proj_to_brgi_project(ags_proj: pd.DataFrame, crs: CRS) -> DataFrame[Project]:
|
80
|
+
"""Maps the AGS 3 'PROJ' group to a Bedrock GI 'Project' table.
|
81
|
+
|
82
|
+
Args:
|
83
|
+
ags_proj (pd.DataFrame): The AGS 3 'PROJ' group.
|
84
|
+
crs (CRS): The coordinate reference system of the project.
|
85
|
+
|
86
|
+
Returns:
|
87
|
+
DataFrame[Project]: The Bedrock GI 'Project' table.
|
88
|
+
"""
|
89
|
+
if "project_uid" not in ags_proj.columns:
|
90
|
+
ags_proj["project_uid"] = ags_proj["PROJ_ID"]
|
91
|
+
|
80
92
|
ags_proj["crs_wkt"] = crs.to_wkt()
|
81
|
-
ags_proj["project_uid"] = ags_proj["PROJ_ID"]
|
82
93
|
|
83
94
|
return ags_proj # type: ignore
|
84
95
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: bedrock-ge
|
3
|
-
Version: 0.2.
|
4
|
-
Summary: Bedrock
|
3
|
+
Version: 0.2.2
|
4
|
+
Summary: Bedrock's Python library for geotechnical engineering.
|
5
5
|
Project-URL: Homepage, https://bedrock.engineer/
|
6
6
|
Project-URL: Source, https://github.com/bedrock-engineer/bedrock-ge
|
7
7
|
Project-URL: Documentation, https://bedrock.engineer/docs/
|
@@ -9,18 +9,26 @@ Project-URL: Tracker, https://github.com/bedrock-engineer/bedrock-ge/issues
|
|
9
9
|
Author-email: Bedrock <info@bedrock.engineer>
|
10
10
|
License: Apache Software License (Apache 2.0)
|
11
11
|
License-File: LICENSE
|
12
|
-
Keywords: aec,ags,bedrock,bim,engineering
|
13
|
-
Classifier: Development Status ::
|
12
|
+
Keywords: aec,aeco,ags,ags3,ags4,bedrock,bim,borehole,borehole-data,civil-engineering,engineering-geology,geo-bim,geoscience-bim,geosciences,geospatial,geospatial-data,geostatistics,geotech,geotechnical,geotechnical-data,geotechnical-engineering,geotechnics,gi-data,gis,ground-engineering,ground-investigation,ground-investigation-data,subsurface,underground
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
14
|
+
Classifier: Intended Audience :: Education
|
15
|
+
Classifier: Intended Audience :: Science/Research
|
14
16
|
Classifier: License :: OSI Approved :: Apache Software License
|
15
17
|
Classifier: Operating System :: OS Independent
|
16
|
-
Classifier: Programming Language :: Python
|
18
|
+
Classifier: Programming Language :: Python
|
19
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
20
|
+
Classifier: Programming Language :: Python :: 3.9
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
22
|
+
Classifier: Programming Language :: Python :: 3.11
|
23
|
+
Classifier: Programming Language :: Python :: 3.12
|
24
|
+
Classifier: Programming Language :: Python :: 3.13
|
25
|
+
Classifier: Topic :: Scientific/Engineering
|
26
|
+
Classifier: Topic :: Scientific/Engineering :: GIS
|
17
27
|
Requires-Python: >=3.9
|
18
|
-
Requires-Dist: duckdb~=1.0
|
19
28
|
Requires-Dist: geopandas~=1.0
|
20
29
|
Requires-Dist: openpyxl~=3.0
|
21
30
|
Requires-Dist: pandera>=0.23.0
|
22
31
|
Requires-Dist: python-ags4~=1.0
|
23
|
-
Requires-Dist: sqlglot>=26.12.0
|
24
32
|
Requires-Dist: sqlmodel>=0.0.22
|
25
33
|
Description-Content-Type: text/markdown
|
26
34
|
|
@@ -209,7 +217,7 @@ Please start a [discussion](https://github.com/orgs/bedrock-gi/discussions) or c
|
|
209
217
|
|
210
218
|
Hi, I'm Joost Gevaert 👋
|
211
219
|
|
212
|
-
I studied geotechnical engineering and applied geophysics and then worked for [Arup](https://www.arup.com/) for 4 as a geotechnical engineer
|
220
|
+
I studied geotechnical engineering and applied geophysics and then worked for [Arup](https://www.arup.com/) for 4 years as a geotechnical engineer and computational designer.
|
213
221
|
|
214
222
|
During my time at Arup I worked a lot on bringing computational design into the world of geotechnical engineering, and on [bridging the gaps between geotechnical engineering and structural engineering](https://www.linkedin.com/posts/joost-gevaert_lightbim-lightbim-lightbim-activity-7234726439835549697-3xdO).
|
215
223
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
bedrock_ge/__init__.py,sha256=
|
1
|
+
bedrock_ge/__init__.py,sha256=F2GWz69tVD2wVnMHeHrp-TWuguF3xjlReB1CiPeK-lM,89
|
2
2
|
bedrock_ge/plot.py,sha256=hUxpZXWlUmf2Ec5CKkGkOBJ_TfC1KM8yUeuMtsqk7A0,70
|
3
3
|
bedrock_ge/gi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
bedrock_ge/gi/bedrock-gi-schema.json,sha256=XaumYqouiflu4Nc8ChyFSHpmpJW4YPG0hsyeSxkuIWQ,850
|
@@ -13,9 +13,9 @@ bedrock_ge/gi/ags/ags3_data_dictionary.json,sha256=Wx20_oJRdAlzEo-cKD6FgN9B9zOMD
|
|
13
13
|
bedrock_ge/gi/ags/ags4_data_dictionary.json,sha256=XE5XJNo8GBPZTUPgvVr3QgO1UfEIAxzlSeXi-P1VLTs,609670
|
14
14
|
bedrock_ge/gi/ags/read.py,sha256=ebBHfU-w0BkjvcfmmmBxJx-PyziBRNm_4Okzvvqime8,7078
|
15
15
|
bedrock_ge/gi/ags/schemas.py,sha256=y36n9SCKqFfoIQ_7-MTEdfArA5vAqZdRpY3wC4fdjy4,7451
|
16
|
-
bedrock_ge/gi/ags/transform.py,sha256=
|
16
|
+
bedrock_ge/gi/ags/transform.py,sha256=8szmnYiQfAg-DSDMC1vqDVtSEZOCUifKGKaTyrVSqa0,8351
|
17
17
|
bedrock_ge/gi/ags/validate.py,sha256=Wghxm0dFGQB-6qrsbxOf68YalnPdJ6oeCXZJ7xrYVHI,703
|
18
|
-
bedrock_ge-0.2.
|
19
|
-
bedrock_ge-0.2.
|
20
|
-
bedrock_ge-0.2.
|
21
|
-
bedrock_ge-0.2.
|
18
|
+
bedrock_ge-0.2.2.dist-info/METADATA,sha256=UylRTVrQB-2s_hzPLvNJvyazh0hEn35g8b2rH2IkpEQ,14317
|
19
|
+
bedrock_ge-0.2.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
20
|
+
bedrock_ge-0.2.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
21
|
+
bedrock_ge-0.2.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|