SlideShare uma empresa Scribd logo
1 de 52
Baixar para ler offline
MapInfo Pro v2019
Confidently explore, model and act
January 2021
Peter Horsbøll Møller | Distinguished Engineer
Precisely MapInfo Pro
• A desktop mapping application which provides comprehensive
Location Intelligence capabilities
• Base map creation and editing
• Visualisation and analysis
• Output and sharing in all forms
• Integrated with Precisely Location Intelligence Suite
• Easy to learn and use
• Available in 16 languages
• Used in a wide variety of vertical markets and industries
• Public sector (planning, emergency response, crime analysis)
• Telecommunications (network planning and optimisation)
• Insurance (risk analysis, book analysis, underwriting analysis)
• Retail and property (site location and analysis, targeted marketing)
• And lots more!...
MapInfo Pro in Action
Ten Ways to Use MapInfo Pro
1. Visualise truancy, anti-social behaviour and other incidents in the area of responsibility for a local
authority.
2. Analyse the signal quality data of a mobile phone network with respect to reported problems, call
volumes or population served in a wireless telecommunications provider.
3. Calculate the risk exposure of a set of insurance policies in a particular area for a property and
casualty insurance company.
4. Compare potential store locations to help choose a new site for a retail store operation.
5. Plan and organise responses to accidents, disasters and other emergencies in a local, regional or
national government agency.
Ten Ways to Use MapInfo Pro
6. Plan and optimise the use of the network of water pipes, electrical wires or telephone lines in a utility.
7. Analyse crime patterns and trends in a police force.
8. Find correlations and causes for health related problems and issues in a health service.
9. Plan new road layouts, traffic plans and property developments in a town planning department or
engineering consultancy.
10. Identify and target the closest customers to my stores or service locations for a tactical marketing
campaign.
Key Capabilities
• The Basics
• Working with maps, panning, zooming, layering
• Getting data into MapInfo Pro and on to a map.
• Using your own data on the maps!
• Creating and editing maps
• Some MapInfo Pro users create and update base map information for their organisation.
• Visualizing and analyzing data
• MapInfo Pro can be applied to help solve business problems!
• Presentation and output
• Printing and plotting maps, preparing maps for publication and more!
Highlights since
MapInfo Pro v.12.5
MapInfo Pro v.15, v.15.2, v.16 MapInfo Pro v.17
MapInfo Pro Advanced
• Advanced Raster Capabilities
MapInfo Communities
• Online interaction with peers
Welcome Window
• News, resources, samples, help
Precisely API Integration
• Cloud-based services and data
Python Support
• Scripting to automate processes
MapInfo Viewer
• Free viewer for sharing maps
MapInfo Marketplace
• User-made apps and services
• Improved Layouts
• Extended TAB support
• Spectrum Integration
• New intuitive User Interface
• Interactive Thematic Mapping
• MapInfo Pro Advanced
• MapInfo Communities
• Redesigned User Interface
• Welcome window
• GeoCode/GeoZone API integration
• Customizable Toolbars
• Layout Toolbar & Layout Templates
MapInfo Pro v.2019 MapInfo Pro Advanced
• Simplified Python Support
• Expanded Heat Map Functionality
• MapInfo Viewer
• New Raster Tools, e.g. LiDAR tools
• Enhanced SQL functionality
• MapInfo Marketplace
• Raster Interpolation and Modelling
• Satellite, Aerial, DEM, LiDAR
• Multi-Resolution Raster (MRR)
• Raster Calculator, Heat Maps
• Slope, Aspect, Viewsheds
• Warp, Polygonize, Align
MapInfo Pro MapInfo
Pro v2019
MapInfo
Pro v2019.1
• Releases in 2019 & 2020
• v2019, November 2019
• v2019.1, March 2020
• v2019.2, May 2020
• v2019.3, October 2020
• SQL Improvements
• Layout Improvements
• Heat Map Tool
• MapInfo Marketplace
• Additional SQL Improvements
• Improved support for Python
• Improved Heat Map Tool
MapInfo
Pro v2019.2
MapInfo
Pro v2019.3
• Bug fixes
• Patch installation
• LiDAR tools: Surface & Tree Canopy
• Parameterized Queries
• Improved support for Python
• Precisely Branding
Improving the way you query
Multiple approaches
The syntax & functionality The interface
Select expression_list
From table_name [, ...]
[Where expression_group]
[Into results_table [Noselect]
[Hide]]
[Group By column_list]
[Order By column_list]
New dedicated tools
• Select by Location
• SQL Window
• Close All Queries
Access to Queries
• Run or Edit from SQL dropdown
• Copy query from Table List
MapInfo Pro v2019
11












Table Alias makes it easier to switch tables
Statement shows on the table in Table List
Spatial aggregations lets you keep the object
12







Joins allow more join conditions now
Possible thru the new SQL Window
Possible thru the new SQL Window

Cross Joins are now possible
More improvements coming…
The syntax & functionality
Select expression_list
From table_name [As "TableAlias"] [, ...]
[Where expression_group]
[Into results_table [Noselect] [Hide]]
[Group By column_list]
[Order By column_list]
[Limit num_records]
New Limit clause
Support for Table Alias
Support Spatial Aggregations
Cross Join Support
Select all columns from a specific table
Support for MapBasic defines
such as function attributes
and colors
The "Object" keyword
MapInfo Pro v2019
The syntax & functionality
Expression Support in Where Clause
Update table_name
Set column_name = expr [ , column_name = expr, ...]
[ Where [RowId = id_num | expression]]
[ DropIndex ( Auto | On | Off ) ]
Expression Support in Where Clause
Delete [Object]
From table_name
[ Where [RowId = id_num | expression]]
[ DropIndex ( Auto | On | Off ) ]
MapInfo Pro v2019
The syntax & functionality
• Table Alias
Select a.Name
From Addresses As "a"
• Column Alias
Select a.Name As "OtherName"
From Addresses As a
• All columns from a specific table
Select a.*, Area(Overlap(a.obj, z.obj), "sq m")
From PopAreas As "a", Zones As "z"
Where a.obj Intersects z.obj
MapInfo Pro v2019
The syntax & functionality
• Function Defines
Select ObjectInfo(Obj, OBJ_INFO_NPNTS) As "Nodes"
From PopAreas
• Spatial Aggregations
Select Type, Count(*) "NumRecords", AggregateCombine(OBJ)
From PopAreas
Group By Type
• Specifying which object to use
Select Addresses.*, CartesianBuffer(obj, 24, 250, "m") object
From Addresses
MapInfo Pro v2019
The syntax & functionality
• Limit clause
Select *
From Countries
Where Pop_1994 > 2000000
And Pop_1994 < 3000000
Limit 5
• Cross Joins
Select Addresses.*, ObjectDistance(a.obj, z.obj, "m")
From Addresses As "a", Zones As "z"
Where ObjectDistance(a.obj, z.obj, "m") < 200
MapInfo Pro v2019
The syntax & functionality
• Where clause for Delete:
Delete From PopAreas
Where Not OBJ
• Where clause for Update
Update PopAreas
Set Area_sqm = Area(obj, "sq m")
Where Area_sqm = 0
MapInfo Pro v2019
The interface
Version 17.0
Version 8.0
MapInfo Pro v2019
SQL Window
List of statements from the current session,
with history. A change results in a new script
Statement preview
Favorite, Rename, Reload from File & Save
Mixture of Select, Delete, Update and Insert
statement. And the new Script type, too.
Create New Statement
MapInfo Pro v2019
Statement List
• Favorites & from MapBasic script folder
• Statements from current session
• Preview statement in Tool Tip
• A new instance is created when edited
• Save, Rename, Reload & Delete
• Mark as Favorite
• Load from file
• Create new statement
MapInfo Pro v2019
Recent Items
• Holds the most recently used items
• Click to insert into script area
• Right-click a text in the script area to add to the Recent
Items
MapInfo Pro v2019
Lists for Tables, Columns and Joins
23
• Context aware
• Searchable
MapInfo Pro v2019
Lists for Operators, Aggregates & Functions
MapInfo Pro v2019
Values from Columns
• Get values from columns via dropdown
• Or via Intellisense
MapInfo Pro v2019
Variables
• Create and use variables to get input from the user when running the script/query
• Support multiple input types; single values, lists, files, tables, columns, layer, color, styles and more
MapInfo Pro v2019
Statement Area
• Syntax highlighting
• Intellisense (use Ctrl+Space)
• Right-click to:
• Add to Recent Items
• Format Text
• Clear Contents
• and more
• MapBasic window now also supports syntax
highlighting and intellisense
MapInfo Pro v2019
Output Area
• Syntax Check or Time Spent/Records found
• Browse
• Add to Map
• Styling
• No Override
• Rotate Automatic Colors
• Fixed Color
• Find Selection
• Preferences controls whether it zooms to or just pans to
MapInfo Pro v2019
SQL Dropdown
Multiple SQL tools, new and old
Help building spatial joins
Close all Query Tables
Favorites: Run or edit in SQL Window
Recent: Run or edit in SQL Window
MapInfo Pro v2019
MapBasic Scripts
• The SQL Window supports multiple statements/small MapBasic
scripts
• Save as Favorite and Run from the SQL Dropdown
30
MapInfo Pro v2019
Virtual Spatial Object
• You can now show the calculated spatial objects in a map
• Use the Object keyword if a query returns multiple spatial
objects
31
MapInfo Pro v2019
MapBasic Defines
• You can now use MapBasic defines instead of the numeric codes
in your queries
• It makes them easier to read.
• Here we are getting the name of the table the selection is based
on
32
MapInfo Pro v2019
Cross Joins and Temporary Tables
• Join tables where objects don't touch
• Use temporary tables/queries in joins
• Use multiple queries via the SQL Window
33
MapInfo Pro v2019
Update using the SQL Window
• Supports updating objects
• Supports where expression
34
MapInfo Pro v2019
Select by Location
• Build spatial joins via easy to use dialog
• Support all spatial operators and Within a distance
• Resulting query can afterwards be loaded into the SQL Window
35
MapInfo Pro v2019
Hands-on
with SQL
Layout Improvements
• Support for Line Styles
• Support for Region Styles
• Vectorized Legends: More crisp Legends
• Improved performance when loading workspaces with layouts
• Improved performance when zooming/panning in layouts
MapInfo Pro v2019
38
MapInfo
Pro
v2019
39
MapInfo Pro v2019
MapInfo Pro v17
40
MapInfo Pro v2019
MapInfo Pro v17
Heat Map
• User friendly Heat Map tool in MapInfo Pro
41
MapInfo Pro v2019
42
Standard Detailed
Smooth Optimal
MapInfo Pro v2019
LiDAR Tools
• Import LiDAR files (.LAS/.LAZ) directly into MapInfo Pro, and extract
specific surface types into raster grids
Canopy Analysis
• Analysis Canopy Height, Density and Coverage (MapInfo Pro Advanced)
• Easy to use tool:
• Select input LiDAR files, LAS or LAZ
• Select Tree Canopy method
• Select Ground Classes
• Select Vegetation Classes
• Process
MapInfo Marketplace
• Browse
• Search
• Download
• Deploy
• Notifications on Updates
• Get Updates
MapInfo Pro v2019
Support for Python
• MapInfo Pro comes with Python 3.7 and a number of the most common
Python libraries such as GDAL, Pandas, SciPy, and more
• You can use Python in multiple ways in MapInfo
• Write and execute Python scripts via the Python
console
• Write and execute Python scripts via the SQL
window
• Load and execute Python files (.py) as add-ins
• Python gives you access to looping and
branching via scripts in the Python console
and the SQL window which can't be done
with MapBasic scripts
• With Python you get access to an object
model for tables, maps, layers, and thematic
maps
Disclaimer:
The following roadmaps outline Precisely’s general product direction.
This is intended for informational purposes only and may not be used to form
the basis for any contract. It is not a commitment to deliver any material,
code, or functionality, and should not be relied upon in making purchasing
decisions. The specific features, functionality and release timing of any new
products or new versions of current products remain at the sole discretion of
Precisely.
This presentation contains Precisely confidential statements. Final
implementation and delivery dates are subject to change without prior notice.
47
Precisely MapInfo Pro Roadmap Themes
New development for MapInfo Pro currently falls under one of four major themes:
• Ease of use – One of MapInfo’s major attributes is its ease of use. We develop our software in a way that takes
complex geospatial data access, management, analysis, and visualization and delivers it via an intuitive set of
features and functionality. We continue to expand the technical capabilities of the product while remaining
committed to delivering a positive user experience.
• Integration and automation – While MapInfo Pro is a complete GIS software solution, it is also a valuable
component of a larger, enterprise Location Intelligence solution. Development is focused in areas where we can
integrate with other technologies, both within and outside of our own portfolio, to increase productivity, simplify the
transfer of location-based information, and automate spatial processes.
• Advanced raster development – We continue to develop our raster access, management, analysis, and
visualization capabilities via MapInfo Pro Advanced and the Raster SDK. This includes continued development on
Multi-Resolution Raster (MRR), its integration into precisely products, and adoption by the industry.
• Strategic partnerships and customer requests – We have a large community of users and wide network of
partners globally. We strive to communicate regularly with our users and take feedback on the product very
seriously. We work to develop functionality directly with partners in strategic areas and fix bugs or other customer
requests that are suggested through the Precisely ideas portal.
MapInfo Pro v.2021 Potential Candidates
Ease of use
• Time series creation for vector and raster datasets
• Offline MapInfo Pro Viewer
• User Interface around Smart Text
• Select by Attribute Tool
• Filter Improvements
• SQL Functionality
• Close unnamed Queries
• Make WMS Layer not selectable
Integration and automation
• FME 2021 update – 3rd party library
• Python improvements based on feedback
5
MapInfo Pro v.2021 Potential Candidates
Advanced Raster Development
• Time series creation for vector and raster datasets
• Tile server table reprojection
• Virtual Raster Expansion - UI
• Expanded LiDAR support -
• MRR integration with Spectrum Platform (Linux)
Strategic partnerships and customer requests
• Import/Export GDAL - WKT/CSV/TXT/GeoJSON import/Export
• Scalable Vector Graphic Support - SVG - Symbology
• MapInfo Marketplace internal administration console
5
Knowledge Community
https://community.precisely.com/home
51
Thank you

Mais conteúdo relacionado

Mais procurados

Muguki session on MapInfo Professional 11 and SQL Server 2008
Muguki session on MapInfo Professional 11 and SQL Server 2008Muguki session on MapInfo Professional 11 and SQL Server 2008
Muguki session on MapInfo Professional 11 and SQL Server 2008Peter Horsbøll Møller
 
Taking Advantage of a Spatial Database with MapInfo Professional
Taking Advantage of a Spatial Database with MapInfo ProfessionalTaking Advantage of a Spatial Database with MapInfo Professional
Taking Advantage of a Spatial Database with MapInfo ProfessionalPeter Horsbøll Møller
 
Using Spectrum on Demand from MapInfo Pro
Using Spectrum on Demand from MapInfo ProUsing Spectrum on Demand from MapInfo Pro
Using Spectrum on Demand from MapInfo ProPeter Horsbøll Møller
 
MapInfo Professional 12.5 and Discover3D 2014 - A brief overview
MapInfo Professional 12.5 and Discover3D 2014 - A brief overviewMapInfo Professional 12.5 and Discover3D 2014 - A brief overview
MapInfo Professional 12.5 and Discover3D 2014 - A brief overviewPrakher Hajela Saxena
 
Getting Started with the Ribbon library - MUGUKI User Group Meeting 2016
Getting Started with the Ribbon library - MUGUKI User Group Meeting 2016Getting Started with the Ribbon library - MUGUKI User Group Meeting 2016
Getting Started with the Ribbon library - MUGUKI User Group Meeting 2016Peter Horsbøll Møller
 
Concepts and Methods of Embedding Statistical Data into Maps
Concepts and Methods of Embedding Statistical Data into MapsConcepts and Methods of Embedding Statistical Data into Maps
Concepts and Methods of Embedding Statistical Data into MapsMohammad Liton Hossain
 
Qgis tutorial compiled
Qgis tutorial compiledQgis tutorial compiled
Qgis tutorial compiledSARSIJ MISHRA
 
QGIS Module 2
QGIS Module 2QGIS Module 2
QGIS Module 2CAPSUCSF
 
Nycct GIS_primer tutorial
Nycct  GIS_primer tutorialNycct  GIS_primer tutorial
Nycct GIS_primer tutorialNYCCTfab
 
GEOPROCESSING IN QGIS
GEOPROCESSING IN QGISGEOPROCESSING IN QGIS
GEOPROCESSING IN QGISSwetha A
 
Where2.0Now - Finding the heat in Thematic Maps
Where2.0Now - Finding the heat in Thematic MapsWhere2.0Now - Finding the heat in Thematic Maps
Where2.0Now - Finding the heat in Thematic MapsJohn Fagan
 
Exploration and 3D GIS Software - MapInfo Professional Discover3D 2015
Exploration and 3D GIS Software - MapInfo Professional Discover3D 2015Exploration and 3D GIS Software - MapInfo Professional Discover3D 2015
Exploration and 3D GIS Software - MapInfo Professional Discover3D 2015Prakher Hajela Saxena
 
MapInfo Professional Discover3D 2014 - Features
MapInfo Professional Discover3D 2014 - FeaturesMapInfo Professional Discover3D 2014 - Features
MapInfo Professional Discover3D 2014 - FeaturesPrakher Hajela Saxena
 
QGIS Module 4
QGIS Module 4QGIS Module 4
QGIS Module 4CAPSUCSF
 
Introduction to Tools in ArcGIS
Introduction to Tools in ArcGISIntroduction to Tools in ArcGIS
Introduction to Tools in ArcGISDaniele Baker
 

Mais procurados (20)

Muguki session on MapInfo Professional 11 and SQL Server 2008
Muguki session on MapInfo Professional 11 and SQL Server 2008Muguki session on MapInfo Professional 11 and SQL Server 2008
Muguki session on MapInfo Professional 11 and SQL Server 2008
 
Taking Advantage of a Spatial Database with MapInfo Professional
Taking Advantage of a Spatial Database with MapInfo ProfessionalTaking Advantage of a Spatial Database with MapInfo Professional
Taking Advantage of a Spatial Database with MapInfo Professional
 
Using Spectrum on Demand from MapInfo Pro
Using Spectrum on Demand from MapInfo ProUsing Spectrum on Demand from MapInfo Pro
Using Spectrum on Demand from MapInfo Pro
 
MapInfo Professional 12.5 and Discover3D 2014 - A brief overview
MapInfo Professional 12.5 and Discover3D 2014 - A brief overviewMapInfo Professional 12.5 and Discover3D 2014 - A brief overview
MapInfo Professional 12.5 and Discover3D 2014 - A brief overview
 
Getting Started with the Ribbon library - MUGUKI User Group Meeting 2016
Getting Started with the Ribbon library - MUGUKI User Group Meeting 2016Getting Started with the Ribbon library - MUGUKI User Group Meeting 2016
Getting Started with the Ribbon library - MUGUKI User Group Meeting 2016
 
Concepts and Methods of Embedding Statistical Data into Maps
Concepts and Methods of Embedding Statistical Data into MapsConcepts and Methods of Embedding Statistical Data into Maps
Concepts and Methods of Embedding Statistical Data into Maps
 
Qgis tutorial compiled
Qgis tutorial compiledQgis tutorial compiled
Qgis tutorial compiled
 
QGIS Module 2
QGIS Module 2QGIS Module 2
QGIS Module 2
 
MapInfo Discover 3D: From 2D to 3D
MapInfo Discover 3D: From 2D to 3DMapInfo Discover 3D: From 2D to 3D
MapInfo Discover 3D: From 2D to 3D
 
Nycct GIS_primer tutorial
Nycct  GIS_primer tutorialNycct  GIS_primer tutorial
Nycct GIS_primer tutorial
 
QGIS Tutorial 1
QGIS Tutorial 1QGIS Tutorial 1
QGIS Tutorial 1
 
GEOPROCESSING IN QGIS
GEOPROCESSING IN QGISGEOPROCESSING IN QGIS
GEOPROCESSING IN QGIS
 
Where2.0Now - Finding the heat in Thematic Maps
Where2.0Now - Finding the heat in Thematic MapsWhere2.0Now - Finding the heat in Thematic Maps
Where2.0Now - Finding the heat in Thematic Maps
 
Exploration and 3D GIS Software - MapInfo Professional Discover3D 2015
Exploration and 3D GIS Software - MapInfo Professional Discover3D 2015Exploration and 3D GIS Software - MapInfo Professional Discover3D 2015
Exploration and 3D GIS Software - MapInfo Professional Discover3D 2015
 
MapInfo Professional Discover3D 2014 - Features
MapInfo Professional Discover3D 2014 - FeaturesMapInfo Professional Discover3D 2014 - Features
MapInfo Professional Discover3D 2014 - Features
 
QGIS training
QGIS trainingQGIS training
QGIS training
 
QGIS Module 4
QGIS Module 4QGIS Module 4
QGIS Module 4
 
QGIS training class 1
QGIS training class 1QGIS training class 1
QGIS training class 1
 
Introduction to Tools in ArcGIS
Introduction to Tools in ArcGISIntroduction to Tools in ArcGIS
Introduction to Tools in ArcGIS
 
The strength of a spatial database
The strength of a spatial databaseThe strength of a spatial database
The strength of a spatial database
 

Semelhante a Precisely MapInfo Pro v2019 and Roadmap

MapInfo Pro v2023: The Next Dimension in Spatial Analytics
MapInfo Pro v2023: The Next Dimension in Spatial AnalyticsMapInfo Pro v2023: The Next Dimension in Spatial Analytics
MapInfo Pro v2023: The Next Dimension in Spatial AnalyticsPrecisely
 
Discover New Spatial Insights with Spectrum 2020.1: Experience Enhanced User ...
Discover New Spatial Insights with Spectrum 2020.1: Experience Enhanced User ...Discover New Spatial Insights with Spectrum 2020.1: Experience Enhanced User ...
Discover New Spatial Insights with Spectrum 2020.1: Experience Enhanced User ...Precisely
 
What's new in Hexagon-Geospatial Power Portfolio 2016
What's new in Hexagon-Geospatial Power Portfolio 2016What's new in Hexagon-Geospatial Power Portfolio 2016
What's new in Hexagon-Geospatial Power Portfolio 2016Planetek Italia Srl
 
SenchaCon 2016: Integrating Geospatial Maps & Big Data Using CartoDB via Ext ...
SenchaCon 2016: Integrating Geospatial Maps & Big Data Using CartoDB via Ext ...SenchaCon 2016: Integrating Geospatial Maps & Big Data Using CartoDB via Ext ...
SenchaCon 2016: Integrating Geospatial Maps & Big Data Using CartoDB via Ext ...Sencha
 
Explore new dimensions with MapInfo Vertical Mapper
Explore new dimensions with MapInfo Vertical Mapper Explore new dimensions with MapInfo Vertical Mapper
Explore new dimensions with MapInfo Vertical Mapper DataMap Europe Ltd.
 
MapInfo Pro v2021 - Next Generation Location Analytics Made Easy
MapInfo Pro v2021 - Next Generation Location Analytics Made EasyMapInfo Pro v2021 - Next Generation Location Analytics Made Easy
MapInfo Pro v2021 - Next Generation Location Analytics Made EasyPrecisely
 
Performance and Scalability for Maps API Sites (Dev Fest '10 Mexico)
Performance and Scalability for Maps API Sites (Dev Fest '10 Mexico)Performance and Scalability for Maps API Sites (Dev Fest '10 Mexico)
Performance and Scalability for Maps API Sites (Dev Fest '10 Mexico)Ossama Alami
 
Rapid Product Prototyping In Ordnance Survey
Rapid Product Prototyping In Ordnance SurveyRapid Product Prototyping In Ordnance Survey
Rapid Product Prototyping In Ordnance SurveySafe Software
 
From Data to Maps to Docs: Turn Days into Minutes with Automated Integration
From Data to Maps to Docs: Turn Days into Minutes with Automated IntegrationFrom Data to Maps to Docs: Turn Days into Minutes with Automated Integration
From Data to Maps to Docs: Turn Days into Minutes with Automated IntegrationSafe Software
 
Enhance Location-Based Insights with Additional Geocoding Capabilities
Enhance Location-Based Insights with Additional Geocoding CapabilitiesEnhance Location-Based Insights with Additional Geocoding Capabilities
Enhance Location-Based Insights with Additional Geocoding CapabilitiesPrecisely
 
How to empower community by using GIS lecture 2
How to empower community by using GIS lecture 2How to empower community by using GIS lecture 2
How to empower community by using GIS lecture 2wang yaohui
 
Developing Spatial Applications with CARTO for React v1.1
Developing Spatial Applications with CARTO for React v1.1Developing Spatial Applications with CARTO for React v1.1
Developing Spatial Applications with CARTO for React v1.1CARTO
 
Benefits of Using MongoDB Over RDBMSs
Benefits of Using MongoDB Over RDBMSsBenefits of Using MongoDB Over RDBMSs
Benefits of Using MongoDB Over RDBMSsMongoDB
 
Salesforce Analytics Cloud - Explained
Salesforce Analytics Cloud - ExplainedSalesforce Analytics Cloud - Explained
Salesforce Analytics Cloud - ExplainedCarl Brundage
 
iMap 4.0 Effective Management of Spatial Information
iMap 4.0 Effective Management of Spatial InformationiMap 4.0 Effective Management of Spatial Information
iMap 4.0 Effective Management of Spatial InformationEsri
 
MongoDB.local Seattle 2019: Bringing Data to Life with MongoDB Charts
MongoDB.local Seattle 2019: Bringing Data to Life with MongoDB Charts MongoDB.local Seattle 2019: Bringing Data to Life with MongoDB Charts
MongoDB.local Seattle 2019: Bringing Data to Life with MongoDB Charts MongoDB
 

Semelhante a Precisely MapInfo Pro v2019 and Roadmap (20)

MapInfo Pro v2023: The Next Dimension in Spatial Analytics
MapInfo Pro v2023: The Next Dimension in Spatial AnalyticsMapInfo Pro v2023: The Next Dimension in Spatial Analytics
MapInfo Pro v2023: The Next Dimension in Spatial Analytics
 
Discover New Spatial Insights with Spectrum 2020.1: Experience Enhanced User ...
Discover New Spatial Insights with Spectrum 2020.1: Experience Enhanced User ...Discover New Spatial Insights with Spectrum 2020.1: Experience Enhanced User ...
Discover New Spatial Insights with Spectrum 2020.1: Experience Enhanced User ...
 
Oracle OpenWorld 2014 Review Part Five - SaaS
Oracle OpenWorld 2014 Review Part Five - SaaSOracle OpenWorld 2014 Review Part Five - SaaS
Oracle OpenWorld 2014 Review Part Five - SaaS
 
Mapinfo 2014
Mapinfo 2014Mapinfo 2014
Mapinfo 2014
 
What's new in Hexagon-Geospatial Power Portfolio 2016
What's new in Hexagon-Geospatial Power Portfolio 2016What's new in Hexagon-Geospatial Power Portfolio 2016
What's new in Hexagon-Geospatial Power Portfolio 2016
 
SenchaCon 2016: Integrating Geospatial Maps & Big Data Using CartoDB via Ext ...
SenchaCon 2016: Integrating Geospatial Maps & Big Data Using CartoDB via Ext ...SenchaCon 2016: Integrating Geospatial Maps & Big Data Using CartoDB via Ext ...
SenchaCon 2016: Integrating Geospatial Maps & Big Data Using CartoDB via Ext ...
 
Explore new dimensions with MapInfo Vertical Mapper
Explore new dimensions with MapInfo Vertical Mapper Explore new dimensions with MapInfo Vertical Mapper
Explore new dimensions with MapInfo Vertical Mapper
 
HERE Maps for the Nokia X platform
HERE Maps for the Nokia X platformHERE Maps for the Nokia X platform
HERE Maps for the Nokia X platform
 
MapInfo Pro v2021 - Next Generation Location Analytics Made Easy
MapInfo Pro v2021 - Next Generation Location Analytics Made EasyMapInfo Pro v2021 - Next Generation Location Analytics Made Easy
MapInfo Pro v2021 - Next Generation Location Analytics Made Easy
 
Performance and Scalability for Maps API Sites (Dev Fest '10 Mexico)
Performance and Scalability for Maps API Sites (Dev Fest '10 Mexico)Performance and Scalability for Maps API Sites (Dev Fest '10 Mexico)
Performance and Scalability for Maps API Sites (Dev Fest '10 Mexico)
 
Rapid Product Prototyping In Ordnance Survey
Rapid Product Prototyping In Ordnance SurveyRapid Product Prototyping In Ordnance Survey
Rapid Product Prototyping In Ordnance Survey
 
From Data to Maps to Docs: Turn Days into Minutes with Automated Integration
From Data to Maps to Docs: Turn Days into Minutes with Automated IntegrationFrom Data to Maps to Docs: Turn Days into Minutes with Automated Integration
From Data to Maps to Docs: Turn Days into Minutes with Automated Integration
 
Enhance Location-Based Insights with Additional Geocoding Capabilities
Enhance Location-Based Insights with Additional Geocoding CapabilitiesEnhance Location-Based Insights with Additional Geocoding Capabilities
Enhance Location-Based Insights with Additional Geocoding Capabilities
 
How to empower community by using GIS lecture 2
How to empower community by using GIS lecture 2How to empower community by using GIS lecture 2
How to empower community by using GIS lecture 2
 
Developing Spatial Applications with CARTO for React v1.1
Developing Spatial Applications with CARTO for React v1.1Developing Spatial Applications with CARTO for React v1.1
Developing Spatial Applications with CARTO for React v1.1
 
Benefits of Using MongoDB Over RDBMSs
Benefits of Using MongoDB Over RDBMSsBenefits of Using MongoDB Over RDBMSs
Benefits of Using MongoDB Over RDBMSs
 
Salesforce Analytics Cloud - Explained
Salesforce Analytics Cloud - ExplainedSalesforce Analytics Cloud - Explained
Salesforce Analytics Cloud - Explained
 
iMap 4.0 Effective Management of Spatial Information
iMap 4.0 Effective Management of Spatial InformationiMap 4.0 Effective Management of Spatial Information
iMap 4.0 Effective Management of Spatial Information
 
Geospatial Product Watch 2015
Geospatial Product Watch 2015Geospatial Product Watch 2015
Geospatial Product Watch 2015
 
MongoDB.local Seattle 2019: Bringing Data to Life with MongoDB Charts
MongoDB.local Seattle 2019: Bringing Data to Life with MongoDB Charts MongoDB.local Seattle 2019: Bringing Data to Life with MongoDB Charts
MongoDB.local Seattle 2019: Bringing Data to Life with MongoDB Charts
 

Mais de Peter Horsbøll Møller

Eksklusivsmagning - 10 års jubilæum, Oksenvad Whiskylaug
Eksklusivsmagning - 10 års jubilæum, Oksenvad WhiskylaugEksklusivsmagning - 10 års jubilæum, Oksenvad Whiskylaug
Eksklusivsmagning - 10 års jubilæum, Oksenvad WhiskylaugPeter Horsbøll Møller
 
Llinking Spectrum dataflows to MapInfo Pro
Llinking Spectrum dataflows to MapInfo ProLlinking Spectrum dataflows to MapInfo Pro
Llinking Spectrum dataflows to MapInfo ProPeter Horsbøll Møller
 
MapInfo Pro 64 bit og MapInfo Pro Advanced 64 bit
MapInfo Pro 64 bit og MapInfo Pro Advanced 64 bitMapInfo Pro 64 bit og MapInfo Pro Advanced 64 bit
MapInfo Pro 64 bit og MapInfo Pro Advanced 64 bitPeter Horsbøll Møller
 
MapInfo Pro Raster og de danske højdedata
MapInfo Pro Raster og de danske højdedataMapInfo Pro Raster og de danske højdedata
MapInfo Pro Raster og de danske højdedataPeter Horsbøll Møller
 
Blend, Single Grain og Single Malt Whisky
Blend, Single Grain og Single Malt WhiskyBlend, Single Grain og Single Malt Whisky
Blend, Single Grain og Single Malt WhiskyPeter Horsbøll Møller
 
MapInfo Pro og SQL Server - Uden opgaver
MapInfo Pro og SQL Server - Uden opgaverMapInfo Pro og SQL Server - Uden opgaver
MapInfo Pro og SQL Server - Uden opgaverPeter Horsbøll Møller
 

Mais de Peter Horsbøll Møller (17)

MapInfo Pro v12.5 to v2021.1 Overview
MapInfo Pro v12.5 to v2021.1 OverviewMapInfo Pro v12.5 to v2021.1 Overview
MapInfo Pro v12.5 to v2021.1 Overview
 
MapInfo Pro Tips & Tricks med Geograf
MapInfo Pro Tips & Tricks med GeografMapInfo Pro Tips & Tricks med Geograf
MapInfo Pro Tips & Tricks med Geograf
 
Eksklusivsmagning - 10 års jubilæum, Oksenvad Whiskylaug
Eksklusivsmagning - 10 års jubilæum, Oksenvad WhiskylaugEksklusivsmagning - 10 års jubilæum, Oksenvad Whiskylaug
Eksklusivsmagning - 10 års jubilæum, Oksenvad Whiskylaug
 
Llinking Spectrum dataflows to MapInfo Pro
Llinking Spectrum dataflows to MapInfo ProLlinking Spectrum dataflows to MapInfo Pro
Llinking Spectrum dataflows to MapInfo Pro
 
Clynelish - Oksenvad Whiskylaug
Clynelish - Oksenvad WhiskylaugClynelish - Oksenvad Whiskylaug
Clynelish - Oksenvad Whiskylaug
 
Whiskysmagning: Samaroli
Whiskysmagning: SamaroliWhiskysmagning: Samaroli
Whiskysmagning: Samaroli
 
Hvad sker der hos Pitney Bowes
Hvad sker der hos Pitney BowesHvad sker der hos Pitney Bowes
Hvad sker der hos Pitney Bowes
 
MapInfo Discover 2015.2 64 bit
MapInfo Discover 2015.2 64 bitMapInfo Discover 2015.2 64 bit
MapInfo Discover 2015.2 64 bit
 
MapInfo Pro 64 bit og MapInfo Pro Advanced 64 bit
MapInfo Pro 64 bit og MapInfo Pro Advanced 64 bitMapInfo Pro 64 bit og MapInfo Pro Advanced 64 bit
MapInfo Pro 64 bit og MapInfo Pro Advanced 64 bit
 
MapInfo Pro Raster og de danske højdedata
MapInfo Pro Raster og de danske højdedataMapInfo Pro Raster og de danske højdedata
MapInfo Pro Raster og de danske højdedata
 
64 bits of MapInfo Pro - Danish version
64 bits of MapInfo Pro - Danish version64 bits of MapInfo Pro - Danish version
64 bits of MapInfo Pro - Danish version
 
Blend, Single Grain og Single Malt Whisky
Blend, Single Grain og Single Malt WhiskyBlend, Single Grain og Single Malt Whisky
Blend, Single Grain og Single Malt Whisky
 
MapInfo Pro og SQL Server - Uden opgaver
MapInfo Pro og SQL Server - Uden opgaverMapInfo Pro og SQL Server - Uden opgaver
MapInfo Pro og SQL Server - Uden opgaver
 
Nyheder i MapInfo Pro 12.5 Dansk 32 bit
Nyheder i MapInfo Pro 12.5 Dansk 32 bitNyheder i MapInfo Pro 12.5 Dansk 32 bit
Nyheder i MapInfo Pro 12.5 Dansk 32 bit
 
The Macallan - Oksenvad Whiskylaug
The Macallan - Oksenvad WhiskylaugThe Macallan - Oksenvad Whiskylaug
The Macallan - Oksenvad Whiskylaug
 
WMS, WFS og alle deres venner
WMS, WFS og alle deres vennerWMS, WFS og alle deres venner
WMS, WFS og alle deres venner
 
Hvad påvirker en whisky
Hvad påvirker en whiskyHvad påvirker en whisky
Hvad påvirker en whisky
 

Último

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 

Último (20)

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 

Precisely MapInfo Pro v2019 and Roadmap

  • 1. MapInfo Pro v2019 Confidently explore, model and act January 2021 Peter Horsbøll Møller | Distinguished Engineer
  • 2. Precisely MapInfo Pro • A desktop mapping application which provides comprehensive Location Intelligence capabilities • Base map creation and editing • Visualisation and analysis • Output and sharing in all forms • Integrated with Precisely Location Intelligence Suite • Easy to learn and use • Available in 16 languages • Used in a wide variety of vertical markets and industries • Public sector (planning, emergency response, crime analysis) • Telecommunications (network planning and optimisation) • Insurance (risk analysis, book analysis, underwriting analysis) • Retail and property (site location and analysis, targeted marketing) • And lots more!...
  • 3. MapInfo Pro in Action
  • 4. Ten Ways to Use MapInfo Pro 1. Visualise truancy, anti-social behaviour and other incidents in the area of responsibility for a local authority. 2. Analyse the signal quality data of a mobile phone network with respect to reported problems, call volumes or population served in a wireless telecommunications provider. 3. Calculate the risk exposure of a set of insurance policies in a particular area for a property and casualty insurance company. 4. Compare potential store locations to help choose a new site for a retail store operation. 5. Plan and organise responses to accidents, disasters and other emergencies in a local, regional or national government agency.
  • 5. Ten Ways to Use MapInfo Pro 6. Plan and optimise the use of the network of water pipes, electrical wires or telephone lines in a utility. 7. Analyse crime patterns and trends in a police force. 8. Find correlations and causes for health related problems and issues in a health service. 9. Plan new road layouts, traffic plans and property developments in a town planning department or engineering consultancy. 10. Identify and target the closest customers to my stores or service locations for a tactical marketing campaign.
  • 6. Key Capabilities • The Basics • Working with maps, panning, zooming, layering • Getting data into MapInfo Pro and on to a map. • Using your own data on the maps! • Creating and editing maps • Some MapInfo Pro users create and update base map information for their organisation. • Visualizing and analyzing data • MapInfo Pro can be applied to help solve business problems! • Presentation and output • Printing and plotting maps, preparing maps for publication and more!
  • 7. Highlights since MapInfo Pro v.12.5 MapInfo Pro v.15, v.15.2, v.16 MapInfo Pro v.17 MapInfo Pro Advanced • Advanced Raster Capabilities MapInfo Communities • Online interaction with peers Welcome Window • News, resources, samples, help Precisely API Integration • Cloud-based services and data Python Support • Scripting to automate processes MapInfo Viewer • Free viewer for sharing maps MapInfo Marketplace • User-made apps and services • Improved Layouts • Extended TAB support • Spectrum Integration • New intuitive User Interface • Interactive Thematic Mapping • MapInfo Pro Advanced • MapInfo Communities • Redesigned User Interface • Welcome window • GeoCode/GeoZone API integration • Customizable Toolbars • Layout Toolbar & Layout Templates MapInfo Pro v.2019 MapInfo Pro Advanced • Simplified Python Support • Expanded Heat Map Functionality • MapInfo Viewer • New Raster Tools, e.g. LiDAR tools • Enhanced SQL functionality • MapInfo Marketplace • Raster Interpolation and Modelling • Satellite, Aerial, DEM, LiDAR • Multi-Resolution Raster (MRR) • Raster Calculator, Heat Maps • Slope, Aspect, Viewsheds • Warp, Polygonize, Align
  • 8. MapInfo Pro MapInfo Pro v2019 MapInfo Pro v2019.1 • Releases in 2019 & 2020 • v2019, November 2019 • v2019.1, March 2020 • v2019.2, May 2020 • v2019.3, October 2020 • SQL Improvements • Layout Improvements • Heat Map Tool • MapInfo Marketplace • Additional SQL Improvements • Improved support for Python • Improved Heat Map Tool MapInfo Pro v2019.2 MapInfo Pro v2019.3 • Bug fixes • Patch installation • LiDAR tools: Surface & Tree Canopy • Parameterized Queries • Improved support for Python • Precisely Branding
  • 9. Improving the way you query
  • 10. Multiple approaches The syntax & functionality The interface Select expression_list From table_name [, ...] [Where expression_group] [Into results_table [Noselect] [Hide]] [Group By column_list] [Order By column_list] New dedicated tools • Select by Location • SQL Window • Close All Queries Access to Queries • Run or Edit from SQL dropdown • Copy query from Table List MapInfo Pro v2019
  • 11. 11             Table Alias makes it easier to switch tables Statement shows on the table in Table List Spatial aggregations lets you keep the object
  • 12. 12        Joins allow more join conditions now Possible thru the new SQL Window Possible thru the new SQL Window  Cross Joins are now possible More improvements coming…
  • 13. The syntax & functionality Select expression_list From table_name [As "TableAlias"] [, ...] [Where expression_group] [Into results_table [Noselect] [Hide]] [Group By column_list] [Order By column_list] [Limit num_records] New Limit clause Support for Table Alias Support Spatial Aggregations Cross Join Support Select all columns from a specific table Support for MapBasic defines such as function attributes and colors The "Object" keyword MapInfo Pro v2019
  • 14. The syntax & functionality Expression Support in Where Clause Update table_name Set column_name = expr [ , column_name = expr, ...] [ Where [RowId = id_num | expression]] [ DropIndex ( Auto | On | Off ) ] Expression Support in Where Clause Delete [Object] From table_name [ Where [RowId = id_num | expression]] [ DropIndex ( Auto | On | Off ) ] MapInfo Pro v2019
  • 15. The syntax & functionality • Table Alias Select a.Name From Addresses As "a" • Column Alias Select a.Name As "OtherName" From Addresses As a • All columns from a specific table Select a.*, Area(Overlap(a.obj, z.obj), "sq m") From PopAreas As "a", Zones As "z" Where a.obj Intersects z.obj MapInfo Pro v2019
  • 16. The syntax & functionality • Function Defines Select ObjectInfo(Obj, OBJ_INFO_NPNTS) As "Nodes" From PopAreas • Spatial Aggregations Select Type, Count(*) "NumRecords", AggregateCombine(OBJ) From PopAreas Group By Type • Specifying which object to use Select Addresses.*, CartesianBuffer(obj, 24, 250, "m") object From Addresses MapInfo Pro v2019
  • 17. The syntax & functionality • Limit clause Select * From Countries Where Pop_1994 > 2000000 And Pop_1994 < 3000000 Limit 5 • Cross Joins Select Addresses.*, ObjectDistance(a.obj, z.obj, "m") From Addresses As "a", Zones As "z" Where ObjectDistance(a.obj, z.obj, "m") < 200 MapInfo Pro v2019
  • 18. The syntax & functionality • Where clause for Delete: Delete From PopAreas Where Not OBJ • Where clause for Update Update PopAreas Set Area_sqm = Area(obj, "sq m") Where Area_sqm = 0 MapInfo Pro v2019
  • 19. The interface Version 17.0 Version 8.0 MapInfo Pro v2019
  • 20. SQL Window List of statements from the current session, with history. A change results in a new script Statement preview Favorite, Rename, Reload from File & Save Mixture of Select, Delete, Update and Insert statement. And the new Script type, too. Create New Statement MapInfo Pro v2019
  • 21. Statement List • Favorites & from MapBasic script folder • Statements from current session • Preview statement in Tool Tip • A new instance is created when edited • Save, Rename, Reload & Delete • Mark as Favorite • Load from file • Create new statement MapInfo Pro v2019
  • 22. Recent Items • Holds the most recently used items • Click to insert into script area • Right-click a text in the script area to add to the Recent Items MapInfo Pro v2019
  • 23. Lists for Tables, Columns and Joins 23 • Context aware • Searchable MapInfo Pro v2019
  • 24. Lists for Operators, Aggregates & Functions MapInfo Pro v2019
  • 25. Values from Columns • Get values from columns via dropdown • Or via Intellisense MapInfo Pro v2019
  • 26. Variables • Create and use variables to get input from the user when running the script/query • Support multiple input types; single values, lists, files, tables, columns, layer, color, styles and more MapInfo Pro v2019
  • 27. Statement Area • Syntax highlighting • Intellisense (use Ctrl+Space) • Right-click to: • Add to Recent Items • Format Text • Clear Contents • and more • MapBasic window now also supports syntax highlighting and intellisense MapInfo Pro v2019
  • 28. Output Area • Syntax Check or Time Spent/Records found • Browse • Add to Map • Styling • No Override • Rotate Automatic Colors • Fixed Color • Find Selection • Preferences controls whether it zooms to or just pans to MapInfo Pro v2019
  • 29. SQL Dropdown Multiple SQL tools, new and old Help building spatial joins Close all Query Tables Favorites: Run or edit in SQL Window Recent: Run or edit in SQL Window MapInfo Pro v2019
  • 30. MapBasic Scripts • The SQL Window supports multiple statements/small MapBasic scripts • Save as Favorite and Run from the SQL Dropdown 30 MapInfo Pro v2019
  • 31. Virtual Spatial Object • You can now show the calculated spatial objects in a map • Use the Object keyword if a query returns multiple spatial objects 31 MapInfo Pro v2019
  • 32. MapBasic Defines • You can now use MapBasic defines instead of the numeric codes in your queries • It makes them easier to read. • Here we are getting the name of the table the selection is based on 32 MapInfo Pro v2019
  • 33. Cross Joins and Temporary Tables • Join tables where objects don't touch • Use temporary tables/queries in joins • Use multiple queries via the SQL Window 33 MapInfo Pro v2019
  • 34. Update using the SQL Window • Supports updating objects • Supports where expression 34 MapInfo Pro v2019
  • 35. Select by Location • Build spatial joins via easy to use dialog • Support all spatial operators and Within a distance • Resulting query can afterwards be loaded into the SQL Window 35 MapInfo Pro v2019
  • 37. Layout Improvements • Support for Line Styles • Support for Region Styles • Vectorized Legends: More crisp Legends • Improved performance when loading workspaces with layouts • Improved performance when zooming/panning in layouts MapInfo Pro v2019
  • 41. Heat Map • User friendly Heat Map tool in MapInfo Pro 41 MapInfo Pro v2019
  • 43. LiDAR Tools • Import LiDAR files (.LAS/.LAZ) directly into MapInfo Pro, and extract specific surface types into raster grids
  • 44. Canopy Analysis • Analysis Canopy Height, Density and Coverage (MapInfo Pro Advanced) • Easy to use tool: • Select input LiDAR files, LAS or LAZ • Select Tree Canopy method • Select Ground Classes • Select Vegetation Classes • Process
  • 45. MapInfo Marketplace • Browse • Search • Download • Deploy • Notifications on Updates • Get Updates MapInfo Pro v2019
  • 46. Support for Python • MapInfo Pro comes with Python 3.7 and a number of the most common Python libraries such as GDAL, Pandas, SciPy, and more • You can use Python in multiple ways in MapInfo • Write and execute Python scripts via the Python console • Write and execute Python scripts via the SQL window • Load and execute Python files (.py) as add-ins • Python gives you access to looping and branching via scripts in the Python console and the SQL window which can't be done with MapBasic scripts • With Python you get access to an object model for tables, maps, layers, and thematic maps
  • 47. Disclaimer: The following roadmaps outline Precisely’s general product direction. This is intended for informational purposes only and may not be used to form the basis for any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The specific features, functionality and release timing of any new products or new versions of current products remain at the sole discretion of Precisely. This presentation contains Precisely confidential statements. Final implementation and delivery dates are subject to change without prior notice. 47
  • 48. Precisely MapInfo Pro Roadmap Themes New development for MapInfo Pro currently falls under one of four major themes: • Ease of use – One of MapInfo’s major attributes is its ease of use. We develop our software in a way that takes complex geospatial data access, management, analysis, and visualization and delivers it via an intuitive set of features and functionality. We continue to expand the technical capabilities of the product while remaining committed to delivering a positive user experience. • Integration and automation – While MapInfo Pro is a complete GIS software solution, it is also a valuable component of a larger, enterprise Location Intelligence solution. Development is focused in areas where we can integrate with other technologies, both within and outside of our own portfolio, to increase productivity, simplify the transfer of location-based information, and automate spatial processes. • Advanced raster development – We continue to develop our raster access, management, analysis, and visualization capabilities via MapInfo Pro Advanced and the Raster SDK. This includes continued development on Multi-Resolution Raster (MRR), its integration into precisely products, and adoption by the industry. • Strategic partnerships and customer requests – We have a large community of users and wide network of partners globally. We strive to communicate regularly with our users and take feedback on the product very seriously. We work to develop functionality directly with partners in strategic areas and fix bugs or other customer requests that are suggested through the Precisely ideas portal.
  • 49. MapInfo Pro v.2021 Potential Candidates Ease of use • Time series creation for vector and raster datasets • Offline MapInfo Pro Viewer • User Interface around Smart Text • Select by Attribute Tool • Filter Improvements • SQL Functionality • Close unnamed Queries • Make WMS Layer not selectable Integration and automation • FME 2021 update – 3rd party library • Python improvements based on feedback 5
  • 50. MapInfo Pro v.2021 Potential Candidates Advanced Raster Development • Time series creation for vector and raster datasets • Tile server table reprojection • Virtual Raster Expansion - UI • Expanded LiDAR support - • MRR integration with Spectrum Platform (Linux) Strategic partnerships and customer requests • Import/Export GDAL - WKT/CSV/TXT/GeoJSON import/Export • Scalable Vector Graphic Support - SVG - Symbology • MapInfo Marketplace internal administration console 5