Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8935243
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:57:00+00:00 2026-06-15T09:57:00+00:00

I have heard that SQL Server now supports Geography like things. Is it possible

  • 0

I have heard that SQL Server now supports Geography like things. Is it possible to get City from Longitude/Latitude? I have search a lot but could not find any?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T09:57:01+00:00Added an answer on June 15, 2026 at 9:57 am

    You need to load some data with city locations – Geonames(you might want cities15000.zip) or Natural Earth(Populated places) might be good places to start.

    CREATE TABLE cities ( 
      name VARCHAR(200) PRIMARY KEY,
      location GEOGRAPHY, 
    );
    CREATE SPATIAL INDEX idx_cities_location ON cities(location);
    
    INSERT INTO cities (name, location) VALUES
      ('Auckland', geography::STGeomFromText('POINT(174.7833 -36.85)', 4326)),
      ('London', geography::STGeomFromText('POINT(-0.1062 51.5171)', 4326))
    ;
    
    • Note the order of all coordinates is (Longitude Latitude)
    • Spatial indexes make it fast.
    • the 4326 is the coordinate system code for basic Longitude/Latitude.

    Then to find the closest city to a given location you want a query like:

    DECLARE @g geography = 'POINT(103.75 1.3667)';
    SELECT TOP(1) name FROM cities
    WHERE location.STDistance(@g) IS NOT NULL
    ORDER BY location.STDistance(@g);
    

    More examples in the SQL Server docs:

    • Create, Construct, and Query geography Instances
    • Query Spatial Data for Nearest Neighbor
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have heard that DateTime.Now is very expensive call (from here ) Is GETDATE()
I have heard that in C++, using an accessor ( get...() ) in a
I have a SQL Server Job running on server X. Now I have to
I've been working in Sql server jobs since 2 years now. Although I like
I have a somewhat small database in SQL Server Express 2005 that I really
I heard on the grapevine that Microsoft will be releasing SQL Server 2008 R2
I have an SQL Server query that needs to count the number of rows
I have a SQL Server database and several clients that use it (via a
I'm working on a Web App that queries data from a clients SQL Server
I have heard that when dealing with mutexes, the necessary memory barriers are handled

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.