Questions tagged [geospatial]

Concerning the specific location and attributes of natural or man-made elements and borders on, above, or below the surface of the Earth; specifically relating to information that is geographical and spatial in essence.

Incorporating a color-coded legend onto a Folium map for

When creating a map in Folium with multiple layers, each containing shaded areas (utilizing GeoJSON) colored by a colormap, I encountered an issue with adding legends to my layers. An initial solution was found here, but it posed problems as the legend rem ...

Struggling with Python IDLE's inability to detect the OGR/GDAL Module

Hey everyone, I'm diving into the world of OGR and Python for some geospatial tasks. I've set everything up outside of OSGEO4w, with GDAL and Python Bindings installed on my machine running Python v. 2.7.8. Here's where things get tricky - ...

Tips on how to automatically extract information (KMZ? JSON?) from My Google Maps

I am looking for a solution to automate the extraction of data from My Google Map without having to manually export it each time. Ideally, I want to streamline the process by integrating it into a larger script that runs smoothly without requiring me to lo ...

Utilize Typescript Functions to Interact with GeoJSON Data in Palantir Foundry

Working on a map application within Palantir utilizing the workshop module. My goal is to have transport routes showcased along roads depending on user inputs. I am familiar with displaying a route using GeoJSON data, but I'm wondering if there is a way to ...

Converting a collection of GPS coordinates into a GPX file: A step-by-step guide

I encountered a csv file with the following structure: id,latitude,longitude 0,51.74333,12.122905000000001 538,51.7433216,12.122895 539,51.7433266,12.1228766 540,51.743333299999996,12.1228583 541,51.7433416,12.122843300000001 542,51.743355,12.122833300000 ...

What is the process for importing maps into geopandas once datasets have been deleted?

One method I have found simple and beneficial is loading a world map from geopandas datasets. Many others may also find this approach useful. To accomplish this, you can use the following code: import geopandas as gpd world = gpd.read_file(gpd.datasets.g ...