A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://cloud.google.com/appengine/docs/legacy/standard/python/search/geopointclass below:

The GeoPoint Class | App Engine standard environment for Python 2

The GeoPoint Class

Stay organized with collections Save and categorize content based on your preferences.

Class GeoPoint represents a point on the earth's surface represented by latitude and longitude coordinates.

This API is supported for first-generation runtimes and can be used when upgrading to corresponding second-generation runtimes. If you are updating to the App Engine Python 3 runtime, refer to the migration guide to learn about your migration options for legacy bundled services.

GeoPoint is defined in the module google.appengine.api.search.

Introduction

The GeoPoint class allows you to make map locations searchable. You start by instantiating the GeoPoint class and then pass that object to a specific document field:

from google.appengine.api import search
...
# Construct the GeoPoint class
geopoint = search.GeoPoint(latitude, longitude)

fields = [search.TextField(name='name', value=store_name),
          search.TextField(name='address', value=store_address),
          # Construct a GeoField passing geopoint as the value of that field
          search.GeoField(name='store_location', value=geopoint)
         ]

For more information about performing location-based searches, please see Queries on geopoint fields.

Constructor

The constructor for class GeoPoint is defined as follows:

GeoPoint(latitude, longitude)

A point on the earth's surface represented by latitude and longitude coordinates.

Arguments

latitude

The angle between the equatorial plan and a line that passes through the GeoPoint, between -90 and 90 degrees.

longitude

The angle east or west from a reference meridian to another meridian that passes through the GeoPoint, between -180 and 180 degrees.

Exceptions

TypeError

Any of the parameters has an invalid type, or an unknown attribute was passed.

ValueError

An invalid value was passed for one of the parameters.

Properties

An instance of class GeoPoint has the following properties:

latitude

An angular distance, in degrees, from the equator. Points located to the south of the equator have negative values, while points located to the north of it have positive values.

longitude

An angular distance, in degrees, from the prime meridian. Points located to the west of the prime meridian have positive values, while points located to the east of it have negative values.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-08-07 UTC.

[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[[["The `GeoPoint` class represents a location on Earth using latitude and longitude coordinates."],["`GeoPoint` objects are created by passing latitude and longitude values to the `GeoPoint` constructor, each within specified degree ranges."],["`GeoPoint` objects can be used within a `GeoField` to make map locations searchable in documents."],["The latitude property represents the north-south position, and the longitude property represents the east-west position, each with specific degree ranges and signs."]]],[]]


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4