Arch SHP/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "==Powiązane==")
(Created page with "* Ogłoszenie na forum FreeCAD [https://forum.freecadweb.org/viewtopic.php?f=9&t=46150 Shapefile Importer] * Dyskusja na forum [https://community.osarch.org/discussion/comment/578#Comment_578 OSArch] * Import Eksport * FreeCAD Jak importować eksportować * Ustawienia Importu i Eksportu")
Line 28: Line 28:
==Powiązane==
==Powiązane==


* FreeCAD Forum thread announcement [https://forum.freecadweb.org/viewtopic.php?f=9&t=46150 Shapefile Importer]
* Ogłoszenie na forum FreeCAD [https://forum.freecadweb.org/viewtopic.php?f=9&t=46150 Shapefile Importer]
* Forum thread on [https://community.osarch.org/discussion/comment/578#Comment_578 OSArch] discussion
* Dyskusja na forum [https://community.osarch.org/discussion/comment/578#Comment_578 OSArch]
* [[Import_Export|Import Export]]
* [[Import_Export/pl|Import Eksport]]
* [[FreeCAD_Howto_Import_Export|FreeCAD Howto Import Export]]
* [[FreeCAD_Howto_Import_Export|FreeCAD Jak importować eksportować]]
* [[Import_Export_Preferences|Import Export Preferences]]
* [[Import_Export_Preferences/pl|Ustawienia Importu i Eksportu]]





Revision as of 07:34, 6 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