{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# surplus 2.0.0 playground notebook" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "OUTPUT_LINE_X_KEYS: Final[tuple[str, ...]] = (\"region\",\"county\",\"state\",\"state_district\",\"country\",\"continent\",)\n" ] } ], "source": [ "# converting nominatim keys to OUTPUT_LINE_X_KEYS format\n", "\n", "keys = \"\"\"\n", "region, county, state, state_district, country, continent\n", "\"\"\"\n", "\n", "split_keys = [f'\"{key.strip()}\"' for key in keys.strip().split(\",\")]\n", "\n", "print(f\"OUTPUT_LINE_X_KEYS: Final[tuple[str, ...]] = ({','.join(split_keys)},)\")" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "from surplus import PlusCodeQuery, LocalCodeQuery, LatlongQuery, StringQuery\n", "from surplus import default_geocoder, default_reverser\n", "from surplus import Latlong" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Result(value=Latlong(latitude=1.3336875, longitude=103.7746875), error=None)" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "PlusCodeQuery(code=\"6PH58QMF+FV\").to_lat_long_coord(geocoder=default_geocoder)" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Result(value=Latlong(latitude=1.3336875, longitude=103.7746875), error=None)" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "plus_code = LocalCodeQuery(code=\"8QMF+FV\", locality=\"Singapore\").to_full_plus_code(\n", " geocoder=default_geocoder\n", ")\n", "\n", "PlusCodeQuery(code=plus_code.get()).to_lat_long_coord(geocoder=default_geocoder)" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Result(value=Latlong(latitude=1.3336875, longitude=103.7746875), error=None)" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "LocalCodeQuery(code=\"8QMF+FV\", locality=\"Singapore\").to_lat_long_coord(\n", " geocoder=default_geocoder\n", ")" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Result(value=Latlong(latitude=1.33318835, longitude=103.77461234638255), error=None)" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "LatlongQuery(\n", " latlong=Latlong(latitude=1.33318835, longitude=103.77461234638255)\n", ").to_lat_long_coord(geocoder=default_geocoder)" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Result(value=Latlong(latitude=1.33318835, longitude=103.77461234638255), error=None)" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "StringQuery(query=\"Ngee Ann Polytechnic\").to_lat_long_coord(geocoder=default_geocoder)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.12" }, "orig_nbformat": 4 }, "nbformat": 4, "nbformat_minor": 2 }