Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Mapping data using MapInfo

Hello

I'm completely new to this, so bear with me.

I work for a local authority and since starting have kicked-up a fuss over the lack of corporate GIS capability. I have since been asked to look into the possibility of using a tool to provide phased mapping to showing progress on various construction sites, preferably using systems that we already use.

The appeal of using Qlikview is it's data handling ability. Unfortunately when one of our IT guys combined this with our GIS platform (MapInfo) the results were less than impressive. By this I mean that the polygons describing the outline of sites were both not as detailed, and didn't transfer accurately, resulting in a poor quality impression in the wrong place.

I'm aware that Qlikview isn't a GIS platform, however if anyone can offer any wisdom as to how one might go about improving the quality and accuracy of the mapping, in lay terms, I would be very grateful.

Thanks,

John

1 Reply
avinashelite

Hi

we do have couple way for the data mapping but it all depends on the data and requirement.

E.g. if you have ID and value info in one table or file  and if you want to map it for other tables you can try like this

Mapping_table:

Mapping LOAD * inline

[

ID,Value

1,100

2,200

];

Actual_Table:

LOAD applymap('Mapping_table',ID) as Values,

ID,

.......

from table;