3d point cloud las to raster
Laser Scanner, SCRIPTS

Vertical Wall Rasterizer – A Custom QGIS Plugin for Converting Point Clouds to Georeferenced Facade Images

As part of my work in geospatial data processing and 3D mapping, I’ve developed a new custom QGIS plugin called Vertical Wall Rasterizer. This tool is designed to streamline the workflow of extracting and visualizing vertical surfaces (like building facades or retaining walls) from LAS point clouds — especially those generated by SLAM-based indoor scanners, drones, or static LiDAR.

Συνέχεια ανάγνωσης «Vertical Wall Rasterizer – A Custom QGIS Plugin for Converting Point Clouds to Georeferenced Facade Images»
Τοπογραφία, SCRIPTS

Μετατροπή από WGS84 σε Ελληνικό Γεωδαιτικό Σύστημα Αναφοράς ΕΓΣΑ’87 HEPOS

Η μετατροπή συντεταγμένων από το παγκόσμιο σύστημα WGS84 στο ελληνικό σύστημα ΕΓΣΑ’87 γίνεται μέσω των παρακάτω βημάτων:

Συνέχεια ανάγνωσης «Μετατροπή από WGS84 σε Ελληνικό Γεωδαιτικό Σύστημα Αναφοράς ΕΓΣΑ’87 HEPOS»
python-TIN-conours-breaklines
Τοπογραφία, SCRIPTS

Python Script for Efficient TIN Creation and Contours

Automating TIN Creation and Contour Extraction Using Python and Breaklines

Generating Triangulated Irregular Networks (TINs) and extracting contours are crucial tasks in geospatial analysis and civil engineering. This article presents a Python script that automates TIN creation and contour extraction from DXF files containing 3D points and breaklines. The script integrates several libraries to process the data, generate triangulations, and export the results to DXF format.

Συνέχεια ανάγνωσης «Python Script for Efficient TIN Creation and Contours»
SCRIPTS

Python κώδικας για την εξαγωγή hash code από DXF σε PDF

Για την ηλεκτρονική υπογραφή ενός τοπογραφικού διαγράμματος είναι απαραίτητο να δημιουργηθεί ένα αρχείο PDF που περιέχει το hash code από το DXF. Σε παλαιότερο άρθρο έχουμε δει και άλλα παραδείγματα για την εξαγωγή του hash code .

Συνέχεια ανάγνωσης «Python κώδικας για την εξαγωγή hash code από DXF σε PDF»
SCRIPTS

Python Code to Convert a list of Images to PDF

In this post a python code is presented to get a list of images from a directory and convert them to a PDF.

The code utilizes the os and the fpdf library. PyFPDF is a library for PDF document generation under Python, ported from PHP.

The code gets the file names of images in the current directory and then creates a PDF of constant width.

import os
from fpdf import FPDF


pdf = FPDF()
pdf.set_auto_page_break(0)

files = os.listdir()

for file in files:
    if file.endswith(('.jpg', '.png', 'jpeg')):
        pdf.add_page()
        pdf.image(file, x = None, y = None, w = 180, h = 0, type = '', link = '')

pdf.output('image2pdf.pdf', 'F')