Tagged Questions
0
votes
1answer
29 views
How to plot contours on a map with ggplot2 when data is on an irregular grid?
Sorry for the wall of text, but I explain the question, include the data, and provide some code :)
QUESTION:
I have some climate data that I want to plot using R. I am working with data that is on ...
0
votes
0answers
28 views
Does MongoDB support GIS geofencing with $geoWithin?
I would like to have a MongoDB collection and each document contains a geospatial polygon defined by latitude/longitude points (in GeoJSON). Then, I would like to take any given longitude/latitude ...
1
vote
1answer
120 views
Idea or tool for distribution of power force (people) geographically [closed]
I have a lot of places with coordinates, I have people that maintain those places when something goes wrong.
I'm looking for a way to place the field people so they be the closest possible to the ...
0
votes
1answer
264 views
Inconsistent Results from Bing Maps Geocoder
I wrote an application that parses a CSV file, extracts addresses and geocodes them using the Bing Maps REST API. The problem I am having is that if I run the same file multiple times, I get ...
1
vote
1answer
63 views
How do I combine perform a Solr OR query between a spacial search and a regular query?
The Solr SpatialSearch documention hints that you can combine a spatial function such as geodist() with a regular query, but I've been unable to determine the correct syntax to do so.
Specifically ...
0
votes
3answers
206 views
Setting single coordinates for RGeo Point
RGeo provides built in methods for POINT features, for example getter methods lat() and lon() to pull latitude and longitude values from a POINT object. Unfortunately, these don't work as setters. For ...
1
vote
1answer
187 views
Automatically center matplotlib basemap onto data
I would like a solution to automatically center a basemap plot on my coordinate data.
I've got things to automatically center, but the resulting area is much larger than the area actually used by my ...
2
votes
2answers
793 views
How to get the bounding coordinates for a US postal(zip) code?
Is there a service/API that will take a postal/zip code and return the bounding(perimeter) coordinates so I can build a Geometry object in a MS SQL database?
By bounding coordinates, I mean I would ...
0
votes
1answer
244 views
How to find nearest Geo location in the postcode table of SQL Server 2008 R2
I am getting location update from windows phone 7.5 into my sql server 2008 R2 database. The mobile is in the car and working as a tracing device also.
for example: this location (Latitude: ...
1
vote
2answers
148 views
lat lng of a point , knowing x distance and y degrees of a given point
I work on a C# project where i have a point of a given lattitude and longitude.
I need to find the lattitude and longitude of a second point that is x degrees angled and y meteres away from the given ...
1
vote
1answer
595 views
Free geo data class library in C++ (Lat / Lng / distance / conversions)
I am looking for a free geo data class library. I need to convert different formats of Latitude / Longitude values (e.g as here), get distances between lat/lng values, coordinates in range, etc.
...
2
votes
1answer
801 views
What's the tile format used by leaflet?
I'm planning a website which will use huge schematics, that is, raster images that are not photos. If they were photos and I were interested on displaying them as so, I would use either zoomify, ...
4
votes
1answer
241 views
How to get latitude and longitute for a pixel of a eumetsat image using python?
I have a 3712x3712 pixel sized image of a geostationary eumetsat satellite. There is some black around the earth, such that the image looks like this:
For each pixel of the earth, I'd like to get ...
0
votes
0answers
54 views
What map can i use to put into an access database?
I am creating my first database and have never tried using geocoding or spatial data before. My theory was that i could show a map on the database in a webbrowser control and display various ...
0
votes
0answers
26 views
How does one aggregate many geographic sites, to reduce detail?
I need to present markers for an unknown number of geographic sites on a map. Because the number of sites may be huge, I need to aggregate many entries into a number that's manageable for memory and ...
4
votes
2answers
151 views
How can I use Geo::Coder::US and Geo::TigerLine to convert U.S. street addresses to geospatial coordinates?
I'm working from Geo::Coder::US and Geo::Coder::US::Import. They say I need to import the database, their examples do not show how to do it, at least for a way that works now. Geo::Coder::US wants to ...
2
votes
2answers
592 views
Should I use SqlGeometry or SqlGeography?
We're in a bit of internal conflict on this issue, and can't seem to come to a happy conclusion.
We'll only be storing latitudes and longitudes, and possibly simple polygons. All we need it for is ...
0
votes
1answer
26 views
Position noise sources on blank map?
I am going to describe the experiment. I have a big field, huge field. In that field there are trees, bushes and multiple speakers (5). Those speakers don't move and emit a unique sound.
I also have ...
1
vote
0answers
389 views
How to lookup nearest location (Latitude / Longitude) in a join query
I have a table with a list of users, which looks something like;
Users.. ( id, username, lat, long )
I have a location table which looks like this:
Locations.. ( id, name, lat, lng, ...
2
votes
1answer
699 views
MongoDB GeoSpatial Querying without embedded latitude longitude fields
I have a very large database (~ 6 million rows) which was imported from a csv file.
I was looking at MongoDB and their documentation on GeoSpatial indexing. You need the latitude and longitude fields ...
3
votes
3answers
169 views
Minimalistic geospatial searching solution for Python
I am looking for a minimalistic solution for doing basic geospatial search in Python.
We have a dataset of roughly 10 k locations and we need to solve the find the all locations within a radius of N ...
4
votes
5answers
625 views
Themathic map/choropleth map of the Netherlands
I have a bunch of data on Dutch individuals that I would like to visualize with a choropleth map. I also have the location of the individuals (longitude and latitude), so I was hoping that it would be ...
1
vote
2answers
2k views
matching GIS points with polygons in ESRI shape file
I have an ESRI shape file containing a library of about 150 contiguous geographic areas (polygons) that together comprise a geographic region. I also have a csv file containing 60,000 events which ...
0
votes
2answers
111 views
Determine census tract of US address
I have a list of about 20k addresses in the US, and I would like to determine each one's census tract. I found a tool online that does this here, but making 20,000 requests and screenscraping the ...
3
votes
4answers
2k views
Check if a geopoint with latitude and longitude is within a shapefile
Whats the way to check if a geopoint is within the area of a given shapefile? I maneged to load a shapefile in python, but can't get any further.
2
votes
2answers
2k views
MongoDB geospatial index in C#
I have been trying to get started but run into the same rock time after time trying to create and query MongoDB with C# official driver. The problem is how to create data with geo information. I am ...
1
vote
3answers
882 views
Finding Lat/Long using polygon or circle as search
I'm out of my element here so please forgive me if I dont ask this correctly/clearly.
I have a table of users with lat/long for each one.
I get a query from a federal agency that provides either a ...
1
vote
1answer
180 views
Geo-Coding to Region and Provider
I'm working on a product which heavily relies on Geo-Data to map locations of 'places' matching a certain criteria.
Right now when a user add's a 'place' to our inventory, using google's geo-data ...
8
votes
3answers
8k views
Given the lat/long coordinates, how can we find out the city/country?
For example if we have these set of coordinates
"latitude": 48.858844300000001,
"longitude": 2.2943506,
How can we find out the city/country?
6
votes
5answers
667 views
Learn GIS with Python
I've been wanting to learn GIS, I already know lots of python, so I've been looking for online free sources to learn GIS.
Anyone one out there knows any good information to start with? tutorials? ...
4
votes
5answers
4k views
Finding latitude and longitude of many places once
I have a long list of towns and cities, and I'd like to add latitude and longitude information to each of them.
Does anyone know the easiest way to generate this information once?
See also Geocode ...
1
vote
1answer
461 views
Need to turn query into lat and lon using Bing API, works for some, but not all
General geocoding is not problem. I can put in a city or stae or what ever specific location and usually geocode correctly using Bing. What I cant do is geocode things like intersections or fuzzy ...
1
vote
1answer
999 views
Use MySQL spatial ability or lat-long lookups for Rails 3 “Store Locator” functionality?
I have a Rails 3 application and I have a couple of use cases to support.
Store Locator given an address or zip code.
Graphical display of where users are originating from.
On the first one, I ...
0
votes
1answer
570 views
How do I supply a British National Grid reference as WKT to GeoDjango?
I'm trying to insert some National Grid references into a Django PointField defined as follows:
oscode = models.PointField(srid=27700, null=True, blank=True)
However, I don't know how to format ...
1
vote
1answer
178 views
Work flow for georeferencing imagery using open source tools?
Does anyone have a recommendation for a work flow for georeferencing high resolution aerial photography using open source tools? I have GPS coordinates for control points and would need to associate ...
2
votes
1answer
653 views
Geographic grid search algorithm
Many of the location based services provide APIs for finding places/venues/spots around a given latitude longitude pair. I'm looking into how I can search for these places across an entire city.
I ...
2
votes
4answers
675 views
Given a latitude and longitude, find users interested in that position
Given a table,
+-----+---------+---------+---------+---------+---------+
| user| min_lat | max_lat | min_lng | max_lng |
+-----+---------+---------+---------+---------+---------+
| a | 46 | ...
2
votes
1answer
479 views
Geocoding - Grouping multiple addresses into major cities
Been hunting through previous questions on Geocoding and while many are helpful I'm not finding one to my needs.
I need to group multiple addresses to the nearest city centers. My only address ...
1
vote
5answers
187 views
Looking for Ideas: How would you start to write a geo-coder?
Because the open source geo-coders cannot begin to compare to Google's or even Yahoo's, I would like to start a project to create a good open source geo-coder. Just to clarify, a geo-coder takes some ...
0
votes
1answer
356 views
Geographical data encoding (standard codes for countries/regions/cities)
is there a standard way to encode the user location (country, state/region, town), so that I can ask the user to select these items upon registration and then use this data to show his location on the ...

