SlideShare uma empresa Scribd logo
1 de 37
@


   Addy Pope
   Geo-services
   Email: addy.pope@ed.ac.uk
   Twitter: @go_geo
   http://www.gogeo.ac.uk

   EDINA website: http://edina.ac.uk
Slide 1 of ##                              <<Enter presentation title here>>
What is EDINA?


                is a National Data Centre



 Based at




 Supported by                    http://pafciu17.dev.openstreetmap.org/?
                                 module=map&center=-
                                 3.18,55.935&zoom=17&width=400&height=400type=cycle




                                       Open Data & Open Source Software at EDINA
What do we do?




                     http://www.flickr.com/photos/steverhode/3183290111/sizes/l/in/photostream/


      Ensure continuous access to resources
      Preservation initiatives to ensure long term
      access to scholarly content
      Repository services for open access and
      other licensed material
                                                                      Open Data & Open Source Software at EDINA
What do we do?


                  Multimedia
                   Services



 Geo
 Service
           Authentication




                 Bibliographic
                   Services




                                 Open Data & Open Source Software at EDINA
What?

        EDINA runs services primarily for the UK education
        sector. However, it is increasingly trying to make
           its services open and available to everyone.



          In this Presentation we will look at some of the
         services that EDINA run that you can access and
           what you might do with them and some other
                         “Open” geo-tools.
GeoTagger

                               A basic web service API
                               for geo-tagging/geo-
                               coding image, audio and
                               video media


                               A demo web client
                               enabling users to upload
                               media, metadata parsing
                               and geo-tagging/geo-
                               coding


            An Open Metadata collection of
            geo-tagged/geo-coded enriched
            media with a search interface
            (this has been seeded with
            250,000 images from Geograph
GeoTagger

                                            Upload




  Your Picture


  Existing Exif
   Metadata


                  Export   Use map to locate where
                  image       picture was taken
Cartogrammar

car·to·gram/ˈ kärtəˌ gram/
A map on which statistical
information is shown in
diagrammatic form.

A small diagram on the face of a
map, showing quantitative
information.

An abstracted and simplified
map the base of which is not
true to scale.




                                   http://www.viewsoftheworld.net
Cartogrammar




Slide 9 of ##   <<Enter presentation title here>>
Creation Parameters
Cartogram View and Download
Project Goals




Slide 12 of ##   <<Enter presentation title here>>
Project Goals



         • Example of one being made here:




Slide 13 of ##                               <<Enter presentation title here>>
GoGeo
 Discover GIS resources
 Find Data
 Create standards compliant metadata
 Learn about metadata standards




                                       Open Data & Open Source Software at EDINA
GoGeo
 Discover GIS resources
 Find Data
 Create standards compliant metadata
 Learn about metadata standards




                                       Open Data & Open Source Software at EDINA
Unlock




                            Unlock Text – feed in a
                            body of text and Unlock
                            will associate places from
                            it. It uses fuzzy logic to
  Web API that provides     disambiguate places with
  geographic reference to   the same name
  place names.
ShareGeo




Find and share open
spatial data ……
ShareGeo




           Create maps or perform
               spatial analysis
Openstream


             Web Mapping Service
             (WMS) of OS OpenData




             Stream map to a GIS or
             Google Earth or embed
             the map in your website
             using the API.
Openstream




              Stream maps at a
             variety of scales with
             appropriate detail on
                      each




             Offers an alternative
             to OSM. Advantages
             and disadvantages –
                   discuss.
Openstream




        Great way of streaming maps into a GIS, in this
                          case QGIS.
Putting it all together…….

 What if we want to take some Open data and make it available for
 others to view it over the internet?




 There are plenty of tools to help you do this and you don’t need to be
 programmer or GIS expert to achieve it either.




                                                    Lets find out how……
Putting it all together…….


 We are going to make a map that
 shows the location of wind farms
 around the UK. We could just post
 the image we saw earlier, but that
 doesn’t allow the user to interact at
 all, they cannot zoom or query the
 data.
Putting it all together…….




                        Another shameless plug,
                        but an example of the
                        useful data that is in
                        ShareGeo Open ready to
                        be used.
Putting it all together…….
Putting it all together…….
Putting it all together…….
Putting it all together…….
Putting it all together…….
Putting it all together…….
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <title>OGR2Layers</title>
 <style>
  #map{width:800px;height:600px;}
 </style>
 <script src="http://www.openlayers.org/api/2.11/OpenLayers.js"></script>
 <script type="text/javascript">
 var map, selectsControls
 function init(){
                        var option = {
                                              projection: new OpenLayers.Projection("EPSG:900913"),
                                              displayProjection: new OpenLayers.Projection("EPSG:4326")
                        };
                        map = new OpenLayers.Map('map', option);
                        olmapnik = new OpenLayers.Layer.OSM("OpenStreetMap Mapnik", "http://tile.openstreetmap.org/${z}/${x}/${y}.png");
                        map.addLayer(olmapnik);
                        map.setBaseLayer(olmapnik);
                        var ls= new OpenLayers.Control.LayerSwitcher();
                        map.addControl(ls);
                        ls.maximizeControl();
                        map.addControl(new OpenLayers.Control.Scale());
                        map.addControl(new OpenLayers.Control.Attribution());
                        map.addControl(new OpenLayers.Control.Navigation());
                        var WindFarm_Consented2011 = new OpenLayers.Layer.GML("WindFarm_Consented2011 GeoJSON", "WindFarm_Consented2011.GeoJSON", {format: OpenLayers.Format.GeoJSON});
                        map.addLayer(WindFarm_Consented2011);
                        var WindFarm_Construction2011 = new OpenLayers.Layer.GML("WindFarm_Construction2011 GeoJSON", "WindFarm_Construction2011.GeoJSON", {format: OpenLayers.Format.GeoJSO
                        map.addLayer(WindFarm_Construction2011);
                        var WindFarm_Operational2011 = new OpenLayers.Layer.GML("WindFarm_Operational2011 GeoJSON", "WindFarm_Operational2011.GeoJSON", {format: OpenLayers.Format.GeoJSON})
                        map.addLayer(WindFarm_Operational2011);
                        var WindFarm_Proposed2011 = new OpenLayers.Layer.GML("WindFarm_Proposed2011 GeoJSON", "WindFarm_Proposed2011.GeoJSON", {format: OpenLayers.Format.GeoJSON});
                        map.addLayer(WindFarm_Proposed2011);
                        extent = new OpenLayers.Bounds(-16.488754,89.996499,-16.488754,89.996499).transform(new OpenLayers.Projection("EPSG:4326"), new OpenLayers.Projection("EPSG:900913"));
                        map.zoomToExtent(extent);
 };
 </script>
 </head>
 <body onload="init()">
 <h1></h1>
 <div id="map"></div>
 </body>
 </html>
Other great resources
Geo-Events/Groups

        The Hutton Club run seminars at 1600 on Fridays.
        These focus on Earth System Process and Physical
        Geography.
Geo-Events/Groups

                  EEO-AGI(S) Seminar series is also run by the School
                  of Geoscience on Fridays.



  2 Nov – Gary Gale, Director of Places, Nokia
  23 Nov – “Humanising Archaeological GIS”, Prof. Gary Lock, University of Oxford
  18 Jan – “Analytical and Interactive Cartography”, Prof. Jason Dykes, City
  University
  8 Feb – “New GI Technologies for Historical Maps”, Chris Fleet, National Library of
  Scotland
  1 March – “City Science”, Prof. Mike Batty, CASA, UCL
  22 March - “Our Ecosystem: Web-based Spatial Data Sharing for Non-Expert GI
  Users”, Dr. Karin Viergever, Ecometrica
  26 April – “Life at NASA”, Will Cornforth, University of Edinburgh
Geo-Events/Groups

         The Royal Scottish Geographical Society run
         regular seminars around Scotland. Topics are
         broad and varied.
The objectives of AGI Scotland are:
• to promote awareness on GI and how it could benefit the citizen, commerce and
good governance within Scotland
• to gain access to Scottish and UK governments
• to bring together people with an interest in GI within Scotland
• to tune and deliver membership benefits to Scottish members
• to encourage AGI membership at the grass roots level within Scotland

26 November 2012 – GeoDrinks Glasgow*
Join us at Waxy O’Connors, from 4pm onwards for an informal networking event

27 February 2013 – AGI Scotland Annual Conference, University of Glasgow

For further details of these and other UK wide events, see www.agi.org.uk
Addy Pope
Email: addy.pope@ed.ac.uk
Twitter: @go_geo
http://www.gogeo.ac.uk

EDINA website: http://edina.ac.uk
Edinburgh Geo-Events/Groups

Mais conteúdo relacionado

Mais procurados

Esri-Supported OGC/ISO Standards
Esri-Supported OGC/ISO StandardsEsri-Supported OGC/ISO Standards
Esri-Supported OGC/ISO StandardsEsri
 
Open Source GIS
Open Source GISOpen Source GIS
Open Source GISJoe Larson
 
GeoNode intro and demo
GeoNode intro and demoGeoNode intro and demo
GeoNode intro and demoPaolo Corti
 
Geospatial for Java
Geospatial for JavaGeospatial for Java
Geospatial for JavaJody Garnett
 
Use case of Disaster Management System by using Geopaparazzi and MapGuide Ope...
Use case of Disaster Management System by using Geopaparazzi and MapGuide Ope...Use case of Disaster Management System by using Geopaparazzi and MapGuide Ope...
Use case of Disaster Management System by using Geopaparazzi and MapGuide Ope...Hirofumi Hayashi
 
Opensource gis development - part 1
Opensource gis development - part 1Opensource gis development - part 1
Opensource gis development - part 1Andrea Antonello
 
도시건축설계와 오픈소스 기반 GIS
도시건축설계와 오픈소스 기반 GIS도시건축설계와 오픈소스 기반 GIS
도시건축설계와 오픈소스 기반 GISmac999
 
Vector Tiles with GeoServer and OpenLayers
Vector Tiles with GeoServer and OpenLayersVector Tiles with GeoServer and OpenLayers
Vector Tiles with GeoServer and OpenLayersJody Garnett
 
Earth Engine on Google Cloud Platform (GCP)
Earth Engine on Google Cloud Platform (GCP)Earth Engine on Google Cloud Platform (GCP)
Earth Engine on Google Cloud Platform (GCP)Runcy Oommen
 

Mais procurados (9)

Esri-Supported OGC/ISO Standards
Esri-Supported OGC/ISO StandardsEsri-Supported OGC/ISO Standards
Esri-Supported OGC/ISO Standards
 
Open Source GIS
Open Source GISOpen Source GIS
Open Source GIS
 
GeoNode intro and demo
GeoNode intro and demoGeoNode intro and demo
GeoNode intro and demo
 
Geospatial for Java
Geospatial for JavaGeospatial for Java
Geospatial for Java
 
Use case of Disaster Management System by using Geopaparazzi and MapGuide Ope...
Use case of Disaster Management System by using Geopaparazzi and MapGuide Ope...Use case of Disaster Management System by using Geopaparazzi and MapGuide Ope...
Use case of Disaster Management System by using Geopaparazzi and MapGuide Ope...
 
Opensource gis development - part 1
Opensource gis development - part 1Opensource gis development - part 1
Opensource gis development - part 1
 
도시건축설계와 오픈소스 기반 GIS
도시건축설계와 오픈소스 기반 GIS도시건축설계와 오픈소스 기반 GIS
도시건축설계와 오픈소스 기반 GIS
 
Vector Tiles with GeoServer and OpenLayers
Vector Tiles with GeoServer and OpenLayersVector Tiles with GeoServer and OpenLayers
Vector Tiles with GeoServer and OpenLayers
 
Earth Engine on Google Cloud Platform (GCP)
Earth Engine on Google Cloud Platform (GCP)Earth Engine on Google Cloud Platform (GCP)
Earth Engine on Google Cloud Platform (GCP)
 

Destaque

The SONEX Workgroup for the Analysis of Repository Interoperability-Related I...
The SONEX Workgroup for the Analysis of Repository Interoperability-Related I...The SONEX Workgroup for the Analysis of Repository Interoperability-Related I...
The SONEX Workgroup for the Analysis of Repository Interoperability-Related I...EDINA, University of Edinburgh
 
6 ways DevOps helped PrepSportswear move from monolith to microservices
6 ways DevOps helped PrepSportswear move from monolith to microservices6 ways DevOps helped PrepSportswear move from monolith to microservices
6 ways DevOps helped PrepSportswear move from monolith to microservicesDynatrace
 
Finding out about the preservation of e-journals: the PEPRS Project
Finding out about the preservation of e-journals: the PEPRS ProjectFinding out about the preservation of e-journals: the PEPRS Project
Finding out about the preservation of e-journals: the PEPRS ProjectEDINA, University of Edinburgh
 
Collaboration to Curation: The High Rise Project meets Edinburgh DataShare
Collaboration to Curation: The High Rise Project meets Edinburgh DataShareCollaboration to Curation: The High Rise Project meets Edinburgh DataShare
Collaboration to Curation: The High Rise Project meets Edinburgh DataShareEDINA, University of Edinburgh
 
The Go-Geo! Spatial Data Portal: A Data Discovery and Research Tool for UK Ac...
The Go-Geo! Spatial Data Portal: A Data Discovery and Research Tool for UK Ac...The Go-Geo! Spatial Data Portal: A Data Discovery and Research Tool for UK Ac...
The Go-Geo! Spatial Data Portal: A Data Discovery and Research Tool for UK Ac...EDINA, University of Edinburgh
 

Destaque (7)

The SONEX Workgroup for the Analysis of Repository Interoperability-Related I...
The SONEX Workgroup for the Analysis of Repository Interoperability-Related I...The SONEX Workgroup for the Analysis of Repository Interoperability-Related I...
The SONEX Workgroup for the Analysis of Repository Interoperability-Related I...
 
6 ways DevOps helped PrepSportswear move from monolith to microservices
6 ways DevOps helped PrepSportswear move from monolith to microservices6 ways DevOps helped PrepSportswear move from monolith to microservices
6 ways DevOps helped PrepSportswear move from monolith to microservices
 
Geospatial Tech in Teaching
Geospatial Tech in TeachingGeospatial Tech in Teaching
Geospatial Tech in Teaching
 
Nature jobsexpo 26sept2012osborne
Nature jobsexpo 26sept2012osborneNature jobsexpo 26sept2012osborne
Nature jobsexpo 26sept2012osborne
 
Finding out about the preservation of e-journals: the PEPRS Project
Finding out about the preservation of e-journals: the PEPRS ProjectFinding out about the preservation of e-journals: the PEPRS Project
Finding out about the preservation of e-journals: the PEPRS Project
 
Collaboration to Curation: The High Rise Project meets Edinburgh DataShare
Collaboration to Curation: The High Rise Project meets Edinburgh DataShareCollaboration to Curation: The High Rise Project meets Edinburgh DataShare
Collaboration to Curation: The High Rise Project meets Edinburgh DataShare
 
The Go-Geo! Spatial Data Portal: A Data Discovery and Research Tool for UK Ac...
The Go-Geo! Spatial Data Portal: A Data Discovery and Research Tool for UK Ac...The Go-Geo! Spatial Data Portal: A Data Discovery and Research Tool for UK Ac...
The Go-Geo! Spatial Data Portal: A Data Discovery and Research Tool for UK Ac...
 

Semelhante a Open@EDINA

Osgis2011 edina addy_pope
Osgis2011 edina addy_popeOsgis2011 edina addy_pope
Osgis2011 edina addy_popeAddy Pope
 
Osgis2011 edina addy_pope
Osgis2011 edina addy_popeOsgis2011 edina addy_pope
Osgis2011 edina addy_popeAddy Pope
 
2015 FOSS4G Track: Open Specifications for the Storage, Transport and Process...
2015 FOSS4G Track: Open Specifications for the Storage, Transport and Process...2015 FOSS4G Track: Open Specifications for the Storage, Transport and Process...
2015 FOSS4G Track: Open Specifications for the Storage, Transport and Process...GIS in the Rockies
 
Map Styling Tools and Interactive maps on the web with OpenLayers - Addy Pope...
Map Styling Tools and Interactive maps on the web with OpenLayers - Addy Pope...Map Styling Tools and Interactive maps on the web with OpenLayers - Addy Pope...
Map Styling Tools and Interactive maps on the web with OpenLayers - Addy Pope...JISC GECO
 
Field Data Collecting, Processing and Sharing: Using web Service Technologies
Field Data Collecting, Processing and Sharing: Using web Service TechnologiesField Data Collecting, Processing and Sharing: Using web Service Technologies
Field Data Collecting, Processing and Sharing: Using web Service TechnologiesNiroshan Sanjaya
 
Advancing open source geospatial software for the do d ic edward pickle openg...
Advancing open source geospatial software for the do d ic edward pickle openg...Advancing open source geospatial software for the do d ic edward pickle openg...
Advancing open source geospatial software for the do d ic edward pickle openg...Joshua L. Davis
 
Higher Education Profiling using Open Source GIS - A Primer on OpenStreetMap ...
Higher Education Profiling using Open Source GIS - A Primer on OpenStreetMap ...Higher Education Profiling using Open Source GIS - A Primer on OpenStreetMap ...
Higher Education Profiling using Open Source GIS - A Primer on OpenStreetMap ...CASA, UCL
 
Open Source GeoSpatial
Open Source GeoSpatialOpen Source GeoSpatial
Open Source GeoSpatialarno974
 
Building Location-Aware Apps using Open Source (AnDevCon SF 2014)
Building Location-Aware Apps using Open Source (AnDevCon SF 2014)Building Location-Aware Apps using Open Source (AnDevCon SF 2014)
Building Location-Aware Apps using Open Source (AnDevCon SF 2014)Chuck Greb
 
Dotted Eyes - Open Software, Standards and Data
Dotted Eyes - Open Software, Standards and DataDotted Eyes - Open Software, Standards and Data
Dotted Eyes - Open Software, Standards and DataDotted Eyes
 
GITA PNW 2015 Peter Batty
GITA PNW 2015 Peter BattyGITA PNW 2015 Peter Batty
GITA PNW 2015 Peter BattyPeter Batty
 
Integrating PostGIS in Web Applications
Integrating PostGIS in Web ApplicationsIntegrating PostGIS in Web Applications
Integrating PostGIS in Web ApplicationsCommand Prompt., Inc
 
Drupal and the GeoSpatial Web
Drupal and the GeoSpatial WebDrupal and the GeoSpatial Web
Drupal and the GeoSpatial WebAndrew Turner
 
Serving Ireland's Geospatial Information as Linked Data
Serving Ireland's Geospatial Information as Linked DataServing Ireland's Geospatial Information as Linked Data
Serving Ireland's Geospatial Information as Linked DataChristophe Debruyne
 
Geolocation in Drupal
Geolocation in DrupalGeolocation in Drupal
Geolocation in DrupalMediacurrent
 
OSGeo Live Lightening Overview
OSGeo Live Lightening OverviewOSGeo Live Lightening Overview
OSGeo Live Lightening OverviewJody Garnett
 
Golden Age of Geospatial Data Science
Golden Age of Geospatial Data ScienceGolden Age of Geospatial Data Science
Golden Age of Geospatial Data ScienceGeorge Percivall
 

Semelhante a Open@EDINA (20)

Open @ EDINA
Open @ EDINAOpen @ EDINA
Open @ EDINA
 
Osgis2011 edina addy_pope
Osgis2011 edina addy_popeOsgis2011 edina addy_pope
Osgis2011 edina addy_pope
 
Osgis2011 edina addy_pope
Osgis2011 edina addy_popeOsgis2011 edina addy_pope
Osgis2011 edina addy_pope
 
2015 FOSS4G Track: Open Specifications for the Storage, Transport and Process...
2015 FOSS4G Track: Open Specifications for the Storage, Transport and Process...2015 FOSS4G Track: Open Specifications for the Storage, Transport and Process...
2015 FOSS4G Track: Open Specifications for the Storage, Transport and Process...
 
Open Spatial Data: Sources and Tools
Open Spatial Data: Sources and ToolsOpen Spatial Data: Sources and Tools
Open Spatial Data: Sources and Tools
 
Map Styling Tools and Interactive maps on the web with OpenLayers - Addy Pope...
Map Styling Tools and Interactive maps on the web with OpenLayers - Addy Pope...Map Styling Tools and Interactive maps on the web with OpenLayers - Addy Pope...
Map Styling Tools and Interactive maps on the web with OpenLayers - Addy Pope...
 
Field Data Collecting, Processing and Sharing: Using web Service Technologies
Field Data Collecting, Processing and Sharing: Using web Service TechnologiesField Data Collecting, Processing and Sharing: Using web Service Technologies
Field Data Collecting, Processing and Sharing: Using web Service Technologies
 
Advancing open source geospatial software for the do d ic edward pickle openg...
Advancing open source geospatial software for the do d ic edward pickle openg...Advancing open source geospatial software for the do d ic edward pickle openg...
Advancing open source geospatial software for the do d ic edward pickle openg...
 
Higher Education Profiling using Open Source GIS - A Primer on OpenStreetMap ...
Higher Education Profiling using Open Source GIS - A Primer on OpenStreetMap ...Higher Education Profiling using Open Source GIS - A Primer on OpenStreetMap ...
Higher Education Profiling using Open Source GIS - A Primer on OpenStreetMap ...
 
Open Source GeoSpatial
Open Source GeoSpatialOpen Source GeoSpatial
Open Source GeoSpatial
 
Building Location-Aware Apps using Open Source (AnDevCon SF 2014)
Building Location-Aware Apps using Open Source (AnDevCon SF 2014)Building Location-Aware Apps using Open Source (AnDevCon SF 2014)
Building Location-Aware Apps using Open Source (AnDevCon SF 2014)
 
Dotted Eyes - Open Software, Standards and Data
Dotted Eyes - Open Software, Standards and DataDotted Eyes - Open Software, Standards and Data
Dotted Eyes - Open Software, Standards and Data
 
GITA PNW 2015 Peter Batty
GITA PNW 2015 Peter BattyGITA PNW 2015 Peter Batty
GITA PNW 2015 Peter Batty
 
Proyecto geostore
Proyecto geostoreProyecto geostore
Proyecto geostore
 
Integrating PostGIS in Web Applications
Integrating PostGIS in Web ApplicationsIntegrating PostGIS in Web Applications
Integrating PostGIS in Web Applications
 
Drupal and the GeoSpatial Web
Drupal and the GeoSpatial WebDrupal and the GeoSpatial Web
Drupal and the GeoSpatial Web
 
Serving Ireland's Geospatial Information as Linked Data
Serving Ireland's Geospatial Information as Linked DataServing Ireland's Geospatial Information as Linked Data
Serving Ireland's Geospatial Information as Linked Data
 
Geolocation in Drupal
Geolocation in DrupalGeolocation in Drupal
Geolocation in Drupal
 
OSGeo Live Lightening Overview
OSGeo Live Lightening OverviewOSGeo Live Lightening Overview
OSGeo Live Lightening Overview
 
Golden Age of Geospatial Data Science
Golden Age of Geospatial Data ScienceGolden Age of Geospatial Data Science
Golden Age of Geospatial Data Science
 

Mais de EDINA, University of Edinburgh

We have the technology... We have the data... What next?
We have the technology... We have the data... What next?We have the technology... We have the data... What next?
We have the technology... We have the data... What next?EDINA, University of Edinburgh
 
Reference Rot in Theses: A HiberActive Pilot - 10x10 session for Repository F...
Reference Rot in Theses: A HiberActive Pilot - 10x10 session for Repository F...Reference Rot in Theses: A HiberActive Pilot - 10x10 session for Repository F...
Reference Rot in Theses: A HiberActive Pilot - 10x10 session for Repository F...EDINA, University of Edinburgh
 
If I Googled You, What Would I Find? Managing your digital footprint - Nicola...
If I Googled You, What Would I Find? Managing your digital footprint - Nicola...If I Googled You, What Would I Find? Managing your digital footprint - Nicola...
If I Googled You, What Would I Find? Managing your digital footprint - Nicola...EDINA, University of Edinburgh
 
Managing your Digital Footprint : Taking control of the metadata and tracks a...
Managing your Digital Footprint : Taking control of the metadata and tracks a...Managing your Digital Footprint : Taking control of the metadata and tracks a...
Managing your Digital Footprint : Taking control of the metadata and tracks a...EDINA, University of Edinburgh
 
Social media and blogging to develop and communicate research in the arts and...
Social media and blogging to develop and communicate research in the arts and...Social media and blogging to develop and communicate research in the arts and...
Social media and blogging to develop and communicate research in the arts and...EDINA, University of Edinburgh
 
Enhancing your research impact through social media - Nicola Osborne
Enhancing your research impact through social media - Nicola OsborneEnhancing your research impact through social media - Nicola Osborne
Enhancing your research impact through social media - Nicola OsborneEDINA, University of Edinburgh
 
Social Media in Marketing in Support of Your Personal Brand - Nicola Osborne
Social Media in Marketing in Support of Your Personal Brand - Nicola OsborneSocial Media in Marketing in Support of Your Personal Brand - Nicola Osborne
Social Media in Marketing in Support of Your Personal Brand - Nicola OsborneEDINA, University of Edinburgh
 
Best Practice for Social Media in Teaching & Learning Contexts - Nicola Osborne
Best Practice for Social Media in Teaching & Learning Contexts - Nicola OsborneBest Practice for Social Media in Teaching & Learning Contexts - Nicola Osborne
Best Practice for Social Media in Teaching & Learning Contexts - Nicola OsborneEDINA, University of Edinburgh
 
Introduction to Edinburgh University Data Library and national data services
Introduction to Edinburgh University Data Library and national data servicesIntroduction to Edinburgh University Data Library and national data services
Introduction to Edinburgh University Data Library and national data servicesEDINA, University of Edinburgh
 
Digimap for Schools: Introduction to an ICT based cross curricular resource f...
Digimap for Schools: Introduction to an ICT based cross curricular resource f...Digimap for Schools: Introduction to an ICT based cross curricular resource f...
Digimap for Schools: Introduction to an ICT based cross curricular resource f...EDINA, University of Edinburgh
 

Mais de EDINA, University of Edinburgh (20)

The Making of the English Landscape:
The Making of the English Landscape: The Making of the English Landscape:
The Making of the English Landscape:
 
Spatial Data, Spatial Humanities
Spatial Data, Spatial HumanitiesSpatial Data, Spatial Humanities
Spatial Data, Spatial Humanities
 
Land Cover Map 2015
Land Cover Map 2015Land Cover Map 2015
Land Cover Map 2015
 
We have the technology... We have the data... What next?
We have the technology... We have the data... What next?We have the technology... We have the data... What next?
We have the technology... We have the data... What next?
 
Reference Rot in Theses: A HiberActive Pilot - 10x10 session for Repository F...
Reference Rot in Theses: A HiberActive Pilot - 10x10 session for Repository F...Reference Rot in Theses: A HiberActive Pilot - 10x10 session for Repository F...
Reference Rot in Theses: A HiberActive Pilot - 10x10 session for Repository F...
 
GeoForum EDINA report 2017
GeoForum EDINA report 2017GeoForum EDINA report 2017
GeoForum EDINA report 2017
 
If I Googled You, What Would I Find? Managing your digital footprint - Nicola...
If I Googled You, What Would I Find? Managing your digital footprint - Nicola...If I Googled You, What Would I Find? Managing your digital footprint - Nicola...
If I Googled You, What Would I Find? Managing your digital footprint - Nicola...
 
Moray housemarch2017
Moray housemarch2017Moray housemarch2017
Moray housemarch2017
 
Uniof stirlingmarch2017secondary
Uniof stirlingmarch2017secondaryUniof stirlingmarch2017secondary
Uniof stirlingmarch2017secondary
 
Uniof glasgow jan2017_secondary
Uniof glasgow jan2017_secondaryUniof glasgow jan2017_secondary
Uniof glasgow jan2017_secondary
 
Managing your Digital Footprint : Taking control of the metadata and tracks a...
Managing your Digital Footprint : Taking control of the metadata and tracks a...Managing your Digital Footprint : Taking control of the metadata and tracks a...
Managing your Digital Footprint : Taking control of the metadata and tracks a...
 
Social media and blogging to develop and communicate research in the arts and...
Social media and blogging to develop and communicate research in the arts and...Social media and blogging to develop and communicate research in the arts and...
Social media and blogging to develop and communicate research in the arts and...
 
Enhancing your research impact through social media - Nicola Osborne
Enhancing your research impact through social media - Nicola OsborneEnhancing your research impact through social media - Nicola Osborne
Enhancing your research impact through social media - Nicola Osborne
 
Social Media in Marketing in Support of Your Personal Brand - Nicola Osborne
Social Media in Marketing in Support of Your Personal Brand - Nicola OsborneSocial Media in Marketing in Support of Your Personal Brand - Nicola Osborne
Social Media in Marketing in Support of Your Personal Brand - Nicola Osborne
 
Best Practice for Social Media in Teaching & Learning Contexts - Nicola Osborne
Best Practice for Social Media in Teaching & Learning Contexts - Nicola OsborneBest Practice for Social Media in Teaching & Learning Contexts - Nicola Osborne
Best Practice for Social Media in Teaching & Learning Contexts - Nicola Osborne
 
SCURL and SUNCAT serials holdings comparison service
SCURL and SUNCAT serials holdings comparison serviceSCURL and SUNCAT serials holdings comparison service
SCURL and SUNCAT serials holdings comparison service
 
Big data in Digimap
Big data in DigimapBig data in Digimap
Big data in Digimap
 
Introduction to Edinburgh University Data Library and national data services
Introduction to Edinburgh University Data Library and national data servicesIntroduction to Edinburgh University Data Library and national data services
Introduction to Edinburgh University Data Library and national data services
 
Digimap for Schools: Introduction to an ICT based cross curricular resource f...
Digimap for Schools: Introduction to an ICT based cross curricular resource f...Digimap for Schools: Introduction to an ICT based cross curricular resource f...
Digimap for Schools: Introduction to an ICT based cross curricular resource f...
 
Digimap Update - Geoforum 2016 - Guy McGarva
Digimap Update - Geoforum 2016 - Guy McGarvaDigimap Update - Geoforum 2016 - Guy McGarva
Digimap Update - Geoforum 2016 - Guy McGarva
 

Último

How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
FILIPINO PSYCHology sikolohiyang pilipino
FILIPINO PSYCHology sikolohiyang pilipinoFILIPINO PSYCHology sikolohiyang pilipino
FILIPINO PSYCHology sikolohiyang pilipinojohnmickonozaleda
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4MiaBumagat1
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomnelietumpap1
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxMaryGraceBautista27
 

Último (20)

How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
FILIPINO PSYCHology sikolohiyang pilipino
FILIPINO PSYCHology sikolohiyang pilipinoFILIPINO PSYCHology sikolohiyang pilipino
FILIPINO PSYCHology sikolohiyang pilipino
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choom
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptx
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 

Open@EDINA

  • 1. @ Addy Pope Geo-services Email: addy.pope@ed.ac.uk Twitter: @go_geo http://www.gogeo.ac.uk EDINA website: http://edina.ac.uk Slide 1 of ## <<Enter presentation title here>>
  • 2. What is EDINA? is a National Data Centre Based at Supported by http://pafciu17.dev.openstreetmap.org/? module=map&center=- 3.18,55.935&zoom=17&width=400&height=400type=cycle Open Data & Open Source Software at EDINA
  • 3. What do we do? http://www.flickr.com/photos/steverhode/3183290111/sizes/l/in/photostream/ Ensure continuous access to resources Preservation initiatives to ensure long term access to scholarly content Repository services for open access and other licensed material Open Data & Open Source Software at EDINA
  • 4. What do we do? Multimedia Services Geo Service Authentication Bibliographic Services Open Data & Open Source Software at EDINA
  • 5. What? EDINA runs services primarily for the UK education sector. However, it is increasingly trying to make its services open and available to everyone. In this Presentation we will look at some of the services that EDINA run that you can access and what you might do with them and some other “Open” geo-tools.
  • 6. GeoTagger A basic web service API for geo-tagging/geo- coding image, audio and video media A demo web client enabling users to upload media, metadata parsing and geo-tagging/geo- coding An Open Metadata collection of geo-tagged/geo-coded enriched media with a search interface (this has been seeded with 250,000 images from Geograph
  • 7. GeoTagger Upload Your Picture Existing Exif Metadata Export Use map to locate where image picture was taken
  • 8. Cartogrammar car·to·gram/ˈ kärtəˌ gram/ A map on which statistical information is shown in diagrammatic form. A small diagram on the face of a map, showing quantitative information. An abstracted and simplified map the base of which is not true to scale. http://www.viewsoftheworld.net
  • 9. Cartogrammar Slide 9 of ## <<Enter presentation title here>>
  • 11. Cartogram View and Download
  • 12. Project Goals Slide 12 of ## <<Enter presentation title here>>
  • 13. Project Goals • Example of one being made here: Slide 13 of ## <<Enter presentation title here>>
  • 14. GoGeo Discover GIS resources Find Data Create standards compliant metadata Learn about metadata standards Open Data & Open Source Software at EDINA
  • 15. GoGeo Discover GIS resources Find Data Create standards compliant metadata Learn about metadata standards Open Data & Open Source Software at EDINA
  • 16. Unlock Unlock Text – feed in a body of text and Unlock will associate places from it. It uses fuzzy logic to Web API that provides disambiguate places with geographic reference to the same name place names.
  • 17. ShareGeo Find and share open spatial data ……
  • 18. ShareGeo Create maps or perform spatial analysis
  • 19. Openstream Web Mapping Service (WMS) of OS OpenData Stream map to a GIS or Google Earth or embed the map in your website using the API.
  • 20. Openstream Stream maps at a variety of scales with appropriate detail on each Offers an alternative to OSM. Advantages and disadvantages – discuss.
  • 21. Openstream Great way of streaming maps into a GIS, in this case QGIS.
  • 22. Putting it all together……. What if we want to take some Open data and make it available for others to view it over the internet? There are plenty of tools to help you do this and you don’t need to be programmer or GIS expert to achieve it either. Lets find out how……
  • 23. Putting it all together……. We are going to make a map that shows the location of wind farms around the UK. We could just post the image we saw earlier, but that doesn’t allow the user to interact at all, they cannot zoom or query the data.
  • 24. Putting it all together……. Another shameless plug, but an example of the useful data that is in ShareGeo Open ready to be used.
  • 25. Putting it all together…….
  • 26. Putting it all together…….
  • 27. Putting it all together…….
  • 28. Putting it all together…….
  • 29. Putting it all together…….
  • 30. Putting it all together……. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>OGR2Layers</title> <style> #map{width:800px;height:600px;} </style> <script src="http://www.openlayers.org/api/2.11/OpenLayers.js"></script> <script type="text/javascript"> var map, selectsControls function init(){ var option = { projection: new OpenLayers.Projection("EPSG:900913"), displayProjection: new OpenLayers.Projection("EPSG:4326") }; map = new OpenLayers.Map('map', option); olmapnik = new OpenLayers.Layer.OSM("OpenStreetMap Mapnik", "http://tile.openstreetmap.org/${z}/${x}/${y}.png"); map.addLayer(olmapnik); map.setBaseLayer(olmapnik); var ls= new OpenLayers.Control.LayerSwitcher(); map.addControl(ls); ls.maximizeControl(); map.addControl(new OpenLayers.Control.Scale()); map.addControl(new OpenLayers.Control.Attribution()); map.addControl(new OpenLayers.Control.Navigation()); var WindFarm_Consented2011 = new OpenLayers.Layer.GML("WindFarm_Consented2011 GeoJSON", "WindFarm_Consented2011.GeoJSON", {format: OpenLayers.Format.GeoJSON}); map.addLayer(WindFarm_Consented2011); var WindFarm_Construction2011 = new OpenLayers.Layer.GML("WindFarm_Construction2011 GeoJSON", "WindFarm_Construction2011.GeoJSON", {format: OpenLayers.Format.GeoJSO map.addLayer(WindFarm_Construction2011); var WindFarm_Operational2011 = new OpenLayers.Layer.GML("WindFarm_Operational2011 GeoJSON", "WindFarm_Operational2011.GeoJSON", {format: OpenLayers.Format.GeoJSON}) map.addLayer(WindFarm_Operational2011); var WindFarm_Proposed2011 = new OpenLayers.Layer.GML("WindFarm_Proposed2011 GeoJSON", "WindFarm_Proposed2011.GeoJSON", {format: OpenLayers.Format.GeoJSON}); map.addLayer(WindFarm_Proposed2011); extent = new OpenLayers.Bounds(-16.488754,89.996499,-16.488754,89.996499).transform(new OpenLayers.Projection("EPSG:4326"), new OpenLayers.Projection("EPSG:900913")); map.zoomToExtent(extent); }; </script> </head> <body onload="init()"> <h1></h1> <div id="map"></div> </body> </html>
  • 32. Geo-Events/Groups The Hutton Club run seminars at 1600 on Fridays. These focus on Earth System Process and Physical Geography.
  • 33. Geo-Events/Groups EEO-AGI(S) Seminar series is also run by the School of Geoscience on Fridays. 2 Nov – Gary Gale, Director of Places, Nokia 23 Nov – “Humanising Archaeological GIS”, Prof. Gary Lock, University of Oxford 18 Jan – “Analytical and Interactive Cartography”, Prof. Jason Dykes, City University 8 Feb – “New GI Technologies for Historical Maps”, Chris Fleet, National Library of Scotland 1 March – “City Science”, Prof. Mike Batty, CASA, UCL 22 March - “Our Ecosystem: Web-based Spatial Data Sharing for Non-Expert GI Users”, Dr. Karin Viergever, Ecometrica 26 April – “Life at NASA”, Will Cornforth, University of Edinburgh
  • 34. Geo-Events/Groups The Royal Scottish Geographical Society run regular seminars around Scotland. Topics are broad and varied.
  • 35. The objectives of AGI Scotland are: • to promote awareness on GI and how it could benefit the citizen, commerce and good governance within Scotland • to gain access to Scottish and UK governments • to bring together people with an interest in GI within Scotland • to tune and deliver membership benefits to Scottish members • to encourage AGI membership at the grass roots level within Scotland 26 November 2012 – GeoDrinks Glasgow* Join us at Waxy O’Connors, from 4pm onwards for an informal networking event 27 February 2013 – AGI Scotland Annual Conference, University of Glasgow For further details of these and other UK wide events, see www.agi.org.uk
  • 36. Addy Pope Email: addy.pope@ed.ac.uk Twitter: @go_geo http://www.gogeo.ac.uk EDINA website: http://edina.ac.uk

Notas do Editor

  1. A map which shows statistical information in diagrammatic form Statistics first , geographical accuracy second
  2. Create, Share and reuse Production strength service and toolset Break the barriers to current creation by non specialists
  3. Create, Share and reuse Production strength service and toolset Break the barriers to current creation by non specialists
  4. Create, Share and reuse Production strength service and toolset Break the barriers to current creation by non specialists
  5. API is the main guts of it – interfaces with the guts of Scape Toad Allows upload and download of input and output files Website uses a wizard to guide user through creation process
  6. API is the main guts of it – interfaces with the guts of Scape Toad Allows upload and download of input and output files Website uses a wizard to guide user through creation process
  7. API is the main guts of it – interfaces with the guts of Scape Toad Allows upload and download of input and output files Website uses a wizard to guide user through creation process
  8. API is the main guts of it – interfaces with the guts of Scape Toad Allows upload and download of input and output files Website uses a wizard to guide user through creation process
  9. API is the main guts of it – interfaces with the guts of Scape Toad Allows upload and download of input and output files Website uses a wizard to guide user through creation process
  10. API is the main guts of it – interfaces with the guts of Scape Toad Allows upload and download of input and output files Website uses a wizard to guide user through creation process
  11. API is the main guts of it – interfaces with the guts of Scape Toad Allows upload and download of input and output files Website uses a wizard to guide user through creation process
  12. API is the main guts of it – interfaces with the guts of Scape Toad Allows upload and download of input and output files Website uses a wizard to guide user through creation process
  13. API is the main guts of it – interfaces with the guts of Scape Toad Allows upload and download of input and output files Website uses a wizard to guide user through creation process
  14. API is the main guts of it – interfaces with the guts of Scape Toad Allows upload and download of input and output files Website uses a wizard to guide user through creation process
  15. API is the main guts of it – interfaces with the guts of Scape Toad Allows upload and download of input and output files Website uses a wizard to guide user through creation process