Tagged Questions
The cartography tag has no wiki summary.
11
votes
4answers
1k views
Good books on cartography/GIS programming? [closed]
I'm looking for some recommendations on good books that cover cartography and GIS from a programming perspective. I'm not talking about books that concentrate on some concrete GIS technology or GIS ...
9
votes
5answers
421 views
Quickly find and render terrain above a given elevation
Given an elevation map consisting of lat/lon/elevation pairs, what is the fastest way to find all points above a given elevation level (or better yet, just the the 2D concave hull)?
I'm working on a ...
5
votes
4answers
2k views
How do I plot latitude/longitude coordinates on the screen?
I am trying to figure out how to plot WGS84 latitude/longitude points on a bitmap but cannot figure out the math required to turn lat/lon points into coordinates that would be plottable. Could anyone ...
5
votes
2answers
1k views
Suggestions on manipulating an SVG map
I'm working on a map of the native languages of California for Wikipedia. The map contains areas that each correspond to a language. The original looks like this (click it to see the SVG):
I want ...
3
votes
1answer
233 views
Drawing cartograms with Matplotlib?
In case somebody doesn't know: A cartogram is a type of map where some country/region-dependent numeric property scales the respective regions so that that property's density is (close to) constant. ...
2
votes
2answers
162 views
What earth radius should I use to calculate distances near the Poles?
I'm monitoring a GPS unit which is on it's way from Cape Discovery in Canada, to the North Pole. I need to keep track of the distance travelled and distance remaining each day, so I'm using the ...
2
votes
1answer
92 views
Data model for meridians and parallels
I'm thinking about some suitable model for storing meridians and parallles. Meridians and parallels should be kept as lines.
Possible models:
A) "Topologic" model
Each point stores pointer to north, ...
1
vote
2answers
95 views
Tool for the cartography of a complex information system
I am looking for a Visio-like tool that would help me draw my information system at the component level.
The design will not fit on a single piece of paper and I would like a web tool with a sort of ...
0
votes
0answers
47 views
How to create geographical maps for routing
While learning about routing and other related stuff, as a learning activity I wanted to take up the task of creating all the requisite things and data required for routing myself.
For a beginning, I ...
0
votes
1answer
63 views
Create new geographical map data or use modified maps
I am working on an iphone application that requires routing within a limited area such as parks, historical places, popular markets or remote areas in the country.
Given that google maps, ...
0
votes
0answers
16 views
Where can I find a picture of earth on which I can overlay points?
Are there any free map pictures I can use for geographical visualizations? I'm looking for something of reasonable quality I can map lat/lon points to pixels on and play around with visualization ...
0
votes
1answer
132 views
Cartography and road maps in java
Hi all
i'm developing an application must show a list of customers, resellers and other types of data an ao geographic map (from satellites) or on a road map for an university's exam.
With this ...
0
votes
3answers
2k views
java transform projection EPSG:900913 to EPSG:4326
in the openlayers
we can simple transform EPSG:900913 to EPSG:4326
I'm look for a java lib can do that.
here I found this,
http://www.jhlabs.com/java/maps/proj/index.html
but the document is in c++
...