SlideShare ist ein Scribd-Unternehmen logo
1 von 41
A brief guide to Oracle Spatial Extension Simone Campora (simone.campora@epfl.ch)
Spatial Databases ,[object Object],[object Object]
Oracle Spatial Extension (11g r1) ,[object Object],Oracle 4  Oracle 7  Oracle 8  Oracle 10  First spatial extension Spatial Data Option (SDO) Oracle Spatial R-Tree indexing Network Model Raster handling Topologies Geocoding
Supported geometries
Spatial Database Generalities
Supported Data Formats ,[object Object],[object Object],[object Object]
Oracle Hierarchical Model ,[object Object]
Geometries  ,[object Object],[object Object]
Spatial Indexing ,[object Object],[object Object],[object Object],[object Object]
R - Tree ,[object Object],[object Object],[object Object],[object Object]
Quadtree ,[object Object],[object Object],[object Object]
Spatial Query Processing Optional Filter Spatial Data Layer Primary Filter: Spatial Index Data Selection Secondary Filter: Spatial Functions Results
Oracle Spatial Data Types
SDO_GEOMETRY ,[object Object],CREATE TABLE forest( name VARCHAR2(30), animal_population NUMBER(9), geom MDSYS.SDO_GEOMETRY); Methods GET_DIMS()  :NUMBER GET_GTYPE  :NUMBER
SDO_GTYPE ,[object Object],Geometry Type Dimensions Name 2D 3D 4D UNKNOWN_GEOMETRY 2000 3000 4000 POINT 2001 3001 4001 LINESTRING 2002 3002 4002 POLYGON 2003 3003 4003 COLLECTION 2004 3004 4004 MULTIPOINT 2005 3005 4005 MULTILINESTRING 2006 3006 4006 MULTIPOLYGON 2007 3007 4007 NOT OGC
SDO_POINT ,[object Object],[object Object],[object Object],X NUMBER Y NUMBER Z NUMBER Example:  GPS Receiver
SDO_ELEM_INFO ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Number Element Type Interpretation 0 UNKNOWN_ELEMENT 1 POINT Number of points of the collection 2 LINESTRING ,[object Object],3 POLYGON 1 lines 1003 External 2 arcs 2003 Internal 3 optimized rectangle 4 circle 4 COMPOUND LINESTRING Number of elements 5 COMPOUNG POLYGON Number of elements 1005 External 2005 Internal
SDO_ORDINATES ,[object Object],[object Object],[object Object]
Examples 1/5 – inserting a Point ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],SDO_POINT SDO_ELEM_INFO SDO_ORDINATES SDO_GTYPE SDO_SRID
Examples 2/5 – inserting a line ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],10,10 20,25 30,10 40,10
Examples 3/5 – inserting a polygon ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],(2,10) (2,10) (3,0) (10,0) (12,10) (5,12) (4,3) (6,9)
Oracle Spatial Coordinates System
Projections ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
SDO_SRID ,[object Object],[object Object],Description Type Description CS_NAME VARCHAR2(68) Short Name SRID NUMBER(38) Reference System ID AUTH_SRID NUMBER(38) ‘ Oracle’ AUTH_NAME VARCHAR2(256) SRID name WKTEXT VARCHAR2(2046) OGC name CS_BOUNDS MDSYS.SDO_GEOMETRY Can be null
How to Change the SRID? ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Oracle Spatial Operators
Spatial Operators ,[object Object],[object Object],[object Object]
SDO_FILTER  SDO_FILTER(<geometry-1>,<geometry-2>,‘QUERYTYPE=WINDOW’) = ‘TRUE’; ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],select s.nom, s.type from sondages s Where sdo_filter ( s.geom,  mdsys.sdo_geometry (2003,352257,null, mdsys.sdo_elem_info_array(1,1003,3), mdsys.sdo_ordinate_array(540300,212500,541300,213500)), ‘ querytype=WINDOW’) = ‘TRUE’;
SDO_RELATE  SDO_RELATE(<geometry-1>,<geometry-2>, ‘MASK=<mask> QUERYTYPE=WINDOW’) = ‘TRUE’; ,[object Object],[object Object],[object Object],select t1.name, t1.na,e  from towns t1, towns t2 where c2.name = ‘NYC’ and sdo_relate ( t1.geom,t2.geom,  ‘ mask=TOUCH querytype=WINDOW’)=‘TRUE’;
SDO_WITHIN_DISTANCE   SDO_WITHIN_DISTANCE( <geometry-1>,<geometry-2>, ‘DISTANCE=<n>,[optional parameters]’) = ‘TRUE’; ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],select  a.name from buildings b, streets a where b.id= 2198376 and sdo_within_distance  ( a.geom,b.geom,‘distance=1 UNIT=kilometer’)=‘TRUE’;
SDO_NN (nearest neighbor)   SDO_NN(<geometry-1>,<geometry-2>,‘[paramètres optionnels]’) = ‘TRUE’; ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],select  s.type from streets s, polls p where s.id = 1289 and sdo_nn(s.geom,p.geom,’sdo_num_res=5 unit=meter’,1) = ‘TRUE’;
Oracle Spatial FUNCTIONS
Spatial Functions ,[object Object],[object Object],[object Object],[object Object]
SDO_GEOM.RELATE SDO_GEOM.RELATE( <geometry-1>,’<mask>’,<geometry-2>,<tolerance>); ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],select c.name, sdo_geom.relate(d.geom,’determine’,t.geom,0.5) relation from districts d, towns t where d.distname = ‘NY’ and d.distname = t.district;
Oracle Spatial Analysis
Spatial Analysis ,[object Object],[object Object]
Calculate a Surface SDO_GEOM.SDO_AREA (<geometry>,<tolerance> [, <unit>]) ,[object Object],[object Object],[object Object],[object Object],select sdo_unit from  mdsys.sdo_dist_units; select sum(sdo_geom.sdo_area(c1.geom,0.5,’unit=sq_meter’)) surface from towns t1, towns t2 where t2.name = ‘New York’ and  sdo_relate (t1.geom,t2.geom, ’ mask=TOUCH querytype=WINDOW’) = ‘TRUE’;
Calculate the Length SDO_GEOM.SDO_LENGTH (<geometry>,<tolerance> [, <unit>]) Calculate the Distance SDO_GEOM.SDO_DISTANCE (<geometry-1>, <geometry-2>,<tolerance> [, <unit>]) select name,sdo_geom.sdo_length(geom,0.5,’unit=kilometer’) length from streets where number = 1234; select sdo_geom.sdo_distance(f1.geom,f2.geom,0.5) distance from forests f1, forests f2 where f1.id = 1 and f2.id = 2;
Buffer Calculation SDO_GEOM.SDO_BUFFER (<geometry>,<distance>, <tolerance> [, ‘<params>’]) ,[object Object],[object Object],[object Object],[object Object],[object Object],select sdo_geom.sdo_buffer (geom,25,0.5,’unit=km’)  buffer from streets where number = 120;
Logic Functions SDO_GEOM.SDO_XXX (<geometry-1>,<geometry-2>,<tolerance>) ,[object Object],[object Object],[object Object],[object Object]
References ,[object Object],[object Object],[object Object],[object Object]

Weitere ähnliche Inhalte

Was ist angesagt?

Sistema de información geográfica
Sistema de información geográfica Sistema de información geográfica
Sistema de información geográfica
samirdejesus
 

Was ist angesagt? (20)

TYBSC IT PGIS Unit III Chapter II Data Entry and Preparation
TYBSC IT PGIS Unit III Chapter II Data Entry and PreparationTYBSC IT PGIS Unit III Chapter II Data Entry and Preparation
TYBSC IT PGIS Unit III Chapter II Data Entry and Preparation
 
Map algebra
Map algebraMap algebra
Map algebra
 
Spatial Database Systems
Spatial Database SystemsSpatial Database Systems
Spatial Database Systems
 
SQL Joins and Query Optimization
SQL Joins and Query OptimizationSQL Joins and Query Optimization
SQL Joins and Query Optimization
 
Spatial databases
Spatial databasesSpatial databases
Spatial databases
 
Giving MongoDB a Way to Play with the GIS Community
Giving MongoDB a Way to Play with the GIS CommunityGiving MongoDB a Way to Play with the GIS Community
Giving MongoDB a Way to Play with the GIS Community
 
GIS & Raster
GIS & RasterGIS & Raster
GIS & Raster
 
Sistema de información geográfica
Sistema de información geográfica Sistema de información geográfica
Sistema de información geográfica
 
GeoServer on Steroids
GeoServer on SteroidsGeoServer on Steroids
GeoServer on Steroids
 
Raster processing
Raster processingRaster processing
Raster processing
 
Introduction to arc gis
Introduction to arc gisIntroduction to arc gis
Introduction to arc gis
 
Spatial Databases
Spatial DatabasesSpatial Databases
Spatial Databases
 
MongoDB GeoSpatial Feature
MongoDB GeoSpatial FeatureMongoDB GeoSpatial Feature
MongoDB GeoSpatial Feature
 
Spatial databases
Spatial databasesSpatial databases
Spatial databases
 
Introduction To PostGIS
Introduction To PostGISIntroduction To PostGIS
Introduction To PostGIS
 
Geocoding for beginners
Geocoding for beginnersGeocoding for beginners
Geocoding for beginners
 
Geodatabase: The ArcGIS Mechanism for Data Management
Geodatabase: The ArcGIS Mechanism for Data ManagementGeodatabase: The ArcGIS Mechanism for Data Management
Geodatabase: The ArcGIS Mechanism for Data Management
 
Spatial analysis and Analysis Tools
Spatial analysis and Analysis ToolsSpatial analysis and Analysis Tools
Spatial analysis and Analysis Tools
 
Basic Gis
Basic GisBasic Gis
Basic Gis
 
TYBSC IT SEM 6 GIS
TYBSC IT SEM 6 GISTYBSC IT SEM 6 GIS
TYBSC IT SEM 6 GIS
 

Andere mochten auch

Postępowanie administracyjne, postępowanie egzekucyjne w administracji i post...
Postępowanie administracyjne, postępowanie egzekucyjne w administracji i post...Postępowanie administracyjne, postępowanie egzekucyjne w administracji i post...
Postępowanie administracyjne, postępowanie egzekucyjne w administracji i post...
e-booksweb.pl
 
Sistemas información geográfica
Sistemas información geográficaSistemas información geográfica
Sistemas información geográfica
Marvin Zumbado
 
1. źródła prawa oraz wybrane regulacje prawne z zakresu prawa pracy dot. bhp ...
1. źródła prawa oraz wybrane regulacje prawne z zakresu prawa pracy dot. bhp ...1. źródła prawa oraz wybrane regulacje prawne z zakresu prawa pracy dot. bhp ...
1. źródła prawa oraz wybrane regulacje prawne z zakresu prawa pracy dot. bhp ...
AktywBHP
 

Andere mochten auch (15)

Oracle Spatial Databases
Oracle Spatial DatabasesOracle Spatial Databases
Oracle Spatial Databases
 
Algebra - liczby zespolone - cz. 1
Algebra - liczby zespolone - cz. 1Algebra - liczby zespolone - cz. 1
Algebra - liczby zespolone - cz. 1
 
Postępowanie administracyjne, postępowanie egzekucyjne w administracji i post...
Postępowanie administracyjne, postępowanie egzekucyjne w administracji i post...Postępowanie administracyjne, postępowanie egzekucyjne w administracji i post...
Postępowanie administracyjne, postępowanie egzekucyjne w administracji i post...
 
Servidores de mapas en alta disponibilidad CyLiconValley
Servidores de mapas en alta disponibilidad CyLiconValleyServidores de mapas en alta disponibilidad CyLiconValley
Servidores de mapas en alta disponibilidad CyLiconValley
 
Using FME to Convert TIGER Spatial Data From Oracle Spatial To ESRI Shapefiles
Using FME to Convert TIGER Spatial Data From Oracle Spatial To ESRI ShapefilesUsing FME to Convert TIGER Spatial Data From Oracle Spatial To ESRI Shapefiles
Using FME to Convert TIGER Spatial Data From Oracle Spatial To ESRI Shapefiles
 
De SIOSE a PostGIS en cuatro sesiones
De SIOSE a PostGIS en cuatro sesionesDe SIOSE a PostGIS en cuatro sesiones
De SIOSE a PostGIS en cuatro sesiones
 
Oracle Spatial de la A a la Z - JUGM 2010
Oracle Spatial de la A a la Z - JUGM 2010Oracle Spatial de la A a la Z - JUGM 2010
Oracle Spatial de la A a la Z - JUGM 2010
 
Introdución a PostGis
Introdución a PostGisIntrodución a PostGis
Introdución a PostGis
 
Oracle Spatial de la A a la Z - Unidad 1
Oracle Spatial de la A a la Z - Unidad 1Oracle Spatial de la A a la Z - Unidad 1
Oracle Spatial de la A a la Z - Unidad 1
 
Curso spatial analyst ARCGIS INGEMMET Juan Salcedo
Curso spatial analyst ARCGIS INGEMMET Juan SalcedoCurso spatial analyst ARCGIS INGEMMET Juan Salcedo
Curso spatial analyst ARCGIS INGEMMET Juan Salcedo
 
OpenLayers vs. Leaflet
OpenLayers vs. LeafletOpenLayers vs. Leaflet
OpenLayers vs. Leaflet
 
Vestige: Managing tags for #a4i
Vestige: Managing tags for #a4iVestige: Managing tags for #a4i
Vestige: Managing tags for #a4i
 
Sistemas información geográfica
Sistemas información geográficaSistemas información geográfica
Sistemas información geográfica
 
1. źródła prawa oraz wybrane regulacje prawne z zakresu prawa pracy dot. bhp ...
1. źródła prawa oraz wybrane regulacje prawne z zakresu prawa pracy dot. bhp ...1. źródła prawa oraz wybrane regulacje prawne z zakresu prawa pracy dot. bhp ...
1. źródła prawa oraz wybrane regulacje prawne z zakresu prawa pracy dot. bhp ...
 
Conferencia ESRI 2014. Gestión de la componente geográfica del negocio median...
Conferencia ESRI 2014. Gestión de la componente geográfica del negocio median...Conferencia ESRI 2014. Gestión de la componente geográfica del negocio median...
Conferencia ESRI 2014. Gestión de la componente geográfica del negocio median...
 

Ähnlich wie Oracle Spatial

2005 fall cs523_lecture_4
2005 fall cs523_lecture_42005 fall cs523_lecture_4
2005 fall cs523_lecture_4
abhineetverma
 
Lecture 1 IntroductionToDataStructures_coursematerial_Draft0.01.ppt
Lecture 1 IntroductionToDataStructures_coursematerial_Draft0.01.pptLecture 1 IntroductionToDataStructures_coursematerial_Draft0.01.ppt
Lecture 1 IntroductionToDataStructures_coursematerial_Draft0.01.ppt
iamsallauddin
 

Ähnlich wie Oracle Spatial (20)

10. R getting spatial
10.  R getting spatial10.  R getting spatial
10. R getting spatial
 
Intro To PostGIS
Intro To PostGISIntro To PostGIS
Intro To PostGIS
 
R getting spatial
R getting spatialR getting spatial
R getting spatial
 
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
 
SQL Windowing
SQL WindowingSQL Windowing
SQL Windowing
 
Gis Xke
Gis XkeGis Xke
Gis Xke
 
Where the %$#^ Is Everybody? Geospatial Solutions For Oracle APEX
Where the %$#^ Is Everybody? Geospatial Solutions For Oracle APEXWhere the %$#^ Is Everybody? Geospatial Solutions For Oracle APEX
Where the %$#^ Is Everybody? Geospatial Solutions For Oracle APEX
 
Opensource gis development - part 2
Opensource gis development - part 2Opensource gis development - part 2
Opensource gis development - part 2
 
Spark RDD-DF-SQL-DS-Spark Hadoop User Group Munich Meetup 2016
Spark RDD-DF-SQL-DS-Spark Hadoop User Group Munich Meetup 2016Spark RDD-DF-SQL-DS-Spark Hadoop User Group Munich Meetup 2016
Spark RDD-DF-SQL-DS-Spark Hadoop User Group Munich Meetup 2016
 
Sql Saturday Spatial Data Ss2008 Michael Stark Copy
Sql Saturday Spatial Data Ss2008 Michael Stark   CopySql Saturday Spatial Data Ss2008 Michael Stark   Copy
Sql Saturday Spatial Data Ss2008 Michael Stark Copy
 
Bsc cs ii dfs u-1 introduction to data structure
Bsc cs ii dfs u-1 introduction to data structureBsc cs ii dfs u-1 introduction to data structure
Bsc cs ii dfs u-1 introduction to data structure
 
FOSS4G 2010 PostGIS Raster: an Open Source alternative to Oracle GeoRaster
FOSS4G 2010 PostGIS Raster: an Open Source alternative to Oracle GeoRasterFOSS4G 2010 PostGIS Raster: an Open Source alternative to Oracle GeoRaster
FOSS4G 2010 PostGIS Raster: an Open Source alternative to Oracle GeoRaster
 
Gis and Ruby 101 at Ruby Conf Kenya 2017 by Kamal Ogudah
Gis and Ruby 101 at Ruby Conf Kenya 2017 by Kamal OgudahGis and Ruby 101 at Ruby Conf Kenya 2017 by Kamal Ogudah
Gis and Ruby 101 at Ruby Conf Kenya 2017 by Kamal Ogudah
 
Bca ii dfs u-1 introduction to data structure
Bca ii dfs u-1 introduction to data structureBca ii dfs u-1 introduction to data structure
Bca ii dfs u-1 introduction to data structure
 
Powerful Spatial Features You Never Knew Existed in Oracle Spatial and Graph ...
Powerful Spatial Features You Never Knew Existed in Oracle Spatial and Graph ...Powerful Spatial Features You Never Knew Existed in Oracle Spatial and Graph ...
Powerful Spatial Features You Never Knew Existed in Oracle Spatial and Graph ...
 
Spatial
SpatialSpatial
Spatial
 
Tulsa techfest Spark Core Aug 5th 2016
Tulsa techfest Spark Core Aug 5th 2016Tulsa techfest Spark Core Aug 5th 2016
Tulsa techfest Spark Core Aug 5th 2016
 
2005 fall cs523_lecture_4
2005 fall cs523_lecture_42005 fall cs523_lecture_4
2005 fall cs523_lecture_4
 
Mca ii dfs u-1 introduction to data structure
Mca ii dfs u-1 introduction to data structureMca ii dfs u-1 introduction to data structure
Mca ii dfs u-1 introduction to data structure
 
Lecture 1 IntroductionToDataStructures_coursematerial_Draft0.01.ppt
Lecture 1 IntroductionToDataStructures_coursematerial_Draft0.01.pptLecture 1 IntroductionToDataStructures_coursematerial_Draft0.01.ppt
Lecture 1 IntroductionToDataStructures_coursematerial_Draft0.01.ppt
 

Kürzlich hochgeladen

Kürzlich hochgeladen (20)

Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 

Oracle Spatial