Tagged Questions

A geographic information system (GIS), geographical information system, or geospatial information system is any system that captures, stores, analyzes, manages, and presents data that are linked to location(s). In the simplest terms, GIS is the merging of cartography, statistical analysis, and database technology.

learn more… | top users | synonyms

30
votes
47answers
3k views

Survey of GIS Programming

How many programmers on this site work with GIS? What middleware do you work with? ESRI? Mapguide? Google? What kind of projects do you work on? Are you focused on web work, making desktop ...
26
votes
4answers
12k views

Fastest distance lookup given latitude/longitude?

I currently have just under a million locations in a mysql database all with longitude and latitude information. With this I use another lat/lng to find the distance of certain places in the database ...
21
votes
6answers
11k views

Get street address at lat/long pair

I've seen that it's possible to get the latitude and longitude (geocoding, like in Google Maps API) from a street address, but is it possible to do the reverse and get the street address when you know ...
20
votes
7answers
6k views

Is there an efficient algorithm to generate a 2D concave hull?

Having a set of (2D) points from a GIS file (a city map), I need to generate the polygon that defines the 'contour' for that map (its boundary). Its input parameters would be the points set and a ...
18
votes
4answers
4k views

NoSQL and spatial data

Has any of you had any experience with using NoSQL (non-relational) databases to store spatial data? Are there any potential benefits (speed, space, ...) of using such databases to hold data for, say, ...
16
votes
3answers
2k views

How to intelligently degrade or smooth GIS data (simplifying polygons)?

I have detailed US county maps, from the TIGER LINE data sets. How might I sample, smooth, or degrade the data so that I get straighter, more boxy, less "noisy" shapes to represent the geographical ...
15
votes
3answers
764 views

Can R be used for GIS?

I'd like to create some GIS plots, and I'm wondering if R can be used for this. Here are some examples of plots I'd similar in concept to those I'd like to make: A temperature plot (or contour ...
15
votes
9answers
4k views

Heightmap generation algorithm?

I was looking around the internet and couldn't find a perfect algorithm for this particular problem: Our customer have a set of points and weight data along with each point as can be demonstrated by ...
15
votes
14answers
4k views

What is the quickest way to find the shortest cartesian distance between two polygons

I have 1 red polygon say and 50 randomly placed blue polygons - they are situated in geographical 2D space. What is the quickest/speediest algorithim to find the the shortest distance between a red ...
14
votes
2answers
564 views

Simplified (or smooth) polygons that contain the original detailed polygon

I have a detailed 2D polygon (representing a geographic area) that is defined by a very large set of vertices. I'm looking for an algorithm that will simplify and smooth the polygon, (reducing the ...
14
votes
8answers
1k views

Algorithm for finding nearby points?

Given a set of several million points with x,y coordinates, what is the algorithm of choice for quickly finding the top 1000 nearest points from a location? "Quickly" here means about 100ms on a home ...
13
votes
2answers
188 views

Calculation of accumulation area

I'm looking for a GIS/Geometric algorithm: I have 1000 points randomly distributed in a large area(such as a city), How can I find out all the small areas which have more than 15 points? Like this ...
13
votes
3answers
270 views

Geographic obstructions in radius searches

I am new here and points poor so I can only offer 50 pt bounty. Suppose I have an application a search for all gas stations within 10 mile radius of a certain location. However one side of this ...
12
votes
9answers
944 views

Where can I find the coordinates needed to draw the US in the Mercator projection?

So I'm writing a Javascript library that takes x,y coordinates and uses them to draw a map of the US. To do this, I need to find the coordinate data necessary to draw each state. This map on ...
12
votes
9answers
9k views

Designing a WPF map control

I'm thinking about making a simple map control in WPF, and am thinking about the design of the basic map interface and am wondering if anyone has some good advice for this. What I'm thinking of is ...
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 ...
11
votes
5answers
6k views

How to convert from UTM to LatLng in python or Javascript

I have a bunch of files with coordinates in UTM form. For each coordinate I have easting, northing and zone. I need to convert this to LatLng for use with Google Map API to show the information in a ...
10
votes
7answers
1k views

Where do you get ArcGIS development questions answered?

Where do you have the most success getting your ArcGIS development questions answered? ESRI forums? Stack Overflow? Google? Mailing lists? Blog posts? ESRI documentation? I can usually get answers ...
10
votes
3answers
1k views

Where can I get postal codes for all countries?

I once read about an open source database for postal codes with geolocation data but now I can't remember its name. Can someone help?
9
votes
3answers
197 views

Convert polygons into mesh

I have a lot of polygons. Ideally, all the polygons must not overlap one other, but they can be located adjacent to one another. But practically, I would have to allow for slight polygon overlap ( ...
9
votes
5answers
2k views

Determine timezone from latitude/longitude without using web services like Geonames.org

is there any possibility to determine the timezone of point (lat/lon) without using webservices? Geonames.org is not stable enough for me to use :( I need this to work in PHP. Thanks
9
votes
5answers
420 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 ...
9
votes
2answers
3k views

GIS: PostGIS/PostgreSQL vs. MySql vs. SQL Server?

EDIT: I have been using Postgres with PostGIS for a few months now, and I am satisfied. I need to analyze a few million geocoded records, each of which will have latitude and longitude. These records ...
9
votes
3answers
725 views

Why is this bearing calculation so inacurate?

Is it even that inaccurate? I re-implented the whole thing with Apfloat arbitrary precision and it made no difference which I should have known to start with!! public static double bearing(LatLng ...
9
votes
3answers
8k views

Android - Get Altitude By Longitude and Latitude?

Do you know some quick and sufficient way to get altitude (elevation) by longitude and latitude, that would be easy to use on Android platform? While this is a self-learning question, my approach is ...
9
votes
5answers
5k views

Calculating area enclosed by arbitrary polygon on Earth's surface

Say I have an arbitrary set of latitude and longitude pairs representing points on some simple, closed curve. In Cartesian space I could easily calculate the area enclosed by such a curve using ...
9
votes
9answers
4k views

Map Routing, a la Google Maps?

I've always been intrigued by Map Routing, but I've never found any good introductory (or even advanced!) level writeups talking about it. Does anybody have any pointers, hints, etc? update: I'm ...
8
votes
2answers
381 views

Find all coordinates within a circle in geographic data in python

I've got millions of geographic points. For each one of these, I want to find all "neighboring points," i.e., all other points within some radius, say a few hundred meters. There is a naive O(N^2) ...
8
votes
4answers
16k views

What is the difference between Multiple R-squared and Adjusted R-squared in a single-variate least squares regression?

Could someone explain to the statistically naive what the difference between Multiple R-squared and Adjusted R-squared is? I am doing a single-variate regression analysis as follows: v.lm <- ...
8
votes
3answers
8k views

Good examples of MapServer / OpenLayers

I want to convince some clients to use MapServer and OpenLayers. Please can anyone suggest attractive websites to show off the possiblities! The clients will be impressed by: A density map ...
8
votes
4answers
4k views

convert a shapefile (.shp) to xml/json

i'm working with a shapefile (.shp, .dbf, etc) and would like to convert it to xml. i'm on a mac, and am having trouble finding an application that will help me with the conversion. does anyone know ...
8
votes
6answers
341 views

Do you know any free satellite imagery for GIS?

do you know any imagery that i can get satellite images of places for free?? i thought people who is related to GIS would know it? i searched but i could not find.. i have a terrain editor which ...
8
votes
6answers
576 views

Is there a GIS “Hello World” Equivalent?

Is there the equivalent of the "Hello World" program for GIS applications? I am looking to become more familiar with the development of GIS applications. What are the popular (and free/low cost) ...
8
votes
8answers
2k views

Determining if a lat-long rect and a circle on a sphere overlap

Suppose I have the following: A region defined by minimum and maximum latitude and longitude (commonly a 'lat-long rect', though it's not actually rectangular except in certain projections). A ...
8
votes
3answers
6k views

C# WPF resolution independancy?

I am developing a map control in WPF with C#. I am using a canvas control e.g. 400 x 200 which is assigned a map area of e.g. 2,000m x 1,000m. The scale of the map would be: canvas_size_in_meters / ...
8
votes
6answers
4k views

How do I find the center of a number of geographic points?

If I have a series of points as longitude and latitude, how would I calculate the center of all of those points?
8
votes
3answers
6k views

What's the easiest way to convert latitude and longitude to double values

I've got a CSV file containing latitude and longitude values, such as: "25°36'55.57""E","45°39'12.52""N" Anyone have a quick and simple piece of C# code to convert this to double values? Thanks ...
8
votes
6answers
994 views

Similarity between line strings

I have a number of tracks recorded by a GPS, which more formally can be described as a number of line strings. Now, some of the recorded tracks might be recordings of the same route, but because of ...
7
votes
1answer
213 views

Any R-Tree implementation in F# (or C#)? [closed]

Possible Duplicate: Is there any documented free R-Tree implementation for .NET? Are there any R-Tree implementations in F#? Assumptions are: no need for insertion or deletion, fixed set ...
7
votes
1answer
280 views

Open Source/existing C# class to write GPX files? (C#)

I am looking for a C# library or class to help write GPX files from a collection of waypoints I have (lat/long, etc). I have found quite a few readers - but not so much for writing. Bonus points if ...
7
votes
3answers
983 views

Find point which sum of distances to set of other points is minimal

I have one set (X) of points (not very big let's say 1-20 points) and the second (Y), much larger set of points. I need to choose some point from Y which sum of distances to all points from X is ...
7
votes
7answers
2k views

Calculate distance between Zip Codes… AND users

This is more of a challenge question than something I urgently need, so don't spend all day on it guys. I built a dating site (long gone) back in 2000 or so, and one of the challenges was calculating ...
7
votes
4answers
248 views

Geographical ontologies ready to use?

I'm looking for an ontology containing geographical knowledge. In particular I'd like to have these types of information: political states / regions / cities / city areas geographical regions (e.g. ...
7
votes
2answers
1k views

SQL Server Geography datatype nearest point on line

I am trying to build a query, but I am having some difficulty. I have a SQL Server 2008 database with a table that includes, among other fields, a geography field that describes road segments. (This ...
7
votes
4answers
5k views

How do you know what SRID to use for a shp file?

I am trying to put a SHP file into my PostGIS database, the the data is just a little off. I think this is because I am using the wrong SRID. The contents of the PRJ file are as follows: ...
7
votes
4answers
2k views

How to look up elevation data by lat/lng

I am planning an app that will need the ability to look up the elevation of geographic points by lat/lng. Ideally I would like something that would work worldwide, but US-only would also suffice. I ...
7
votes
4answers
2k views

Guidelines for GIS application development

i need some help! I'm supposed to create a GIS application for my MSc, and I was wondering what are the best free and (preferably) open source technologies for development. What programming language ...
7
votes
9answers
3k views

Java equivalent of OpenLayers

I am looking for a Java library to display map data from various sources, including shapefile, WMS, WFS, Google Maps, possibly ArcIMS, etc. It seems like OpenLayers is the closest thing to what I ...
7
votes
2answers
952 views

Does PostgreSQL implement Geospatial relationship queries?

My company is looking at different database providers, and how they implement Geospatial queries to get distances from a Lat/Long for a number of records. We are going to investigate PostgreSQL as a ...
6
votes
3answers
532 views

Python GeoModel alternative

I'm looking for an alternative library for the app engine datastore that will do nearest-n or boxed geo-queries, currently i'm using GeoModel 0.2 and it runs quite slow ( > 1.5s in some cases). Does ...

1 2 3 4 5 15