SlideShare ist ein Scribd-Unternehmen logo
1 von 55
OpenStreetMap
(+ other Geo/Ruby things)
Sheffield Ruby User Group
July 2015
Tim Waters
tim@geothings.net
@tim_waters
Live OSM
http://live.openstreetmap.fr/ https://osmlab.github.io/show-me-the-way/
What is OpenStreetMap?
A web project to create a free and open
map of the entire world
History
* Founded in the United Kingdom in 2004 by
Steve Coast
* Ordnance Survey Data was Expensive to
Use
* July 2005 the First Mapping Party Takes
Place
Open Data
http://www.ted.com/talks/view/lang/en//id/788
Haiti
http://vimeo.com/9182869
ito_haiti_berners_lee.mp4
Dude, we just use
Google.
The reasons not to...
Terms of Use
Copyright
Derived Works
No Data
OSM better in many areas
Dude, you can't trust it
“Wikipedia”
Fix the data
Objectiveness
Quality Control
Statistics
Number of users 1,045,770
Number of GPS points 3,295,708,898
Number of nodes 1,788,120,111
Number of ways 171,187,609
Active users / month 17,478
Wikipedia:
Number of pages: 29,551,074
Number of articles: 4,173,959
Active users / month 135,706
How do people map?
YOU CAN GET THE DATA
YOU CAN GET THE DATA
1) direct dump – planet (26G Compressed)
whole, day, hour, minute
2) API
i.e. OverPass
3) Extracts
Shapefile format
(buildings, natural, place, rail, roads, water, points, landuse)
Overpass API
TagInfo
● http://taginfo.openstreetmap.org/
Slide taginfo for a tag
Literally
More data than appears
More data than appears
Literally more data than appears
Cartography
Stamen - Watercolor
● http://maps.stamen.com/watercolor/#15/53.80
25/-1.5469
Stamen – Toner
Literally more data than appears
Custom Maps
OpenStreetMap Schema
Folksonomy: collaboratively created
created system of tagging things.
(The community creates the
OpenStreetMap tagging scheming over
time)
Nodes, Ways and Areas
OSM Stack
● Website
● API
● Editor
● Map Rendering
● Exports
OSM Website
Ruby on Rails
Github
openstreetmap/openstreetmap-website
All volunteers
Suitable tasks
● Changeset reverter, history diffs
● History bounding box improvements
● Groups of users
● Area type
Rosemary
● Ruby library 4 OSM
● https://github.com/sozialhelden/rosemary
require 'rosemary'
api = Rosemary::Api.new
node = api.find_way(174111099)
#<Rosemary::Way:0x000000032bab08
@nodes=[1848409287, 1848409219.... 1848409287],
@id=174111099, @version=3, @user="Paul Berry",
@timestamp=2014-03-14 14:53:49 UTC,
@changeset=21100786, @tags=
{"amenity"=>"pub", "building"=>"yes", "food"=>"yes",
"name"=>"The Red Deer", "real_ale"=>"yes"}>
Rosemary
client = Rosemary::BasicAuthClient.new
('osm_user_name', 'password')
api = Rosemary::Api.new(client)
changeset = api.create_changeset("Postbox on
Timothy Leary Street")
node = Rosemary::Node.new(:lat => 52.0,
:lon => 13.4)
node.add_tags({"amenity"=>"postbox"})
api.save(node, changeset)
api.close_changeset(changeset)
OSM Stack
● OpenHistoricalMap
● OpenGeoFiction
OpenHistoricalMap
Saeby – Denmark 18C
Saeby – Denmark Now
OpenGeoFiction
Other ruby geo
(GIS)
● Geos
● Gdal
● Rgeo
● Mapnik
GEOS
def buffer(feature, radius, min_radius=0.0)
   wkb_writer = Geos::WkbWriter.new
   wkb_reader = Geos::WkbReader.new
   geom =  wkb_reader.read_hex feature.geometry
   buffer_geom = geom.buffer(radius)
   if min_radius != 0.0
      hole_geom = geom.buffer(min_radius)
      buffer_geom = buffer_geom.difference(hole_geom)
   end
   feature.geometry = wkb_writer.write_hex buffer_geom
   feature
end
https://github.com/dark-panda/ffi-geos
Apt-Get install libgeos-ruby
GDAL / OGR
● https://github.com/zhm/gdal-ruby
Gdal::Ogr.create_geometry_from_wkt('POINT (30 10)')
raster = Gdal::Gdal.open(filename)
dx = raster.RasterXSize
dy = raster.RasterYSize
x0, x_res, x_skew, y0, y_skew, y_res =
raster.get_geo_transform
RGeo
https://github.com/rgeo/rgeo
factory = Rgeo::Cartesian.factory
point1 = factory.point(1, 0)
point2 = factory.point(1, 4)
point3 = factory.point(­2, 0)
point4 = factory.point(­2, 4)
point2.distance(point3) # => 5.0
line_string1 = factory.line_string([point1, point2, point3])
line_string1.num_points # => 3
line_string1.point_n(0) == point1 # => true
line_string1.end_point == point3 # => true
PostGIS / postgres
https://github.com/rgeo/activerecord-postgis-adapter
create_table :my_spatial_table do |t|
  t.column :shape1, :geometry
  t.geometry :shape2
  t.line_string :path, srid: 3785
  t.st_point :lonlat, geographic: true
  t.st_point :lonlatheight, geographic: true, has_z: true
end
PostGIS / postgres
record = MySpatialTable.find(1)
p = record.lonlat                  # Returns an RGeo::Feature::Point
puts p.x                               # displays the x coordinate
puts p.geometry_type.type_name     # displays "Point"
PostGIS / postgres
 bbox_polygon = Polygon.from_coordinates([bbox_coords], 
4326).as_ewkt
Model.where(ST_Within(bbox_geom,
                      ST_GeomFromText('#{bbox_polygon}'))")
Ruby Mapnik :-(
https://github.com/mapnik/Ruby-Mapnik
Gem maintainer gone?
Code = old & broken
But
Mapnik = how maps are rendered from postgis from
OSM
Everyone uses it
C++ (rice)
map = Mapnik::Map.new do |m|
  m.background = Mapnik::Color.new('#777')  # A grey background
  # Use the Google mercator projection
  m.srs =  Mapnik::Tile::DEFAULT_OUTPUT_PROJECTION
  # Add a layer to the map
  m.layer 'countries' do |l|
    l.style do |s|
      # Add a rule to the style (this one is a default rule)
      s.rule do |default|
        default.fill = Mapnik::Color.new('#880000')
      end
    end
    l.srs = "+proj=latlong +datum=WGS84" # set the srs of the layer
    l.datasource = Mapnik::Datasource.create :type => 'shape',
  :file => "myshapefile.shp"
  end
end
map.zoom_to_box(map.layers.first.envelope) 
map.render_to_file('my_map.png')
Thanks!
@tim_waters
Leeds Ruby Thing
– last Thursday every month

Weitere ähnliche Inhalte

Was ist angesagt? (11)

Introduction to OpenStreetMap
Introduction to OpenStreetMapIntroduction to OpenStreetMap
Introduction to OpenStreetMap
 
An introduction to OpenStreetMap for bushwalkers
An introduction to OpenStreetMap for bushwalkersAn introduction to OpenStreetMap for bushwalkers
An introduction to OpenStreetMap for bushwalkers
 
An Introduction to OpenStreetMap (UQ GIS Students)
An Introduction to OpenStreetMap (UQ GIS Students)An Introduction to OpenStreetMap (UQ GIS Students)
An Introduction to OpenStreetMap (UQ GIS Students)
 
OpenStreetMap - HOT - DokuTech
OpenStreetMap - HOT - DokuTechOpenStreetMap - HOT - DokuTech
OpenStreetMap - HOT - DokuTech
 
Open street map final ppt
Open street map final pptOpen street map final ppt
Open street map final ppt
 
Open Street Map, Hot and Geo Data A OpenData BootCamp in Gjilan
Open Street Map, Hot and Geo Data A OpenData BootCamp in GjilanOpen Street Map, Hot and Geo Data A OpenData BootCamp in Gjilan
Open Street Map, Hot and Geo Data A OpenData BootCamp in Gjilan
 
Introduction to OSM
Introduction to OSMIntroduction to OSM
Introduction to OSM
 
Open streetmap
Open streetmapOpen streetmap
Open streetmap
 
IRLOGI openstreetmap presentation
IRLOGI openstreetmap presentationIRLOGI openstreetmap presentation
IRLOGI openstreetmap presentation
 
Osm Presentation
Osm PresentationOsm Presentation
Osm Presentation
 
20160306 公舘社區開放街圖研習
20160306 公舘社區開放街圖研習20160306 公舘社區開放街圖研習
20160306 公舘社區開放街圖研習
 

Ähnlich wie OpenStreetMap and Geospatial Ruby Tim Waters sheffield ruby user group july 2015

FreeMap Palestine November 2008
FreeMap Palestine November 2008FreeMap Palestine November 2008
FreeMap Palestine November 2008
mikel_maron
 
OpenMappingAfrica
OpenMappingAfricaOpenMappingAfrica
OpenMappingAfrica
mikel_maron
 
OSM for Wikimedians
OSM for WikimediansOSM for Wikimedians
OSM for Wikimedians
tommorris
 

Ähnlich wie OpenStreetMap and Geospatial Ruby Tim Waters sheffield ruby user group july 2015 (20)

Introduction To OpenStreetMap Fosscon2010
Introduction To OpenStreetMap Fosscon2010Introduction To OpenStreetMap Fosscon2010
Introduction To OpenStreetMap Fosscon2010
 
OpenStreetMap OpenTech 2011
OpenStreetMap OpenTech 2011OpenStreetMap OpenTech 2011
OpenStreetMap OpenTech 2011
 
20160315 OpenStreetMap at 中央大學
20160315 OpenStreetMap at 中央大學20160315 OpenStreetMap at 中央大學
20160315 OpenStreetMap at 中央大學
 
Open GeoData, Open GeoTools: An Introduction
Open GeoData, Open GeoTools: An IntroductionOpen GeoData, Open GeoTools: An Introduction
Open GeoData, Open GeoTools: An Introduction
 
Leeds Data Thing OpenStreetMap and Other Geo Visualization Stuff
Leeds Data Thing OpenStreetMap and Other Geo Visualization StuffLeeds Data Thing OpenStreetMap and Other Geo Visualization Stuff
Leeds Data Thing OpenStreetMap and Other Geo Visualization Stuff
 
FreeMap Palestine November 2008
FreeMap Palestine November 2008FreeMap Palestine November 2008
FreeMap Palestine November 2008
 
THE WIKIPEDIA OF MAPPING: Open- streetmaps!
THE WIKIPEDIA OF MAPPING: Open- streetmaps! THE WIKIPEDIA OF MAPPING: Open- streetmaps!
THE WIKIPEDIA OF MAPPING: Open- streetmaps!
 
20151106 成大自由軟體課程 OpenStreetMap 介紹
20151106 成大自由軟體課程 OpenStreetMap 介紹20151106 成大自由軟體課程 OpenStreetMap 介紹
20151106 成大自由軟體課程 OpenStreetMap 介紹
 
20151230 主婦聯盟環境保護基金會 OpenStreetMap 介紹
20151230 主婦聯盟環境保護基金會 OpenStreetMap 介紹20151230 主婦聯盟環境保護基金會 OpenStreetMap 介紹
20151230 主婦聯盟環境保護基金會 OpenStreetMap 介紹
 
OpenStreetMap at Where2.0Now
OpenStreetMap at Where2.0NowOpenStreetMap at Where2.0Now
OpenStreetMap at Where2.0Now
 
OSM HOT SBTF 2013_03_16
OSM HOT SBTF 2013_03_16OSM HOT SBTF 2013_03_16
OSM HOT SBTF 2013_03_16
 
Volunteered Geographic Information and OpenStreetMap
Volunteered Geographic Information and OpenStreetMapVolunteered Geographic Information and OpenStreetMap
Volunteered Geographic Information and OpenStreetMap
 
OpenMappingAfrica
OpenMappingAfricaOpenMappingAfrica
OpenMappingAfrica
 
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
 
OpenStreetMap : Open Licensed GeoData
OpenStreetMap : Open Licensed GeoDataOpenStreetMap : Open Licensed GeoData
OpenStreetMap : Open Licensed GeoData
 
Fosdem 2010 GT.M and OpenStreetMap
Fosdem 2010 GT.M and OpenStreetMapFosdem 2010 GT.M and OpenStreetMap
Fosdem 2010 GT.M and OpenStreetMap
 
OpenStreetMap Sri Lanka
OpenStreetMap Sri LankaOpenStreetMap Sri Lanka
OpenStreetMap Sri Lanka
 
RIPEstat & RIPE Atlas
RIPEstat & RIPE AtlasRIPEstat & RIPE Atlas
RIPEstat & RIPE Atlas
 
OSM for Wikimedians
OSM for WikimediansOSM for Wikimedians
OSM for Wikimedians
 
Largest Active Measurements Network: RIPE Atlas
Largest Active Measurements Network: RIPE AtlasLargest Active Measurements Network: RIPE Atlas
Largest Active Measurements Network: RIPE Atlas
 

Mehr von chippy

Mehr von chippy (20)

Some geospatial ruby libraries
Some geospatial ruby librariesSome geospatial ruby libraries
Some geospatial ruby libraries
 
Tim waters OpenHistoricalMap State of the Map Scotland 2015
Tim waters OpenHistoricalMap State of the Map Scotland 2015Tim waters OpenHistoricalMap State of the Map Scotland 2015
Tim waters OpenHistoricalMap State of the Map Scotland 2015
 
Tim waters openhistoricalmap geomob london july 2015
Tim waters openhistoricalmap geomob london july 2015Tim waters openhistoricalmap geomob london july 2015
Tim waters openhistoricalmap geomob london july 2015
 
Tim waters OpenHistoricalMap Changes to the OSM Stack. SOTM-US 2015
Tim waters OpenHistoricalMap Changes to the OSM Stack. SOTM-US 2015Tim waters OpenHistoricalMap Changes to the OSM Stack. SOTM-US 2015
Tim waters OpenHistoricalMap Changes to the OSM Stack. SOTM-US 2015
 
Visible If You Can See it? The Superposition tim waters_20_may
Visible If You Can See it? The Superposition tim waters_20_mayVisible If You Can See it? The Superposition tim waters_20_may
Visible If You Can See it? The Superposition tim waters_20_may
 
Ken campbell interview hoax small 1994
Ken campbell interview hoax small 1994Ken campbell interview hoax small 1994
Ken campbell interview hoax small 1994
 
Ken campbell interview hoax 1994
Ken campbell interview hoax 1994Ken campbell interview hoax 1994
Ken campbell interview hoax 1994
 
OpenHistoricalMap tim waters - Topomancy / NYPL Lightning Talk
OpenHistoricalMap   tim waters - Topomancy / NYPL Lightning TalkOpenHistoricalMap   tim waters - Topomancy / NYPL Lightning Talk
OpenHistoricalMap tim waters - Topomancy / NYPL Lightning Talk
 
Ohm
OhmOhm
Ohm
 
Space place psychogeography - foss4g 2013
Space place psychogeography - foss4g 2013Space place psychogeography - foss4g 2013
Space place psychogeography - foss4g 2013
 
The map is not whats there - psychogeography and openstreetmap
The map is not whats there - psychogeography and openstreetmapThe map is not whats there - psychogeography and openstreetmap
The map is not whats there - psychogeography and openstreetmap
 
Introduction to OpenStreetMap and Humanitarian OSM Team for Plan Internationa...
Introduction to OpenStreetMap and Humanitarian OSM Team for Plan Internationa...Introduction to OpenStreetMap and Humanitarian OSM Team for Plan Internationa...
Introduction to OpenStreetMap and Humanitarian OSM Team for Plan Internationa...
 
You know when you are addicted to OSM when...
You know when you are addicted to OSM when...You know when you are addicted to OSM when...
You know when you are addicted to OSM when...
 
Psychogeography tim waters wherecampEU 2012
Psychogeography tim waters wherecampEU 2012Psychogeography tim waters wherecampEU 2012
Psychogeography tim waters wherecampEU 2012
 
LSxCafe Swtich2OSM.org talk
LSxCafe Swtich2OSM.org talkLSxCafe Swtich2OSM.org talk
LSxCafe Swtich2OSM.org talk
 
Fuzzy foss4g 2006 tim waters poster
Fuzzy foss4g 2006 tim waters posterFuzzy foss4g 2006 tim waters poster
Fuzzy foss4g 2006 tim waters poster
 
Mapping The Fear of Crime
Mapping The Fear of CrimeMapping The Fear of Crime
Mapping The Fear of Crime
 
Soc map rectification_tools_2011
Soc map rectification_tools_2011Soc map rectification_tools_2011
Soc map rectification_tools_2011
 
Community Analytics on the GeoWeb
Community Analytics on the GeoWebCommunity Analytics on the GeoWeb
Community Analytics on the GeoWeb
 
Psychogeography at geekup leeds
Psychogeography at geekup leedsPsychogeography at geekup leeds
Psychogeography at geekup leeds
 

Kürzlich hochgeladen

一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
ayvbos
 
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
gajnagarg
 
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girlsRussian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Monica Sydney
 
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
ydyuyu
 
一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理
F
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Monica Sydney
 
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
ydyuyu
 

Kürzlich hochgeladen (20)

Best SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasBest SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency Dallas
 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
 
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime NagercoilNagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
 
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
 
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime BalliaBallia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
 
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
 
Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...
Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...
Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...
 
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girlsRussian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
 
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
Call girls Service in Ajman 0505086370 Ajman call girls
Call girls Service in Ajman 0505086370 Ajman call girlsCall girls Service in Ajman 0505086370 Ajman call girls
Call girls Service in Ajman 0505086370 Ajman call girls
 
一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理
 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
 
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
 
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
 

OpenStreetMap and Geospatial Ruby Tim Waters sheffield ruby user group july 2015