SlideShare a Scribd company logo
Managing GeoData
with PostGIS
Volodymyr Gamula
KhmelnytskyiPy #1
Agenda:
• Current situation with GeoData
• What is PostGIS?
• Spatial Data types in PostGIS?
• Trivial problem
• SRID
• Indexing
• Another ways to use PostGIS for
• How to start working with PostGIS now?
• Program interfaces
• Conclusions
GeoData is an information
about geographic location,
stored in a specific format that
can be used in geographic
information systems (GIS)
What is GeoData?
Current situation with
GeoData
GeoData is everywhere!
Suggested timeslots
What is PostGIS?
– Paul Ramsey, Chair of PostGIS Steering Committee
“It is a Relational Database System that in
addition to text and numbers and dates, it can
also index spatial objects - points, lines, and
polygons.”
History
• PostgreSQL: May 1, 1995
• PostGIS: April 19, 2005
• Very well tested
• Massively used in production
Spatial Data types in
PostGIS
Point
• (x, y, z) coordinates
• Represents locations such as buildings, train
stations, etc.
• Also represents GPS latitute and longitude
• POINT(-51.1231325 12.213155)
LineString
• Multiple points connected by straight lines
• Represents things such as roads, routes, cables,
etc.
• LINESTRING(30 10, 10 30, 30 40)
Polygon
• Multiple points which encloses an area
• Represents boundaries such as properties, towns,
countries.
• POLYGON(30 10, 10 20, 20 40, 40 40, 30 10)
Trivial problem
Distance between two
points
2 dimensions:
Geographical distance:
What if we need to
recalculate distance for
every request?
Standard formula brings
a lot of complexity :(
So, what should we do?
Geohashing
PostGIS has a function
ST_Distance
ST_Distance can work with the next
types, which are basic PostGIS types:
• Geometry
• Geography
We should represent
(lat, lng) to PostGIS
Geography field
There are a lot of ways to do it:
• 'SRID=4326;POINT(83.106560 54.838971)'::geography
• ST_GeographyFromText('SRID=4326;POINT(-110 30)’)
• ST_GeomFromEWKT('SRID=4269;POINT(-110 30)’);
• ST_GeomFromGeoJSON(‚{"type":"Point","coordinates":
[-48.23456,20.12345]}')
• ST_GeomFromGML('

<gml:Point srsName="http://www.opengis.net/def/crs/EPSG/0/4326">

<gml:coordinates>45.67, 88.56</gml:coordinates>

</gml:Point>’);
• etc.
SRID
Query:
Why will this query be
so fast?
Indexes!
Indexes:
• B-Tree
• R-Tree
• GiST (Generalized Search Trees)
GiST Indexing for GeoData with
calculations
Another PosGIS
calculations:
• Area
• Distance
• Length
• Perimeter
• Union
• Difference
• Symmetric difference
How to start work with
PostGIS now?
• Install PostgreSQL
• Install PostGIS
• CREATE EXTENSION postgis;
• CREATE EXTENSION btree_gist;
• ALTER TABLE geodata_test ADD COLUMN location
geography(Point, 4326);
• CREATE INDEX ix_geodata_test_geohash ON
geodata_test USING GIST(location);
Program interfaces:
GeoAlchemy
GeoDjango
Conclusions
Thanks!
@vgamula

More Related Content

What's hot

Neo4j Spatial - GIS for the rest of us.
Neo4j Spatial - GIS for the rest of us.Neo4j Spatial - GIS for the rest of us.
Neo4j Spatial - GIS for the rest of us.
Peter Neubauer
 
Big Spatial(!) Data Processing mit GeoMesa. AGIT 2019, Salzburg, Austria.
Big Spatial(!) Data Processing mit GeoMesa. AGIT 2019, Salzburg, Austria.Big Spatial(!) Data Processing mit GeoMesa. AGIT 2019, Salzburg, Austria.
Big Spatial(!) Data Processing mit GeoMesa. AGIT 2019, Salzburg, Austria.
Anita Graser
 
Landslide_Mapping_Sri lanka
Landslide_Mapping_Sri lankaLandslide_Mapping_Sri lanka
Landslide_Mapping_Sri lanka
RASHID JAVED
 
Civil3 d in engineering survey
Civil3 d in engineering surveyCivil3 d in engineering survey
Civil3 d in engineering survey
noah kertich
 
Spatial is Not Special ?
Spatial is Not Special ?Spatial is Not Special ?
Spatial is Not Special ?
Maurizio Napolitano
 
Answer To Google Earth Universeand Evrything Else Abbreviated
Answer To Google Earth Universeand Evrything Else AbbreviatedAnswer To Google Earth Universeand Evrything Else Abbreviated
Answer To Google Earth Universeand Evrything Else Abbreviated
guestd2ceb9
 
Mining gps data
Mining gps dataMining gps data
Mining gps data
Jihad Abdullah
 

What's hot (7)

Neo4j Spatial - GIS for the rest of us.
Neo4j Spatial - GIS for the rest of us.Neo4j Spatial - GIS for the rest of us.
Neo4j Spatial - GIS for the rest of us.
 
Big Spatial(!) Data Processing mit GeoMesa. AGIT 2019, Salzburg, Austria.
Big Spatial(!) Data Processing mit GeoMesa. AGIT 2019, Salzburg, Austria.Big Spatial(!) Data Processing mit GeoMesa. AGIT 2019, Salzburg, Austria.
Big Spatial(!) Data Processing mit GeoMesa. AGIT 2019, Salzburg, Austria.
 
Landslide_Mapping_Sri lanka
Landslide_Mapping_Sri lankaLandslide_Mapping_Sri lanka
Landslide_Mapping_Sri lanka
 
Civil3 d in engineering survey
Civil3 d in engineering surveyCivil3 d in engineering survey
Civil3 d in engineering survey
 
Spatial is Not Special ?
Spatial is Not Special ?Spatial is Not Special ?
Spatial is Not Special ?
 
Answer To Google Earth Universeand Evrything Else Abbreviated
Answer To Google Earth Universeand Evrything Else AbbreviatedAnswer To Google Earth Universeand Evrything Else Abbreviated
Answer To Google Earth Universeand Evrything Else Abbreviated
 
Mining gps data
Mining gps dataMining gps data
Mining gps data
 

Viewers also liked

It account manager kpi
It account manager kpiIt account manager kpi
It account manager kpi
gkatgutos
 
AAM-Saidur-Rahman
AAM-Saidur-RahmanAAM-Saidur-Rahman
AAM-Saidur-Rahman
Syedur Rahman
 
Account associate kpi
Account associate kpiAccount associate kpi
Account associate kpi
gkatgutos
 
CVformat_syed_final
CVformat_syed_finalCVformat_syed_final
CVformat_syed_final
Syedur Rahman
 
Facebook Hits 8 Billion Daily Native Video Views | The Opportunity For Busine...
Facebook Hits 8 Billion Daily Native Video Views | The Opportunity For Busine...Facebook Hits 8 Billion Daily Native Video Views | The Opportunity For Busine...
Facebook Hits 8 Billion Daily Native Video Views | The Opportunity For Busine...
Sajid Ali
 
01 4547315236749 00001
01 4547315236749 0000101 4547315236749 00001
01 4547315236749 00001
Pilwoo Nam
 
Business account manager kpi
Business account manager kpiBusiness account manager kpi
Business account manager kpi
gkatgutos
 
Corporate account manager kpi
Corporate account manager kpiCorporate account manager kpi
Corporate account manager kpi
gkatgutos
 
Regional account manager kpi
Regional account manager kpiRegional account manager kpi
Regional account manager kpi
gkatgutos
 
15 способов перестать откладывать "на завтра"
15 способов перестать откладывать "на завтра"15 способов перестать откладывать "на завтра"
15 способов перестать откладывать "на завтра"
Task & Solution
 
Account payable clerk kpi
Account payable clerk kpiAccount payable clerk kpi
Account payable clerk kpi
gkatgutos
 
Metal casting
Metal castingMetal casting
Metal casting
Aruna c p
 
Oga victo
Oga victoOga victo
Oga victo
Victor Amadi
 
Need A Job? Try These Work Suggestion!
Need A Job? Try These Work Suggestion!Need A Job? Try These Work Suggestion!
Need A Job? Try These Work Suggestion!
drysample6224
 
Clinical radiography for emergency doctors soft tissue organs trauma
Clinical radiography for emergency doctors soft tissue organs traumaClinical radiography for emergency doctors soft tissue organs trauma
Clinical radiography for emergency doctors soft tissue organs trauma
Mohamed Shaaban
 
Học viện khởi nghiệp hàng đầu Việt Nam
Học viện khởi nghiệp hàng đầu Việt NamHọc viện khởi nghiệp hàng đầu Việt Nam
Học viện khởi nghiệp hàng đầu Việt Namtory563
 
2015_Variabele_managementbeloning_audit_quality_Laan_VanNieuwAmerongen_Strijker
2015_Variabele_managementbeloning_audit_quality_Laan_VanNieuwAmerongen_Strijker2015_Variabele_managementbeloning_audit_quality_Laan_VanNieuwAmerongen_Strijker
2015_Variabele_managementbeloning_audit_quality_Laan_VanNieuwAmerongen_StrijkerAnne Strijker
 
Congenital anomalies
Congenital anomaliesCongenital anomalies
Congenital anomalies
Mohamed Shaaban
 
Brain Infections3
Brain Infections3Brain Infections3
Brain Infections3
Mohamed Shaaban
 

Viewers also liked (19)

It account manager kpi
It account manager kpiIt account manager kpi
It account manager kpi
 
AAM-Saidur-Rahman
AAM-Saidur-RahmanAAM-Saidur-Rahman
AAM-Saidur-Rahman
 
Account associate kpi
Account associate kpiAccount associate kpi
Account associate kpi
 
CVformat_syed_final
CVformat_syed_finalCVformat_syed_final
CVformat_syed_final
 
Facebook Hits 8 Billion Daily Native Video Views | The Opportunity For Busine...
Facebook Hits 8 Billion Daily Native Video Views | The Opportunity For Busine...Facebook Hits 8 Billion Daily Native Video Views | The Opportunity For Busine...
Facebook Hits 8 Billion Daily Native Video Views | The Opportunity For Busine...
 
01 4547315236749 00001
01 4547315236749 0000101 4547315236749 00001
01 4547315236749 00001
 
Business account manager kpi
Business account manager kpiBusiness account manager kpi
Business account manager kpi
 
Corporate account manager kpi
Corporate account manager kpiCorporate account manager kpi
Corporate account manager kpi
 
Regional account manager kpi
Regional account manager kpiRegional account manager kpi
Regional account manager kpi
 
15 способов перестать откладывать "на завтра"
15 способов перестать откладывать "на завтра"15 способов перестать откладывать "на завтра"
15 способов перестать откладывать "на завтра"
 
Account payable clerk kpi
Account payable clerk kpiAccount payable clerk kpi
Account payable clerk kpi
 
Metal casting
Metal castingMetal casting
Metal casting
 
Oga victo
Oga victoOga victo
Oga victo
 
Need A Job? Try These Work Suggestion!
Need A Job? Try These Work Suggestion!Need A Job? Try These Work Suggestion!
Need A Job? Try These Work Suggestion!
 
Clinical radiography for emergency doctors soft tissue organs trauma
Clinical radiography for emergency doctors soft tissue organs traumaClinical radiography for emergency doctors soft tissue organs trauma
Clinical radiography for emergency doctors soft tissue organs trauma
 
Học viện khởi nghiệp hàng đầu Việt Nam
Học viện khởi nghiệp hàng đầu Việt NamHọc viện khởi nghiệp hàng đầu Việt Nam
Học viện khởi nghiệp hàng đầu Việt Nam
 
2015_Variabele_managementbeloning_audit_quality_Laan_VanNieuwAmerongen_Strijker
2015_Variabele_managementbeloning_audit_quality_Laan_VanNieuwAmerongen_Strijker2015_Variabele_managementbeloning_audit_quality_Laan_VanNieuwAmerongen_Strijker
2015_Variabele_managementbeloning_audit_quality_Laan_VanNieuwAmerongen_Strijker
 
Congenital anomalies
Congenital anomaliesCongenital anomalies
Congenital anomalies
 
Brain Infections3
Brain Infections3Brain Infections3
Brain Infections3
 

Similar to Managing GeoData with PostGIS @ KhmelnytskyiPy #1

Mobile LBS
Mobile LBSMobile LBS
Mobile LBS
Jaak Laineste
 
Day 6 - PostGIS
Day 6 - PostGISDay 6 - PostGIS
Day 6 - PostGIS
Barry Jones
 
Building Location Aware Apps - Get Started with PostGIS, PART I
Building Location Aware Apps - Get Started with PostGIS, PART IBuilding Location Aware Apps - Get Started with PostGIS, PART I
Building Location Aware Apps - Get Started with PostGIS, PART I
lasmasi
 
Pg intro part1-theory_slides
Pg intro part1-theory_slidesPg intro part1-theory_slides
Pg intro part1-theory_slides
lasmasi
 
Geek Sync | Having Fun with Spatial Data
Geek Sync | Having Fun with Spatial DataGeek Sync | Having Fun with Spatial Data
Geek Sync | Having Fun with Spatial Data
IDERA Software
 
Post gispguk
Post gispgukPost gispguk
Post gispguk
lbtlsystems
 
2017 RM-URISA Track: Spatial SQL - The Best Kept Secret in the Geospatial World
2017 RM-URISA Track:  Spatial SQL - The Best Kept Secret in the Geospatial World2017 RM-URISA Track:  Spatial SQL - The Best Kept Secret in the Geospatial World
2017 RM-URISA Track: Spatial SQL - The Best Kept Secret in the Geospatial World
GIS in the Rockies
 
Data_Sources
Data_SourcesData_Sources
Data_Sources
Lyndy Worsham, GISP
 
Introduction and Application of GIS
Introduction and Application of GISIntroduction and Application of GIS
Introduction and Application of GIS
Satish Taji
 
Postgres Vision 2018: PostGIS and Spatial Extensions
Postgres Vision 2018: PostGIS and Spatial ExtensionsPostgres Vision 2018: PostGIS and Spatial Extensions
Postgres Vision 2018: PostGIS and Spatial Extensions
EDB
 
Postgis for Enterprise
Postgis for EnterprisePostgis for Enterprise
Postgis for Enterprise
GeoLivre Conference
 
Q GIS Training Presentation
Q GIS Training PresentationQ GIS Training Presentation
Q GIS Training Presentation
Shahid Imran Khan
 
SQLBits X SQL Server 2012 Spatial
SQLBits X SQL Server 2012 SpatialSQLBits X SQL Server 2012 Spatial
SQLBits X SQL Server 2012 Spatial
Michael Rys
 
The state of geo in ElasticSearch
The state of geo in ElasticSearchThe state of geo in ElasticSearch
The state of geo in ElasticSearch
Fan Robbin
 
gis mathematicalgis mathematical modelling
gis mathematicalgis mathematical modellinggis mathematicalgis mathematical modelling
gis mathematicalgis mathematical modelling
hxusmze
 
Introduction to GIS.pptx
Introduction to GIS.pptxIntroduction to GIS.pptx
Introduction to GIS.pptx
Xian shiyou university
 
GIS Introduction.ppt
GIS Introduction.pptGIS Introduction.ppt
GIS Introduction.ppt
misterjis
 
Opensource gis development - part 2
Opensource gis development - part 2Opensource gis development - part 2
Opensource gis development - part 2
Andrea Antonello
 
Gislec1
Gislec1Gislec1
A Journey to the World of GIS
A Journey to the World of GISA Journey to the World of GIS
A Journey to the World of GIS
Nishant Sinha
 

Similar to Managing GeoData with PostGIS @ KhmelnytskyiPy #1 (20)

Mobile LBS
Mobile LBSMobile LBS
Mobile LBS
 
Day 6 - PostGIS
Day 6 - PostGISDay 6 - PostGIS
Day 6 - PostGIS
 
Building Location Aware Apps - Get Started with PostGIS, PART I
Building Location Aware Apps - Get Started with PostGIS, PART IBuilding Location Aware Apps - Get Started with PostGIS, PART I
Building Location Aware Apps - Get Started with PostGIS, PART I
 
Pg intro part1-theory_slides
Pg intro part1-theory_slidesPg intro part1-theory_slides
Pg intro part1-theory_slides
 
Geek Sync | Having Fun with Spatial Data
Geek Sync | Having Fun with Spatial DataGeek Sync | Having Fun with Spatial Data
Geek Sync | Having Fun with Spatial Data
 
Post gispguk
Post gispgukPost gispguk
Post gispguk
 
2017 RM-URISA Track: Spatial SQL - The Best Kept Secret in the Geospatial World
2017 RM-URISA Track:  Spatial SQL - The Best Kept Secret in the Geospatial World2017 RM-URISA Track:  Spatial SQL - The Best Kept Secret in the Geospatial World
2017 RM-URISA Track: Spatial SQL - The Best Kept Secret in the Geospatial World
 
Data_Sources
Data_SourcesData_Sources
Data_Sources
 
Introduction and Application of GIS
Introduction and Application of GISIntroduction and Application of GIS
Introduction and Application of GIS
 
Postgres Vision 2018: PostGIS and Spatial Extensions
Postgres Vision 2018: PostGIS and Spatial ExtensionsPostgres Vision 2018: PostGIS and Spatial Extensions
Postgres Vision 2018: PostGIS and Spatial Extensions
 
Postgis for Enterprise
Postgis for EnterprisePostgis for Enterprise
Postgis for Enterprise
 
Q GIS Training Presentation
Q GIS Training PresentationQ GIS Training Presentation
Q GIS Training Presentation
 
SQLBits X SQL Server 2012 Spatial
SQLBits X SQL Server 2012 SpatialSQLBits X SQL Server 2012 Spatial
SQLBits X SQL Server 2012 Spatial
 
The state of geo in ElasticSearch
The state of geo in ElasticSearchThe state of geo in ElasticSearch
The state of geo in ElasticSearch
 
gis mathematicalgis mathematical modelling
gis mathematicalgis mathematical modellinggis mathematicalgis mathematical modelling
gis mathematicalgis mathematical modelling
 
Introduction to GIS.pptx
Introduction to GIS.pptxIntroduction to GIS.pptx
Introduction to GIS.pptx
 
GIS Introduction.ppt
GIS Introduction.pptGIS Introduction.ppt
GIS Introduction.ppt
 
Opensource gis development - part 2
Opensource gis development - part 2Opensource gis development - part 2
Opensource gis development - part 2
 
Gislec1
Gislec1Gislec1
Gislec1
 
A Journey to the World of GIS
A Journey to the World of GISA Journey to the World of GIS
A Journey to the World of GIS
 

Recently uploaded

Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
XfilesPro
 
WMF 2024 - Unlocking the Future of Data Powering Next-Gen AI with Vector Data...
WMF 2024 - Unlocking the Future of Data Powering Next-Gen AI with Vector Data...WMF 2024 - Unlocking the Future of Data Powering Next-Gen AI with Vector Data...
WMF 2024 - Unlocking the Future of Data Powering Next-Gen AI with Vector Data...
Luigi Fugaro
 
The Rising Future of CPaaS in the Middle East 2024
The Rising Future of CPaaS in the Middle East 2024The Rising Future of CPaaS in the Middle East 2024
The Rising Future of CPaaS in the Middle East 2024
Yara Milbes
 
Migration From CH 1.0 to CH 2.0 and Mule 4.6 & Java 17 Upgrade.pptx
Migration From CH 1.0 to CH 2.0 and  Mule 4.6 & Java 17 Upgrade.pptxMigration From CH 1.0 to CH 2.0 and  Mule 4.6 & Java 17 Upgrade.pptx
Migration From CH 1.0 to CH 2.0 and Mule 4.6 & Java 17 Upgrade.pptx
ervikas4
 
Enums On Steroids - let's look at sealed classes !
Enums On Steroids - let's look at sealed classes !Enums On Steroids - let's look at sealed classes !
Enums On Steroids - let's look at sealed classes !
Marcin Chrost
 
Oracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptxOracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptx
Remote DBA Services
 
Benefits of Artificial Intelligence in Healthcare!
Benefits of  Artificial Intelligence in Healthcare!Benefits of  Artificial Intelligence in Healthcare!
Benefits of Artificial Intelligence in Healthcare!
Prestware
 
Preparing Non - Technical Founders for Engaging a Tech Agency
Preparing Non - Technical Founders for Engaging  a  Tech AgencyPreparing Non - Technical Founders for Engaging  a  Tech Agency
Preparing Non - Technical Founders for Engaging a Tech Agency
ISH Technologies
 
DECODING JAVA THREAD DUMPS: MASTER THE ART OF ANALYSIS
DECODING JAVA THREAD DUMPS: MASTER THE ART OF ANALYSISDECODING JAVA THREAD DUMPS: MASTER THE ART OF ANALYSIS
DECODING JAVA THREAD DUMPS: MASTER THE ART OF ANALYSIS
Tier1 app
 
DevOps Consulting Company | Hire DevOps Services
DevOps Consulting Company | Hire DevOps ServicesDevOps Consulting Company | Hire DevOps Services
DevOps Consulting Company | Hire DevOps Services
seospiralmantra
 
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
Bert Jan Schrijver
 
一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理
dakas1
 
Liberarsi dai framework con i Web Component.pptx
Liberarsi dai framework con i Web Component.pptxLiberarsi dai framework con i Web Component.pptx
Liberarsi dai framework con i Web Component.pptx
Massimo Artizzu
 
一比一原版(sdsu毕业证书)圣地亚哥州立大学毕业证如何办理
一比一原版(sdsu毕业证书)圣地亚哥州立大学毕业证如何办理一比一原版(sdsu毕业证书)圣地亚哥州立大学毕业证如何办理
一比一原版(sdsu毕业证书)圣地亚哥州立大学毕业证如何办理
kgyxske
 
Using Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query PerformanceUsing Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query Performance
Grant Fritchey
 
WWDC 2024 Keynote Review: For CocoaCoders Austin
WWDC 2024 Keynote Review: For CocoaCoders AustinWWDC 2024 Keynote Review: For CocoaCoders Austin
WWDC 2024 Keynote Review: For CocoaCoders Austin
Patrick Weigel
 
How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?
ToXSL Technologies
 
14 th Edition of International conference on computer vision
14 th Edition of International conference on computer vision14 th Edition of International conference on computer vision
14 th Edition of International conference on computer vision
ShulagnaSarkar2
 
INTRODUCTION TO AI CLASSICAL THEORY TARGETED EXAMPLES
INTRODUCTION TO AI CLASSICAL THEORY TARGETED EXAMPLESINTRODUCTION TO AI CLASSICAL THEORY TARGETED EXAMPLES
INTRODUCTION TO AI CLASSICAL THEORY TARGETED EXAMPLES
anfaltahir1010
 
Baha Majid WCA4Z IBM Z Customer Council Boston June 2024.pdf
Baha Majid WCA4Z IBM Z Customer Council Boston June 2024.pdfBaha Majid WCA4Z IBM Z Customer Council Boston June 2024.pdf
Baha Majid WCA4Z IBM Z Customer Council Boston June 2024.pdf
Baha Majid
 

Recently uploaded (20)

Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
 
WMF 2024 - Unlocking the Future of Data Powering Next-Gen AI with Vector Data...
WMF 2024 - Unlocking the Future of Data Powering Next-Gen AI with Vector Data...WMF 2024 - Unlocking the Future of Data Powering Next-Gen AI with Vector Data...
WMF 2024 - Unlocking the Future of Data Powering Next-Gen AI with Vector Data...
 
The Rising Future of CPaaS in the Middle East 2024
The Rising Future of CPaaS in the Middle East 2024The Rising Future of CPaaS in the Middle East 2024
The Rising Future of CPaaS in the Middle East 2024
 
Migration From CH 1.0 to CH 2.0 and Mule 4.6 & Java 17 Upgrade.pptx
Migration From CH 1.0 to CH 2.0 and  Mule 4.6 & Java 17 Upgrade.pptxMigration From CH 1.0 to CH 2.0 and  Mule 4.6 & Java 17 Upgrade.pptx
Migration From CH 1.0 to CH 2.0 and Mule 4.6 & Java 17 Upgrade.pptx
 
Enums On Steroids - let's look at sealed classes !
Enums On Steroids - let's look at sealed classes !Enums On Steroids - let's look at sealed classes !
Enums On Steroids - let's look at sealed classes !
 
Oracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptxOracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptx
 
Benefits of Artificial Intelligence in Healthcare!
Benefits of  Artificial Intelligence in Healthcare!Benefits of  Artificial Intelligence in Healthcare!
Benefits of Artificial Intelligence in Healthcare!
 
Preparing Non - Technical Founders for Engaging a Tech Agency
Preparing Non - Technical Founders for Engaging  a  Tech AgencyPreparing Non - Technical Founders for Engaging  a  Tech Agency
Preparing Non - Technical Founders for Engaging a Tech Agency
 
DECODING JAVA THREAD DUMPS: MASTER THE ART OF ANALYSIS
DECODING JAVA THREAD DUMPS: MASTER THE ART OF ANALYSISDECODING JAVA THREAD DUMPS: MASTER THE ART OF ANALYSIS
DECODING JAVA THREAD DUMPS: MASTER THE ART OF ANALYSIS
 
DevOps Consulting Company | Hire DevOps Services
DevOps Consulting Company | Hire DevOps ServicesDevOps Consulting Company | Hire DevOps Services
DevOps Consulting Company | Hire DevOps Services
 
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
J-Spring 2024 - Going serverless with Quarkus, GraalVM native images and AWS ...
 
一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理
 
Liberarsi dai framework con i Web Component.pptx
Liberarsi dai framework con i Web Component.pptxLiberarsi dai framework con i Web Component.pptx
Liberarsi dai framework con i Web Component.pptx
 
一比一原版(sdsu毕业证书)圣地亚哥州立大学毕业证如何办理
一比一原版(sdsu毕业证书)圣地亚哥州立大学毕业证如何办理一比一原版(sdsu毕业证书)圣地亚哥州立大学毕业证如何办理
一比一原版(sdsu毕业证书)圣地亚哥州立大学毕业证如何办理
 
Using Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query PerformanceUsing Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query Performance
 
WWDC 2024 Keynote Review: For CocoaCoders Austin
WWDC 2024 Keynote Review: For CocoaCoders AustinWWDC 2024 Keynote Review: For CocoaCoders Austin
WWDC 2024 Keynote Review: For CocoaCoders Austin
 
How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?
 
14 th Edition of International conference on computer vision
14 th Edition of International conference on computer vision14 th Edition of International conference on computer vision
14 th Edition of International conference on computer vision
 
INTRODUCTION TO AI CLASSICAL THEORY TARGETED EXAMPLES
INTRODUCTION TO AI CLASSICAL THEORY TARGETED EXAMPLESINTRODUCTION TO AI CLASSICAL THEORY TARGETED EXAMPLES
INTRODUCTION TO AI CLASSICAL THEORY TARGETED EXAMPLES
 
Baha Majid WCA4Z IBM Z Customer Council Boston June 2024.pdf
Baha Majid WCA4Z IBM Z Customer Council Boston June 2024.pdfBaha Majid WCA4Z IBM Z Customer Council Boston June 2024.pdf
Baha Majid WCA4Z IBM Z Customer Council Boston June 2024.pdf
 

Managing GeoData with PostGIS @ KhmelnytskyiPy #1