ign-pdal-tools 1.12.2__py3-none-any.whl → 1.12.3__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.
- {ign_pdal_tools-1.12.2.dist-info → ign_pdal_tools-1.12.3.dist-info}/METADATA +1 -1
- {ign_pdal_tools-1.12.2.dist-info → ign_pdal_tools-1.12.3.dist-info}/RECORD +7 -7
- pdaltools/_version.py +1 -1
- pdaltools/add_points_in_pointcloud.py +2 -2
- {ign_pdal_tools-1.12.2.dist-info → ign_pdal_tools-1.12.3.dist-info}/WHEEL +0 -0
- {ign_pdal_tools-1.12.2.dist-info → ign_pdal_tools-1.12.3.dist-info}/licenses/LICENSE.md +0 -0
- {ign_pdal_tools-1.12.2.dist-info → ign_pdal_tools-1.12.3.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
ign_pdal_tools-1.12.
|
|
2
|
-
pdaltools/_version.py,sha256=
|
|
3
|
-
pdaltools/add_points_in_pointcloud.py,sha256=
|
|
1
|
+
ign_pdal_tools-1.12.3.dist-info/licenses/LICENSE.md,sha256=iVzCFZTUXeiqP8bP474iuWZiWO_kDCD4SPh1Wiw125Y,1120
|
|
2
|
+
pdaltools/_version.py,sha256=imnrJGefuTNyDbmr09xOFtEVybYZhC7mSJkI2WzqG1Y,75
|
|
3
|
+
pdaltools/add_points_in_pointcloud.py,sha256=Q8rCgLi81IsGRUf77tsVb1WJIF-IGLdFk-rC5NA0itE,12679
|
|
4
4
|
pdaltools/color.py,sha256=vJgpb8dOvT5rnq5NdVOaMdGc_pKL3damLy4HwGvigJQ,14472
|
|
5
5
|
pdaltools/create_random_laz.py,sha256=kFe5iHeHlkgKWRIKjK5l1AD65OG4qLYwAZdO1Wcvuos,5255
|
|
6
6
|
pdaltools/las_add_buffer.py,sha256=rnFExAfi0KqlQpL4hDMh2aC08AcYdSHSB6WPG5RyFIc,11274
|
|
@@ -14,7 +14,7 @@ pdaltools/pcd_info.py,sha256=NIAH5KGikVDQLlbCcw9FuaPqe20UZvRfkHsDZd5kmZA,3210
|
|
|
14
14
|
pdaltools/replace_attribute_in_las.py,sha256=MHpIizSupgWtbizteoRH8FKDE049hrAh4v_OhmRmSPU,4318
|
|
15
15
|
pdaltools/standardize_format.py,sha256=I2oNiwhSMtr4e5ZK9qbB_yKmy3twOoO6QLiSFu4_AaI,3905
|
|
16
16
|
pdaltools/unlock_file.py,sha256=G2odk0cpp_X9r49Y90oK88v3qlihaMfg6acwmWqblik,1958
|
|
17
|
-
ign_pdal_tools-1.12.
|
|
18
|
-
ign_pdal_tools-1.12.
|
|
19
|
-
ign_pdal_tools-1.12.
|
|
20
|
-
ign_pdal_tools-1.12.
|
|
17
|
+
ign_pdal_tools-1.12.3.dist-info/METADATA,sha256=inI_jvR-SofWol9ZIbQS10hQtDPp173eXjOq8Rj1aLk,5778
|
|
18
|
+
ign_pdal_tools-1.12.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
ign_pdal_tools-1.12.3.dist-info/top_level.txt,sha256=KvGW0ZzqQbhCKzB5_Tp_buWMZyIgiO2M2krWF_ecOZc,10
|
|
20
|
+
ign_pdal_tools-1.12.3.dist-info/RECORD,,
|
pdaltools/_version.py
CHANGED
|
@@ -29,7 +29,7 @@ def parse_args(argv=None):
|
|
|
29
29
|
"--spatial_ref",
|
|
30
30
|
type=str,
|
|
31
31
|
required=False,
|
|
32
|
-
help="spatial reference for the writer",
|
|
32
|
+
help="spatial reference for the writer (eg: 'EPSG:2154')",
|
|
33
33
|
)
|
|
34
34
|
parser.add_argument(
|
|
35
35
|
"--tile_width",
|
|
@@ -281,7 +281,7 @@ def add_points_from_geometry_to_las(
|
|
|
281
281
|
gdf = gpd.read_file(input_geometry)
|
|
282
282
|
|
|
283
283
|
if gdf.crs is None:
|
|
284
|
-
gdf.set_crs(
|
|
284
|
+
gdf.set_crs(crs=spatial_ref, inplace=True)
|
|
285
285
|
|
|
286
286
|
# Check if both Z in geometries and altitude_column are provided
|
|
287
287
|
if gdf.geometry.has_z.any() and altitude_column:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|