Arch SHP/pl: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Created page with "==Powiązane==")
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
<languages/>


{{Docnav
{{Docnav/pl
|[[Arch_3DS|3DS]]
|[[Arch_3DS/pl|3DS]]
|
|
|[[Arch_Workbench|Arch]]
|[[Arch_Workbench/pl|środowisko pracy Architektura]]
|IconL=
|IconL=
|IconR=
|IconR=
Line 12: Line 12:
{{TOCright}}
{{TOCright}}


== Description ==
<span id="Description"></span>
==Opis==


FreeCAD is able to import [https://en.wikipedia.org/wiki/Shapefile shapefiles]
FreeCAD is able to import [https://en.wikipedia.org/wiki/Shapefile shapefiles]
Line 20: Line 21:
Shapefiles are composed of 3 files (a .shp, a .shx and a .dbf file), any of them can be used with this importer. They are composed of 2D objects of one geometry type, that can be polygons/faces, polylines or point cloud (all 3 types are supported by this importer), and custom fields, for which each face, polyline or point in the shapefile has a value. This is the real gem of GIS, to bind a database with geometry. The most common use is to have one field to represent the elevation coordinate of each shape in the file. On opening the file, the importer will ask you what field to get shape elevations from.
Shapefiles are composed of 3 files (a .shp, a .shx and a .dbf file), any of them can be used with this importer. They are composed of 2D objects of one geometry type, that can be polygons/faces, polylines or point cloud (all 3 types are supported by this importer), and custom fields, for which each face, polyline or point in the shapefile has a value. This is the real gem of GIS, to bind a database with geometry. The most common use is to have one field to represent the elevation coordinate of each shape in the file. On opening the file, the importer will ask you what field to get shape elevations from.


Z każdego pliku kształtu w programie FreeCAD zostanie utworzony jeden kształt.
One shape will be created from each shapefile in FreeCAD.


Należy zauważyć, że kwestia jednostek georeferencyjnych, przy setkach systemów projekcyjnych używanych na całym świecie, nie jest obecnie rozpatrywana. Współrzędne z pliku są używane w stanie „takim, jakim są”.
Note that all the question of georeferenced units, with hundreds of projection systems used worldwide, is not treated at the moment. The coordinates from the file are used "as is".


== Related ==
<span id="Related"></span>
==Powiązane==


* FreeCAD Forum thread announcement [https://forum.freecadweb.org/viewtopic.php?f=9&t=46150 Shapefile Importer]
* FreeCAD Forum thread announcement [https://forum.freecadweb.org/viewtopic.php?f=9&t=46150 Shapefile Importer]

Revision as of 19:48, 5 May 2024

Opis

FreeCAD is able to import shapefiles

The importer uses the shapefile.py library from https://github.com/GeospatialPython/pyshp, it is not found on your system on first run, the importer will propose to download and install it for you.

Shapefiles are composed of 3 files (a .shp, a .shx and a .dbf file), any of them can be used with this importer. They are composed of 2D objects of one geometry type, that can be polygons/faces, polylines or point cloud (all 3 types are supported by this importer), and custom fields, for which each face, polyline or point in the shapefile has a value. This is the real gem of GIS, to bind a database with geometry. The most common use is to have one field to represent the elevation coordinate of each shape in the file. On opening the file, the importer will ask you what field to get shape elevations from.

Z każdego pliku kształtu w programie FreeCAD zostanie utworzony jeden kształt.

Należy zauważyć, że kwestia jednostek georeferencyjnych, przy setkach systemów projekcyjnych używanych na całym świecie, nie jest obecnie rozpatrywana. Współrzędne z pliku są używane w stanie „takim, jakim są”.

Powiązane