SUMMARY The new map of Norway (and corresponding counties) in the geo-country activity looks completely wrong, like it’s being shown with the wrong projection. It’s terribly horizontally stretched and does not look the way Norway does in real life! A suitable projection for Norway would be UTM 33N (https://epsg.io/32633), which was used for the old map. STEPS TO REPRODUCE 1. Start the geo-country activity 2. Go to level 13 OBSERVED RESULT Map of Norway is terribly stretched. EXPECTED RESULT The map should use the UTM 33N projection and should look approx. the way Norway does on a globe.
The new maps have been drawn using EPSG:4326 (WGS 84, https://en.wikipedia.org/wiki/World_Geodetic_System), which is the default format given by osm-boundaries.com, in pure latitude/longitude coordinates. It is not "wrong", but you probably expected to have it in EPSG:3857 (Web Mercator Projection). I think I'll keep this format for continents-maps, but for countries maps I can probably redo them by converting the data to EPSG:3857. osm-boundaries.com has an option to download in this format, but it seems to not work for all the countries... I've found another library that allows to do the conversion (https://github.com/perliedman/reproject). The little problem is that in this format the svg output from geojson-to-svg is insanely huge and needs a bit more editing to make it usable, but it should be doable.
(In reply to animtim from comment #1) > The new maps have been drawn using EPSG:4326 (WGS 84, > https://en.wikipedia.org/wiki/World_Geodetic_System), which is the default > format given by osm-boundaries.com, in pure latitude/longitude coordinates. > It is not "wrong", but you probably expected to have it in EPSG:3857 (Web > Mercator Projection). It is not ‘wrong’ in that is a mathematical description of the country, but it is wrong in that the result looks nothing like the country it is supposed to look like, i.e. both areas, angles and distances are completely distorted. No, I don’t expect it to be shown in the EPSG 3857 (Web Mercator). The global (Web) Mercator projection has nothing going for it except mathematical simplicity (which isn’t relevant for a precomputed map), and is wholly unsuitable for displaying Norway. As I originally wrote, a suitable projection would EPSG 32633 (UTM 33N), which is commonly used for Norway. (There also exists an oblique Mercator specifically tailored for Norway, but the difference from UTM 33N is slight.) For other countries and continents, other projections are suitable. E.g., for the European continent, EPSG 3034 can be used (https://epsg.io/3034) (EPSG 3035 is also suitable). For the USA, EPSG 102003 or 102004 can be used. > I think I'll keep this format for continents-maps, but for countries maps I > can probably redo them by converting the data to EPSG:3857. > osm-boundaries.com has an option to download in this format, but it seems to > not work for all the countries... I've found another library that allows to > do the conversion (https://github.com/perliedman/reproject). > The little > problem is that in this format the svg output from geojson-to-svg is > insanely huge and needs a bit more editing to make it usable, but it should > be doable. ogr2ogr should be able to do it (for geojson files) without any problems. I’m not familar with the reproject tool. A reproject file shouldn’t take up any more space than the original unless that tool adds intermediate points (which usually shouldn’t be necessary). Is that perhaps what is done?
BTW, I have some experience in reprojecting and converting geographic data, so I can help if needed.
When I said "the svg output from geojson-to-svg is insanely huge", I didn't mean in file size but in svg coordinates (actually the file size is also a bit bigger as the coordinates values are quite longer, but that's not what I meant). Anyway I've found how to deal with it, it's a matter of a few more manipulations in inkscape, so that's not a big issue. I went for EPSG:3857 as it's the one used by virtually all online map providers, and as it's easier to use the same for all the countries. But as you mentioned some specific ones can be better depending on the countries, I'll update it again with EPSG:32633 for Norway, and look for the best ones to use for each country. Thank you for the explanations and the hints!
(In reply to animtim from comment #4) > When I said "the svg output from geojson-to-svg is insanely huge", I didn't > mean in file size but in svg coordinates (actually the file size is also a > bit bigger as the coordinates values are quite longer, but that's not what I > meant). Hmm, do you mean the *number* of coordinates or their precision (e.g. 1.42798673123 instead of 1.43)? > I went for EPSG:3857 as it's the one used by virtually all online map > providers, and as it's easier to use the same for all the countries. But as > you mentioned some specific ones can be better depending on the countries, > I'll update it again with EPSG:32633 for Norway, and look for the best ones > to use for each country. Thank you for the explanations and the hints! Thanks for using EPSG 32633 for Norway. :) A simple formula that works well for all countries that are not *too wide*, is to use the UTM zone corresponding to the middle of the longitudinal bounding box. The UTM zone can be calculated using this formula: ceiling((180 + longitude) / 6). For example, the middle of France has a longitude of about 2 (Paris is at longitude ~2.35). So an appropriate UTM zone would be ceiling((180 + 2) / 6 ) = 31, e.g., EPSG 32631 (just add 32600 to get the EPSG code). That should give an adequate result. (Though EPSG 2154 is more commonly used for France.) This will work OK for most European countries (but not Russia, with spans *many* UTM zones, and not other wide areas, like the USA). BTW, I think even using the European EPSG 3034 for *all* European countries (except Russia) wouldn’t be *too* bad.
(In reply to animtim from comment #4) > I went for EPSG:3857 as it's the one used by virtually all online map > providers, and as it's easier to use the same for all the countries. BTW, EPSG:3857 (‘Web Mercator’ – a Mercator projection that pretends that the Earth is a sphere instead of an ellipsoid) is used for online maps because it is easy to use for *global maps* that are *based on tiles*. It’s not used because it’s a good representation of the way the Earth actually looks. For example, in EPSG:3857 Greenland looks to be about the same size as Africa. In reality, Africa has an area that is about 14 times (!) that of Greenland. That said EPSG:3857 doesn’t look *too* bad when used for ‘local’ (large scale) maps, especially for countries that are not too tall and not too far from the equator. Also, BTW, EPSG:3857 is not used for the global map in GCompris. A much more sensible projection is used there.
(In reply to Karl Ove Hufthammer from comment #5) > Hmm, do you mean the *number* of coordinates or their precision (e.g. > 1.42798673123 instead of 1.43)? I meant, for example a coordinate in EPSG:4326 that is [9.3748734,58.7674797], once converted to EPSG:3857 projection, becomes [1043606.1331394053,8130299.147556993], or in EPSG:32633 it becomes [174889.36968223867,6527824.354682916] ... Thanks again for the tips. I'll go for the UTM formula for small countries. For bigger countries I'll need to dig on case per case. I'm especially curious about which one to use for India for example, or China, or Brazil... If you have some more tips, please post them here so I can keep them for future reference, even if the bug is closed. Fixed for Norway in commit https://invent.kde.org/education/gcompris/-/commit/99eecbb649208bfb2363e86e88d594e000ad9323 I'll do the same for other maps in geo-countries in the coming days.
For India, I think the UTM formula would work OK (it’s about as wide as Norway, AFAICS). But a better projection would be EPSG 7755. It’s defined as: +proj=lcc +lat_0=24 +lon_0=80 +lat_1=12.472955 +lat_2=35.1728044444444 +x_0=4000000 +y_0=4000000 +datum=WGS84 +units=m +no_defs Here LCC means that it’s an Lambert Conformal Conic projection. And it’s centered at latitude 24 and longitude 80 (approx in the middle of India), with parallels at latitudes 12.5 and 35.2 (so it works well for the area between these parallels).
(In reply to animtim from comment #7) > (In reply to Karl Ove Hufthammer from comment #5) > > Hmm, do you mean the *number* of coordinates or their precision (e.g. > > 1.42798673123 instead of 1.43)? > > I meant, for example a coordinate in EPSG:4326 that is > [9.3748734,58.7674797], once converted to EPSG:3857 projection, becomes > [1043606.1331394053,8130299.147556993], or in EPSG:32633 it becomes > [174889.36968223867,6527824.354682916] ... OK, I see. You can configure Inkscape to limit the number of decimals in the output (or use an external SVG minifier/optimizer). In theory, the coordinate units are arbitrary, but I think *most* projections use meters as their unit. That’s why you get so large numbers (to the *left* of the decimal point). So 1043606.1331394053 corresponds to about 1044 kilometers from some origin.
BTW, I found out that it’s possible to change the units from meters to km. And it’s also possible to reduce the number of decimals. Example with UTM 33, km units and two decimals (though 0 is probably enough): ogr2ogr -lco SIGNIFICANT_FIGURES=2 -t_srs "+proj=utm +zone=33 +datum=WGS84 +units=km +no_defs" output.geojson test.geojson
I have now tested the new Norwegian map, and it looks nice. Thanks! BTW, out of curiosity, how much of the map/level generation is automated? And how are the colours for the various counties/regions determined?
(In reply to Karl Ove Hufthammer from comment #10) > BTW, I found out that it’s possible to change the units from meters to km. > And it’s also possible to reduce the number of decimals. Example with UTM > 33, km units and two decimals (though 0 is probably enough): > > ogr2ogr -lco SIGNIFICANT_FIGURES=2 -t_srs "+proj=utm +zone=33 +datum=WGS84 > +units=km +no_defs" output.geojson test.geojson Thanks for the info! Though I think I'll stick with reproject now that I've a working workflow with it; the "extra-size" in the end is not really a problem as in any case I have to manually resize the document and the content following some rules... (In reply to Karl Ove Hufthammer from comment #11) > I have now tested the new Norwegian map, and it looks nice. Thanks! > > BTW, out of curiosity, how much of the map/level generation is automated? > And how are the colours for the various counties/regions determined? Happy that you like the result :D The a big part is automated, but there's still a big part that has to be done manually. I wrote some instructions detailing the workflow I use here, you can check if you want to get an idea of what's automated and what has to be done manually: https://invent.kde.org/education/gcompris/-/blob/master/src/activities/geo-country/MapSources/sources You'll also find the answer about the colors choice (TLDR: I always start from a specific orange color, and do hue variations and a bit of lightness variations too when needed, all visually/manually trying to make sure each region can be distinguished from surrounding ones).
For the UK, including Scotland, EPSG 27700 can be used: https://epsg.io/27700
And for Italy, EPSG:7794 can be used: http://epsg.io/7794 It has this proj4 string: +proj=tmerc +lat_0=0 +lon_0=12 +k=0.9985 +x_0=7000000 +y_0=0 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs This is a tranverse Mercator projection, similar to UTM. Italy really spans two UTM zones, 32N (6E–12E) and 33N (12E–18E). The above projection instead centers the projection at the middle of these zones (+lon_0=12). And it also uses a slightly smaller scale factor (+k=0.9985 instead of 0.9996, used for UTM, I guess because it’s mean to cover twice as wide an area).