1
vote
4answers
40 views
Equivalent of the php fmod in C#
Does anybody know what the C# equivalent of fmod is? I'm trying to convert this line of code to C#.
$lon_rad = fmod(($long1+$dlon_rad + M_PI), 2*M_PI) - M_PI;
Here's what I hav …
1
vote
3answers
89 views
Calculating distance from latitude, longitude and height using a geocentric co-ordinate system
I've implemented this method in Javascript and I'm roughly 2.5% out and I'd like to understand why.
My input data is an array of points represented as latitude, longitude and the …
1
vote
2answers
61 views
How to use linear interpolation estimate current position between two Geo Coordinates?
I have the following available:
last reported lat,lon w/timestamp
target lat,lon
estimated time to target
heading
How can I interpolate an estimated position over time?
I know …
1
vote
4answers
145 views
Given a latitude and longitude, find users interested in that position
Given a table,
+-----+---------+---------+---------+---------+---------+
| user| min_lat | max_lat | min_lng | max_lng |
+-----+---------+---------+---------+---------+---------+
…
0
votes
3answers
42 views
Geography in a social network
I want to make a global social network, in which users can search for nearby users.
What is the preferred way to allow users to easily specify where they are located?
Zip code wo …
0
votes
7answers
139 views
How can I sort a coordinate list for a rectangle counterclockwise?
I need to sort a coordinate list for a rectangle counterclockwise, and make the north-east corner the first coordinate. These are geographic coordinates (i.e. Longitude, Latitude) …
0
votes
4answers
129 views
Calculating bounding box a certain distance away from a lat/long coordinate in Java
Given a coordinate (lat, long), I am trying to calculate a square bounding box that is a given distance (e.g. 50km) away from the coordinate. So as input I have lat, long and dist …
1
vote
0answers
18 views
What spatial SRID is this? (trying to convert a .shp file to WSG84)
Hi folks,
I'm trying to import some Shapefile mapping data into Sql2008. Before I do that, I need to convert it to WGS84 / SRID 4326, because all my existing data is in this forma …
0
votes
4answers
226 views
How do I calculate the Azimuth (angle to north) between two WGS84 coordinates in a single T-SQL query?
I found the solution for this question in C#, but I can't translate it to a single query T-SQL, since my C# implementation requires branching (if then else).
I also found the foll …
1
vote
3answers
65 views
Spatial analysis in SAS?
Hi all,
Is there a way to do spatial analysis (NOT just graphics) in SAS? What I really want is the ability to geographic queries like one can do in PostGIS or SpatialLite in PRO …
1
vote
5answers
261 views
Clustering Coordinates on Server Side
What is the most efficient way of clustering coordinates on the server side? Examples?
Here is an example of exactly what I need (although I can't use third party vendors)
http:/ …
2
votes
1answer
45 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. M …
0
votes
0answers
37 views
Differences when convert between Geometry & Geography instances
Hi there,
Using SQL Server 2008: assuming I have a valid geography object geog1, converting it to a geometry instance geom1 (using the same SRID) and converting it back to an obje …
1
vote
2answers
91 views
With SQL2008 Spatial functions, How can I generate a polygon containing the results of an aggreation
I've got a table of points, each with a name, latitude, longitude, and an area code. What I'd like to do is perform an aggregation (i.e. a "group by" clause) and return a polygon c …
0
votes
1answer
92 views
Type Error running feature in Rail’s Cucumber
I'm trying to run Cucumber for my Rails application and keep getting this error:
> superclass mismatch for class Point (TypeError)
There's a huge stack trace from this error, …
