Wikipedia:Reference desk/Archives/Mathematics/2019 November 7

Mathematics desk
< November 6 << Oct | November | Dec >> November 8 >
Welcome to the Wikipedia Mathematics Reference Desk Archives
The page you are currently viewing is a transcluded archive page. While you can leave answers for any questions shown below, please ask new questions on one of the current reference desk pages.


November 7

edit

Software for plotting custom map projections

edit

I have defined a projection by simple functions relating latitude and longitude to x and y coordinates. I would like to try this out as a proof of concept, and presume that software exists that can do this, but what? I do not need especially high quality imagery, just enough to test the viability of the projection.--Leon (talk) 11:06, 7 November 2019 (UTC)[reply]

  • One option is to use those functions to define a lookup table, first, say of 15 degree boxes, initially. You can then plot the output points in the table (without landforms) to see if they define a rectangle, if that's your desired output. Once it passes that test, then find a program that accepts a lookup table (you may need to reformat it) as input for Earth mapping. You would also need to define how to interpolate between the points in the table, with the simplest option being a 2 dimensional linear interpolation. The less space between points in the table, the less critical the interpolation method will be. SinisterLefty (talk) 14:06, 7 November 2019 (UTC)[reply]
  • A better option may be to find a library of landforms specified in longitude/latitude pairs, at various resolutions, which you could use as inputs to your functions. You could then create an output table of those landforms, in X-Y coords. It should be far easier to find a program to plot those. For the initial "proof of concept" stage, you wouldn't need to connect the dots. SinisterLefty (talk) 14:23, 7 November 2019 (UTC)[reply]