Alignment api update (#6817)

* Some basic COGO survey points functions

* Update alignment api

Includes defining alignment segment by segment, automatic geometry definitions, and automatric stationing and referents

* Fixes bonsai import alignment from csv

* Adds DMS angle conversion functions to COGO api

* Updated per @civilx64 review comments

* Fixes problem with segment representations

* Fixes problem with segment transition codes

* Allows for compound vertical and horizontal curves

* Implements callbacks for referent naming

* Renames angle_from_bearing to bearing2dd for consistency with ifcopenshell.util.geolocation.dms2dd. Removes angle_from_dms because it duplicates dms2dd

* Documents register_referent_name_callback

* Fixes all sorts of problems with Cant/SegRefCurve implementation

* refactor referent unit tests to use a fixture for test setup

* lint with black

---------

Co-authored-by: Scott Lecher <civilx64@gmail.com>
This commit is contained in:
Richard Brice
2025-07-08 10:09:14 -07:00
committed by GitHub
parent ad8d02bfed
commit 40f92d15c3
76 changed files with 3645 additions and 1839 deletions
@@ -16,31 +16,67 @@
# You should have received a copy of the GNU Lesser General Public License
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
import ifcopenshell
import ifcopenshell.util.stationing as sta
def _test_si_stations():
file = ifcopenshell.file(schema="IFC4X3_ADD2")
project = file.createIfcProject(GlobalId=ifcopenshell.guid.new(),Name="Test")
length = ifcopenshell.api.unit.add_si_unit(file,unit_type="LENGTHUNIT") # meter
ifcopenshell.api.unit.assign_unit(file,units=[length])
s = sta.station_as_string(file,0.0)
assert s == "0+000.000"
s = sta.station_as_string(file,100.00)
assert s == "0+100.000"
s = sta.station_as_string(file,-100.00)
assert s == "-0+100.000"
s = sta.station_as_string(file,123456.789)
assert s == "123+456.789"
s = sta.station_as_string(file,-123456.789)
assert s == "-123+456.789"
def _test_si_stations_millimeter():
file = ifcopenshell.file(schema="IFC4X3_ADD2")
project = file.createIfcProject(GlobalId=ifcopenshell.guid.new(),Name="Test")
ifcopenshell.api.unit.assign_unit(file)
s = sta.station_as_string(file,100.00)
assert s == "0+000.100"
s = sta.station_as_string(file,1000.00)
assert s == "0+001.000"
def _test_us_stations():
file = ifcopenshell.file(schema="IFC4X3_ADD2")
project = file.createIfcProject(GlobalId=ifcopenshell.guid.new(),Name="Test")
length = ifcopenshell.api.unit.add_conversion_based_unit(file,name="foot")
ifcopenshell.api.unit.assign_unit(file,units=[length])
s = sta.station_as_string(file,0.0)
assert s == "0+00.00"
s = sta.station_as_string(file,100.00)
assert s == "1+00.00"
s = sta.station_as_string(file,-100.00)
assert s == "-1+00.00"
s = sta.station_as_string(file,123456.789)
assert s == "1234+56.79"
s = sta.station_as_string(file,-123456.789)
assert s == "-1234+56.79"
def test_station_as_string():
# test with a bunch of "random" station values
s = sta.station_as_string(0.0)
assert s == "0+000.000"
_test_si_stations()
_test_si_stations_millimeter()
_test_us_stations()
s = sta.station_as_string(0.0, 2, 2)
assert s == "0+00.00"
s = sta.station_as_string(0.0, 2)
assert s == "0+00.000"
s = sta.station_as_string(100.00)
assert s == "0+100.000"
s = sta.station_as_string(-100.00)
assert s == "-0+100.000"
s = sta.station_as_string(123456.789, 2, 2)
assert s == "1234+56.79"
s = sta.station_as_string(-123456.789, 2, 2)
assert s == "-1234+56.79"
s = sta.station_as_string(123456.789, 3, 4)
assert s == "123+456.7890"
test_station_as_string()