PostgreSQL xử lý chuỗi với xpath Tôi có bảng thế này Giờ tôi cần tách theo cấu trúc thế này Với cột định nghĩa cần cực kỳ ngắn gọn, 1 cụm từ thôi càng tốt Cột description trên kia thì […]
Góp nhặt của một kẻ mù công nghệ :p
PostgreSQL xử lý chuỗi với xpath Tôi có bảng thế này Giờ tôi cần tách theo cấu trúc thế này Với cột định nghĩa cần cực kỳ ngắn gọn, 1 cụm từ thôi càng tốt Cột description trên kia thì […]
PostgreSQL – Terminate Client Connect View To fix FATAL: sorry, too many clients already connection to server https://dothanhlong.org/postgresql-fatal-sorry-too-many-clients-already-connection-to-server/ — View: public.terminate_client_connect — DROP VIEW public.terminate_client_connect; CREATE OR REPLACE VIEW public.terminate_client_connect AS SELECT pg_terminate_backend(pg_stat_activity.pid) AS pg_terminate_backend FROM pg_stat_activity WHERE pg_stat_activity.pid <> […]
WebGIS Roadmap by Do Thanh Long (soiqualang_chentreu) Tình hình là hồi trước mình có làm một cái WebGIS Roadmap cho các bạn mới tìm hiểu về WebGIS có một cái nhìn hệ thống về mảng này. Bẵng một thời gian […]
PostgreSQL – Column to Json/Jsonb I have a table coso_nhayen like this row_to_json select row_to_json(row) from (select * from coso_nhayen) row LIMIT 5; to_jsonb SELECT id, to_jsonb(t.*) – 'id' AS data FROM coso_nhayen t LIMIT 5; json_agg SELECT json_agg(t) FROM coso_nhayen t; […]
QGIS merge points within distance Issue How One possible approach consists in the following steps: draw a buffer of 5m around points; dissolve the buffers which overlap; calculate the centroids of dissolved buffers. You can choose the tools with which you’re more comfortable. Example\ For […]
IONIC Cordova to Capacitor migration Add Capacitor Begin by opening your project in the terminal, ionic integrations enable capacitor # Delete capacitor.config.ts and try again npx cap init Build your Web App npm run build Add Platforms # You must […]
Filter in WMS servering by QGIS Server Full query https://geoviet_mapserv.dothanhlong.org/?MAP=/gis/mbgis/api.qgs&service=WMS&request=GetMap&layers=vn_vunghanhchinh&styles=&format=image%2Fpng&transparent=true&version=1.1.1&tiled=true&width=256&height=256&srs=EPSG%3A3857&bbox=11897270.578531114,1252344.2714243277,12523442.714243278,1878516.4071364922 Filter query https://geoviet_mapserv.dothanhlong.org/?MAP=/gis/mbgis/api.qgs&service=WMS&request=GetMap&layers=vn_vunghanhchinh&styles=&format=image/png&transparent=true&version=1.1.1&tiled=true&width=256&height=256&srs=EPSG:3857&bbox=11897270.578531114,1252344.2714243277,12523442.714243278,1878516.4071364922&filter=vn_vunghanhchinh: "ten_vi" = 'Phú Yên' Refernces https://docs.qgis.org/3.22/en/docs/server_manual/services/wms.html
[Linux] Adjust and increase the capacity of VDI virtual drive to install Ubuntu on VirtualBox Problems encountered I have deployed an ubuntu server on the virtualbox virtualization platform, I divided the hard drive space is 200GB, but after creating and […]
[PostgreSQL] Create a database from an exist database Create a database Postgres allows the use of any existing database on the server as a template when creating a new database. I’m not sure whether pgAdmin gives you the option on […]
[Bản đồ họ Việt P2] Lập bản đồ các dòng họ Việt Nam phần 2 – Xử lý dữ liệu Danh sách các phần ở đây: https://dothanhlong.org/p1-lap-ban-do-cac-dong-ho-viet-nam-phan-1/ https://dothanhlong.org/ban-do-ho-viet-p2-lap-ban-do-cac-dong-ho-viet-nam-phan-2-xu-ly-du-lieu/ Sau khi xem sơ dữ liệu, khối lượng khá lớn ~ 1.3 […]
PostgreSQL – Function to remove accents in string Loại bỏ dấu câu, chuyển câu có dấu thành không dấu trong PostgreSQL Ex: José, Jose, Jósé, Jóse -> Jose Load extension unaccent CREATE EXTENSION unaccent; Run SQL to remove accents in […]
Lập bản đồ các dòng họ Việt Nam phần 1 Danh sách các phần ở đây: https://dothanhlong.org/p1-lap-ban-do-cac-dong-ho-viet-nam-phan-1/ https://dothanhlong.org/ban-do-ho-viet-p2-lap-ban-do-cac-dong-ho-viet-nam-phan-2-xu-ly-du-lieu/ Vài lời nói đầu Mình có ý tưởng này từ những tuần cuối tháng 8, khi đó mình thấy một post từ […]
PostgreSQL update value in JSONB Tình cờ mình làm việc, cần update lại giá trị một key trong cột có kiểu là jsonb, thế là mình nghĩ json thì cũng là text thôi, replace là được, và đây là cách […]
Python concatenate multi videos Hôm nay tình cờ mình cần ghép nhiều video lại với nhau, chợt suy nghĩ hôm trước mình đã dùng python để convert video sang mp4 rồi, giờ thì thử dùng python ghép video luôn xem […]
[QGIS Basic] How to Download and Install the latest QGIS software Hello everyone, today I will guide you to download and install QGIS software in the most methodical way DOWNLOAD QGIS SOFTWARE To have the software, first we need to […]