I try to display data on a real map (data should be within Ontario, Canada): I have .csv file with two columns, A and B, A is a postal code, B is its associated value (integer, 1 to 5), I want to find the area that A maps to and color it based on the associated value. For example. postal code P0G, P0A (the first 3 digits of Canadian postal code, which represents an area) with associated values 2 and 5, I want to display different colors (maybe 2 with green and 5 with red) on these two areas on a real map.
I don't know how tbh, maybe using Python or some website service or some API? I don't have experience with visualizing data on real map before.
The question I described above is a simplified version. The actual question has more columns (domains), one postal code for each row, I need to have |domains|
number of graphs/maps being generated for each domain. But I figured once I know how to do one domain, then I should be able to do all.
I tried to use some online analytical tool like SimplyAnalytics but didn't figure out how to display many areas with different colors at the same time. I tried to search similar questions but it seems because of different end goals and format of data, so the change of code/method may vary vastly.
Thanks!!!
Some sample data will be:
M5H
, I have more specific 6-digit code like` ['M5H3G8', 'M5H2N2', 'M5H2G4', 'M5H3Y2']` with corresponding values[3, 2, 4, 1]
, how can I produce a similar map with more specific postal code? – Diocese