Skip to content
View puijterwaal's full-sized avatar

Block or report puijterwaal

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Convert a VIKTOR SDK GeoPoint, GeoPo... Convert a VIKTOR SDK GeoPoint, GeoPolyline or GeoPolygon in RD into a shapely Point, LineString or Polygon
    1
    from shapely.geometry import Point, LineString, Polygon
    2
    from viktor.geometry import GeoPoint, GeoPolyline, GeoPolygon
    3
    
                  
    4
    def convert_geo_point_to_shapeply_point(geo_point: GeoPoint) -> Point:
    5
        """Convert a VIKTOR SDK GeoPoint in RD into a shapely Point"""
  2. Parse AHN4, get heigths as numpy arr... Parse AHN4, get heigths as numpy array or pandas dataframe
    1
    import itertools
    2
    import math
    3
    from io import BytesIO
    4
    from typing import List
    5
    
                  
  3. Conversion functions from shapely to... Conversion functions from shapely to viktor geopoints, geopolylines and geopolygons for visualisation on a map
    1
    from shapely import LineString, Polygon, Point
    2
    from viktor.geometry import GeoPoint, GeoPolygon, Geopolyline
    3
    
                  
    4
    def convert_shapely_point_to_geo_point(point: Point) -> GeoPoint:
    5
        """Convert a shapely Point in RD coordinates into a VIKTOR GeoPoint"""
  4. Parse DXF files with VIKTOR Parse DXF files with VIKTOR
    1
    import os
    2
    from pathlib import Path
    3
    from tempfile import NamedTemporaryFile
    4
    import ezdxf
    5
    from viktor import File