SlideShare a Scribd company logo
1 of 45
Maps
For web developers and enthusiasts
Who?
Konstantin Delchev

http://gis.stackexchange.com/users/8174/kode
https://twitter.com/kdelchev
Contents
1. Map projections
2. Map providers
3. How to create your own map
Earth…
…is flat…
…when using projections.
• Projections

• Datums
• Geocentric datums
• WSG84

• Local datums
• NAD83
• NAD27
• ED1950
Degrees Minutes Seconds
Latitude and Longitude
• Latitude, Longitude = 42° 41' 53.0916" , 23° 19' 18.894“ (geographic
coordinates)
• Latitude = 42 + 41/60 + 53.0916/3600 = 42.698081 (decimal)
• Longitude = 23 + 19/60 + 18.894/3600 = 23.317191 (decimal)
• Latitude, Longitude = 42.698081, 23.317191 (in decimal)
• 1 min ≈ 1.85km
• 1 sec ≈ 31m
• Latitude distance ≈ 42.67 * 60 * 1.85 ≈ 4 736km
• Longitude distance ≈ 23.32 * 60 * 1.85 ≈ 2 588km
• Use at least 6
symbols after
the dot for keeping
max precision

• Degrees vary in
different places
in the world
by 21.5km
Universal Traverse Mercator
UTM – 328204 E (easting), 4746040 N (northing)
Aspects of projections
•
•
•
•
•
•
•

Distance
Scale
Direction
Bearing
Shape
Area
Distance
Equidistant cylindrical map
• Showing distances (km) between lines connected by identical lines. Each graphic scale
is only valid along its own parallel, or the one symmetrically opposite the Equator.
Only the vertical scale is valid anywhere, and none of the four is valid if rotated.
Equatorial van der Grinten III map
• Parallels are straight but not standard lines.
Equatorial cylindrical equidistant map
• Equatorial cylindrical equidistant map showing standard lines.
Markers divide segments proportionally.
Transverse cylindrical equidistant map
• Transverse cylindrical equidistant map showing standard
lines, which no more coincide with meridians and the Equator
except accidentally. Markers divide segments proportionally.
Equatorial sinusoidal map
• Equatorial sinusoidal (Sanson-Flamsteed) map showing
standard lines. Markers divide segments proportionally.
Normal Werner map
• Normal Werner map showing standard lines. Markers divide
segments proportionally.
Polar azimuthal equidistant map
• Polar azimuthal equidistant map showing standard lines.
Markers divide segments proportionally.
Which projection is best
•
•
•
•
•

Depends on the purpose
What we want to show on the map
Know target audience
Put important information on map
More in “How to lie with maps”

http://imgs.xkcd.com/comics/map_projections.png
Tools
• Proj4 – conversions between cartographic projections
• http://trac.osgeo.org/proj/

• GEOS – geometry processing and analysis
• http://trac.osgeo.org/geos/

• GDAL – geometry data abstraction, translation and processing
• http://www.gdal.org/
More information
Map providers
Google Maps
• https://www.google.com/maps/preview
• Free for commercial use with public access with 25 000
requests per day
• Zoom level up to 18-23 depend on area
• Started 2004 as C++ application by Lars and Jens Rasmussen
from Sydney’s Where 2 Technologies
• 2005 first announced
• Satellite images updated regularly, not older than 3y
• 54% usage of mobile apps
Bing Maps
•
•
•
•
•

http://www.bing.com/maps/
API with 90 days trial
December 2005 first release
2009 rebranded from Live Search Maps to Bing Maps
Based on MS MapPoint (.NET application to view, edit and
integrate maps) and TerraServer (free repository of aerial
imagery and topographic maps provided by USGS, known as
MS Research Maps as of 2010)
MapQuest
• http://www.mapquest.com/
• API, free with app key
• Free map tiles
• Static map

•
•
•
•

Founded 1967 as Cartographic Services
1994 Renamed to GeoSystems Global Corporation
1996 launched as a web service
2000 Acquired by AOL
ArcGIS Online (ESRI)
• http://www.arcgis.com/home/webmap/viewer.html
• ESRI
• Founded 1969, California USA

• API, paid
• ArcGIS desktop application
•
•
•
•

Load data from database
Creating and using maps as shape file
Compiling geographic data
Analyzing mapped information

• ArcGIS reader
• 40% market share in GIS software
• Paid license
• Proprietary data formats
HERE maps
• http://here.com/
• API
• Map tiles
• Static maps

•
•
•
•
•
•
•
•

2001 as SmartGo
2006 acquired gate 5 – Berlin-based route planning software
2007 acquired NAVTEQ
2008 acquired Plazes, Plum, Dopplr - geo related web sites
2010 acquired Metacarta
2011 bought earthmine
2011 Former Ovi Maps (2007-2010) renamed to Nokia Maps (2011-2012)
2012 rebranded to HERE Maps
CloudMade
•
•
•
•

http://maps.cloudmade.com/
Co-founded by Steve Coast in 2007
Many OSM based GIS APIs and services
Map style editor
OpenStreetMap
•
•
•
•
•
•

http://www.openstreetmap.org/
Collaborative project starter by Steve Coast in UK in 2004
2006 OpenStreetMap Foundation created to support the project
2006 OSM reuses Yahoo aerial photography
AND donated road data
The State of the Map conference
• first held 2007
• 9 000 registered users
• Sponsored by Google, Yahoo and Multimap

• 1 million users (not all contributing)
• Open Database License
• Uses Ruby On Rails for back end

Registered users
Creating own map server
What we need
• Tiles - images of 256 x 256 pixels each
• Already pre-rendered or rendered on demand from map
database
• Use from 3rd party provider (at charge or free)

• JavaScript API library
• OpenLayers – powerful and long-established
• Leaflet – lightweight and easy-to-learn
Open layers
Leaflet
Mapstraction
•
•
•
•
•
•
•
•
•
•

http://mapstraction.com/
CloudMade
ESRI ArcGIS
Google
MapQuest and MapQuest Open
Microsoft Bing
Nokia HERE
OpenLayers
Ordnance Survey OpenSpace
Yandex
What is in the black box
•
•
•
•
•

Planet file (33Gb of data so far) or extract (Geofabrik, Metro Extracts, CloudMade)
PostgreSQL + PostGIS
Apache + mod_tile for serving tiles
Mapnik
slippy_map
Put data in database
•
•
•
•
•

Get planet file or extract
Use osm2pgsql to import the data into Postgres
Add world boundaries, coastlines etc.
Modify stylesheets (not required)
render_list to pre-render tiles
Example maps
• http://en.wikipedia.org/wiki/List_of_online_map_services
• http://alpha.map1.eu/
• http://bihor-county.map2web.eu/
Stamen watercolor
Stamen toner
Example of Mars
Maps

More Related Content

What's hot

Mapping wild species in Jabal Samhan Nature Reserve, Oman.
Mapping wild species in Jabal Samhan Nature Reserve, Oman.Mapping wild species in Jabal Samhan Nature Reserve, Oman.
Mapping wild species in Jabal Samhan Nature Reserve, Oman.Edmundo Garron
 
Optimize map renderer !
Optimize map renderer !Optimize map renderer !
Optimize map renderer !Aurore Jard
 
Regionalism in the Middle East - PortfolioCopy
Regionalism in the Middle East - PortfolioCopyRegionalism in the Middle East - PortfolioCopy
Regionalism in the Middle East - PortfolioCopyJames Gilbertsen
 
Turku Random Tour presentation
Turku Random Tour presentationTurku Random Tour presentation
Turku Random Tour presentationJuho Loukonen
 
Of Nodes and Maps (Web Mapping with Drupal - Part II)
Of Nodes and Maps (Web Mapping with Drupal - Part II)Of Nodes and Maps (Web Mapping with Drupal - Part II)
Of Nodes and Maps (Web Mapping with Drupal - Part II)Ranel Padon
 
Geoscience satellite image processing
Geoscience satellite image processingGeoscience satellite image processing
Geoscience satellite image processinggaurav jain
 
Optimizing your Map Services
Optimizing your Map ServicesOptimizing your Map Services
Optimizing your Map ServicesEsri
 
Geographical information system
Geographical information systemGeographical information system
Geographical information systemBipin Karki
 
GIS and GPS - applications in civil engg
GIS and GPS - applications  in civil enggGIS and GPS - applications  in civil engg
GIS and GPS - applications in civil enggPundlik Rathod
 
Improve Your Work with Esri Contents
Improve Your Work with Esri ContentsImprove Your Work with Esri Contents
Improve Your Work with Esri ContentsEsri
 
ArcGIS_Collector_Field_Guide_201411204_
ArcGIS_Collector_Field_Guide_201411204_ArcGIS_Collector_Field_Guide_201411204_
ArcGIS_Collector_Field_Guide_201411204_Sacha Selim
 
NASA WorldWind Fed-State-Quarterly
NASA WorldWind Fed-State-QuarterlyNASA WorldWind Fed-State-Quarterly
NASA WorldWind Fed-State-QuarterlyPatrick Hogan
 
Geo-Navigation, an Augmented Reality Perspective
Geo-Navigation, an Augmented Reality PerspectiveGeo-Navigation, an Augmented Reality Perspective
Geo-Navigation, an Augmented Reality PerspectiveAntonio Camara
 

What's hot (20)

Mapping wild species in Jabal Samhan Nature Reserve, Oman.
Mapping wild species in Jabal Samhan Nature Reserve, Oman.Mapping wild species in Jabal Samhan Nature Reserve, Oman.
Mapping wild species in Jabal Samhan Nature Reserve, Oman.
 
G0343052058
G0343052058G0343052058
G0343052058
 
Optimize map renderer !
Optimize map renderer !Optimize map renderer !
Optimize map renderer !
 
Regionalism in the Middle East - PortfolioCopy
Regionalism in the Middle East - PortfolioCopyRegionalism in the Middle East - PortfolioCopy
Regionalism in the Middle East - PortfolioCopy
 
Cartography and Web GIS - Jack Dangermond
Cartography and Web GIS - Jack DangermondCartography and Web GIS - Jack Dangermond
Cartography and Web GIS - Jack Dangermond
 
Turku Random Tour presentation
Turku Random Tour presentationTurku Random Tour presentation
Turku Random Tour presentation
 
Of Nodes and Maps (Web Mapping with Drupal - Part II)
Of Nodes and Maps (Web Mapping with Drupal - Part II)Of Nodes and Maps (Web Mapping with Drupal - Part II)
Of Nodes and Maps (Web Mapping with Drupal - Part II)
 
NASA WorldWind
NASA WorldWindNASA WorldWind
NASA WorldWind
 
Remote sensing & gis
Remote sensing & gisRemote sensing & gis
Remote sensing & gis
 
Geoscience satellite image processing
Geoscience satellite image processingGeoscience satellite image processing
Geoscience satellite image processing
 
Optimizing your Map Services
Optimizing your Map ServicesOptimizing your Map Services
Optimizing your Map Services
 
Geographical information system
Geographical information systemGeographical information system
Geographical information system
 
GIS and GPS - applications in civil engg
GIS and GPS - applications  in civil enggGIS and GPS - applications  in civil engg
GIS and GPS - applications in civil engg
 
Satellite Image
Satellite Image Satellite Image
Satellite Image
 
Improve Your Work with Esri Contents
Improve Your Work with Esri ContentsImprove Your Work with Esri Contents
Improve Your Work with Esri Contents
 
ArcGIS_Collector_Field_Guide_201411204_
ArcGIS_Collector_Field_Guide_201411204_ArcGIS_Collector_Field_Guide_201411204_
ArcGIS_Collector_Field_Guide_201411204_
 
UConn Geospatial Coffeehouse - July 28, 2011
UConn Geospatial Coffeehouse - July 28, 2011UConn Geospatial Coffeehouse - July 28, 2011
UConn Geospatial Coffeehouse - July 28, 2011
 
Geocart workshop
Geocart workshopGeocart workshop
Geocart workshop
 
NASA WorldWind Fed-State-Quarterly
NASA WorldWind Fed-State-QuarterlyNASA WorldWind Fed-State-Quarterly
NASA WorldWind Fed-State-Quarterly
 
Geo-Navigation, an Augmented Reality Perspective
Geo-Navigation, an Augmented Reality PerspectiveGeo-Navigation, an Augmented Reality Perspective
Geo-Navigation, an Augmented Reality Perspective
 

Similar to Maps

OpenStreetMap in 3D - current developments
OpenStreetMap in 3D - current developmentsOpenStreetMap in 3D - current developments
OpenStreetMap in 3D - current developmentsvirtualcitySYSTEMS GmbH
 
Crowd sourcing gis for global urban area mapping
Crowd sourcing gis for global urban area mappingCrowd sourcing gis for global urban area mapping
Crowd sourcing gis for global urban area mappingHiroyuki Miyazaki
 
CensusGIV - Geographic Information Visualisation of Census Data
CensusGIV - Geographic Information Visualisation of Census DataCensusGIV - Geographic Information Visualisation of Census Data
CensusGIV - Geographic Information Visualisation of Census DataCASA, UCL
 
Sharing historical maps and atlases in web apps
Sharing historical maps and atlases in web appsSharing historical maps and atlases in web apps
Sharing historical maps and atlases in web appsAileen Buckley
 
Harpster, J. - Open data on buildings with satellite imagery processing
Harpster, J. - Open data on buildings with satellite imagery processingHarpster, J. - Open data on buildings with satellite imagery processing
Harpster, J. - Open data on buildings with satellite imagery processingOECDregions
 
Crowd-Sourcing Approach of Building Ground Truth Database for Global Urban Ar...
Crowd-Sourcing Approach of Building Ground Truth Database for Global Urban Ar...Crowd-Sourcing Approach of Building Ground Truth Database for Global Urban Ar...
Crowd-Sourcing Approach of Building Ground Truth Database for Global Urban Ar...Hiroyuki Miyazaki
 
2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web Apps
2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web Apps2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web Apps
2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web AppsGIS in the Rockies
 
Humanitarian OpenStreetMap Team [H.O.T.] Training for SBTF
Humanitarian OpenStreetMap Team [H.O.T.] Training for SBTFHumanitarian OpenStreetMap Team [H.O.T.] Training for SBTF
Humanitarian OpenStreetMap Team [H.O.T.] Training for SBTFStandby Task Force
 
Visualization and Level-of-detail of Metadata for Interactive Exploration of ...
Visualization and Level-of-detail of Metadata for Interactive Exploration of ...Visualization and Level-of-detail of Metadata for Interactive Exploration of ...
Visualization and Level-of-detail of Metadata for Interactive Exploration of ...Cybera Inc.
 
CartoHeritage 2011: Georeferencer & MapRank Search
CartoHeritage 2011: Georeferencer & MapRank SearchCartoHeritage 2011: Georeferencer & MapRank Search
CartoHeritage 2011: Georeferencer & MapRank SearchPetr Pridal
 
Geographical information systems
Geographical information systemsGeographical information systems
Geographical information systemsGift Musanza
 
Introduction of GIS & Remote Sensing (RS)
Introduction of GIS & Remote Sensing (RS)Introduction of GIS & Remote Sensing (RS)
Introduction of GIS & Remote Sensing (RS)Subtain Hussain Syed
 

Similar to Maps (20)

Digimap Essentials
Digimap EssentialsDigimap Essentials
Digimap Essentials
 
Digimap Ordnance Survey Collection - Essentials
Digimap Ordnance Survey Collection - EssentialsDigimap Ordnance Survey Collection - Essentials
Digimap Ordnance Survey Collection - Essentials
 
OpenStreetMap in 3D - current developments
OpenStreetMap in 3D - current developmentsOpenStreetMap in 3D - current developments
OpenStreetMap in 3D - current developments
 
Crowd sourcing gis for global urban area mapping
Crowd sourcing gis for global urban area mappingCrowd sourcing gis for global urban area mapping
Crowd sourcing gis for global urban area mapping
 
CensusGIV - Geographic Information Visualisation of Census Data
CensusGIV - Geographic Information Visualisation of Census DataCensusGIV - Geographic Information Visualisation of Census Data
CensusGIV - Geographic Information Visualisation of Census Data
 
Big data in Digimap
Big data in DigimapBig data in Digimap
Big data in Digimap
 
Sharing historical maps and atlases in web apps
Sharing historical maps and atlases in web appsSharing historical maps and atlases in web apps
Sharing historical maps and atlases in web apps
 
Harpster, J. - Open data on buildings with satellite imagery processing
Harpster, J. - Open data on buildings with satellite imagery processingHarpster, J. - Open data on buildings with satellite imagery processing
Harpster, J. - Open data on buildings with satellite imagery processing
 
lecture03.ppt
lecture03.pptlecture03.ppt
lecture03.ppt
 
Crowd-Sourcing Approach of Building Ground Truth Database for Global Urban Ar...
Crowd-Sourcing Approach of Building Ground Truth Database for Global Urban Ar...Crowd-Sourcing Approach of Building Ground Truth Database for Global Urban Ar...
Crowd-Sourcing Approach of Building Ground Truth Database for Global Urban Ar...
 
2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web Apps
2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web Apps2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web Apps
2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web Apps
 
OSM HOT SBTF 2013_03_16
OSM HOT SBTF 2013_03_16OSM HOT SBTF 2013_03_16
OSM HOT SBTF 2013_03_16
 
Projections
ProjectionsProjections
Projections
 
Humanitarian OpenStreetMap Team [H.O.T.] Training for SBTF
Humanitarian OpenStreetMap Team [H.O.T.] Training for SBTFHumanitarian OpenStreetMap Team [H.O.T.] Training for SBTF
Humanitarian OpenStreetMap Team [H.O.T.] Training for SBTF
 
Visualization and Level-of-detail of Metadata for Interactive Exploration of ...
Visualization and Level-of-detail of Metadata for Interactive Exploration of ...Visualization and Level-of-detail of Metadata for Interactive Exploration of ...
Visualization and Level-of-detail of Metadata for Interactive Exploration of ...
 
Indoor Navigation
Indoor NavigationIndoor Navigation
Indoor Navigation
 
CartoHeritage 2011: Georeferencer & MapRank Search
CartoHeritage 2011: Georeferencer & MapRank SearchCartoHeritage 2011: Georeferencer & MapRank Search
CartoHeritage 2011: Georeferencer & MapRank Search
 
Geographical information systems
Geographical information systemsGeographical information systems
Geographical information systems
 
Introduction of GIS & Remote Sensing (RS)
Introduction of GIS & Remote Sensing (RS)Introduction of GIS & Remote Sensing (RS)
Introduction of GIS & Remote Sensing (RS)
 
Mapinfo 2014
Mapinfo 2014Mapinfo 2014
Mapinfo 2014
 

Recently uploaded

My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 

Recently uploaded (20)

My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 

Maps