-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2.19 updates: add GisFeature class speed up raster conversions simplify large polygon display Meshes on Send specify QGIS max version generate installers for Mac (we had it already, just needed a change in CI) * add Gis feature class on send and receive (#195) * send GisFeature * remove display val from child geometries * receive GisFeature * fix * ensure units are strings * fix failing test * qgis max version (#194) * raster conversion speed (#193) * draft based on c# (adjust offset/rotation; XY directions) * speed up, no offset * to test, add correction XY * fixed * final fixes * move function out * non-negative scale and dimensions * more optimized renderers, fixed "correction" for rasters * remove specklepy call in helpers * Revert "remove specklepy call in helpers" This reverts commit de002e0. * rely on string type for dataStorage.currentUnits * fix units format * standardize WKT format (#197) * updato to m1 resource on CI, aligned with specklesystems/speckle-sharp#3449 (no rosetta) (#204) * raster renderer edge cases (#206) * simplify and triangulate large meshes (#201) * simplify and triangulate large meshes * more clear logic with adding points * apply coeff to inner rings * fix indexError * max pts * updated links * tags * remove extra readme * syntax error
- Loading branch information
1 parent
8463c82
commit 16affa5
Showing
15 changed files
with
1,030 additions
and
858 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from typing import List, Optional | ||
|
||
from specklepy.objects.base import Base | ||
|
||
|
||
class GisFeature( | ||
Base, speckle_type="Objects.GIS.GisFeature", detachable={"displayValue"} | ||
): | ||
"""GIS Feature""" | ||
|
||
geometry: Optional[List[Base]] = None | ||
attributes: Base | ||
displayValue: Optional[List[Base]] = None |
Oops, something went wrong.