GRASS GIS 8.4.0 released
The GRASS GIS 8.4.0 release provides more than 520 improvements and fixes with respect to the release 8.3.2.
The post GRASS GIS 8.4.0 released appeared first on Markus Neteler Consulting.
The GRASS GIS 8.4.0 release provides more than 520 improvements and fixes with respect to the release 8.3.2.
The post GRASS GIS 8.4.0 released appeared first on Markus Neteler Consulting.
The GRASS GIS 8.4.0RC1 release provides more than 515 improvements and fixes with respect to the release 8.3.2. Please support us in testing this release candidate.
The post GRASS GIS 8.4.0RC1 released appeared first on Markus Neteler Consulting.
This year’s user conference took place in Bratislava, organized by the Slovak QGIS User Group and hosted at the Slovak University of Technology Faculty of Civil Engineering. The event was sold out early and the venue was full of energy and excitement.
If you missed the conference or couldn’t make it to a talk due to too many great overlapping sessions, you now have the opportunity to catch up with everything on the UC 2024 playing list:
Thanks to the organizers, speakers, sponsors, and all participants for the wonderful event.
If you want to read some personal reports from community members, here’s Ujaval Gandhi’s report: https://spatialthoughts.com/2024/09/14/qgis-user-conference-2024; and here’s Hans van der Kwast’s: https://www.qwast-gis.com/l/qgis-user-conference-2024/
Last but not least, we want you to save the date for next year’s user conference:
The QGIS User Conference will be in Norrköping, Sweden from 2-3 June 2025, and contributor meeting there after 4-7.
Visit maps in a project detail to experience improved performance. We're continuously working to make them more efficient and reliable.
Today marks the release of Trajectools 2.3 which brings a new set of algorithms, including trajectory generalizing, cleaning, and smoothing.
To give you a quick impression of what some of these algorithms would be useful for, this post introduces a trajectory preprocessing workflow that is quite general-purpose and can be adapted to many different datasets.
We start out with the Geolife sample dataset which you can find in the Trajectools plugin directory’s sample_data subdirectory. This small dataset includes 5908 points forming 5 trajectories, based on the trajectory_id field:
We first split our trajectories by observation gaps to ensure that there are no large gaps in our trajectories. Let’s make at cut at 15 minutes:
This splits the original 5 trajectories into 11 trajectories:
When we zoom, for example, to the two trajectories in the north western corner, we can see that the trajectories are pretty noisy and there’s even a spike / outlier at the western end:
If we label the points with the corresponding speeds, we can see how unrealistic they are: over 300 km/h!
Let’s remove outliers over 50 km/h:
Better but not perfect:
Let’s smooth the trajectories to get rid of more of the jittering.
(You’ll need to pip/mamba install the optional stonesoup library to get access to this algorithm.)
Depending on the noise values we chose, we get more or less smoothing:
Let’s zoom out to see the whole trajectory again:
Feel free to pan around and check how our preprocessing affected the other trajectories, for example:
In last August, there were 24 new plugins published in the QGIS plugin repository.
“Help us create the world’s most advanced open database on litter, brands & plastic pollution.”
This sentence welcomes us to the website of the OpenLitterMap project, which aims at providing tools for any and all citizens to capture data on litter worldwide. This data can now be directly accessed in QGIS for visualisation and analysis purposes, thanks to the efforts of the plugin’s author NaturalGIS. Well done to everyone involved, and we wish all the luck to this great project.
Here follows the quick overview in reverse chronological order. If any of the names or short descriptions catches your attention, you can find the direct link to the plugin page in the table below:
Theme Switcher |
This plugin adds a popup to easily switch between layer themes. |
Clickhouse_Connector |
This plugin connects to Clickhouse. |
Yarding Distance |
This plugin calucurates the “Yarding Distance” (average of distance from Polygon to Points). |
RealEarth |
This plugin allows users to directly access SSEC RealEarth web services public catalog of near real-time satellite imagery and related ancillary data through the OGC standard web services of WMTS and WFS. A login to RealEarth is recommended to extend data volume quota before watermarking occurs, but is not required. |
SkyGIS |
This is a plugin to download files from Skydeck, process it in QGIS and upload the results back to Skydeck portal. |
3D Arcs |
Tool to convert 2D lines to 3D Arcs. |
Transit Reachability Analyser |
Using OpenTripPlanner to calculate public transport reachability from a starting point to all stops in a GTFS feed. |
QMapOD |
Cartographie d’enquêtes O/D sous QGIS / Spatialite. |
PackageStyler |
Style all loaded layers in the GPKG in a few clicks. |
AutonomousGIS_GeoDataRetrieverAgent |
An autonomous agent framework to select geospatial data and then fetch data by generating and executing programs with self-debugging. |
merqantile |
Easy visualisation of XYZ tile bounds. |
Feature Transfer GIS Tool |
Feature Transfer Tool provides a seamless way to copy and paste features between layers. |
Select Lines |
Select Lines. |
Layer Atlas |
Discover and share geospatial layers easily within QGIS. |
Verificar_Sobreposicao |
Verifica sobreposição de feição. |
Chainage Tool |
This tool provides utility to convert line to chainage points. |
Raster Value Regular |
Smooth and interpolate grid from a Raster Layer using RegularGridInterpolator from scipy, then apply values to a vector layer as attribute. |
Earth Observation Pavement Analysis |
This plugin prepares the data sets to train, validate and assess earth observation imagery for pavement analysis. |
OpenLitterMap |
Processing provider to download raw data from the OpenLitterMap (https://openlittermap.com) project. |
TilePick |
Easy load raster or point cloud tiles from index vector layer or map canvas position. |
WCS 2 |
A OGC WCS 2.0 / EO-WCS Client to download spatio-temporal subsets from time-series datacubes. |
Disaster Risk Management IADB Toolbox |
Processing provider that integrates various disaster risk management tools into QGIS. |
PhotoViewer360 |
PL: Wtyczka umożliwiająca import i wizualizację zdjęć panoramicznych. ENG: Plugin for importing and visualising local panoramic images. |
Online Map Linker |
This plugin makes links from points to online map. |
Earlier this year, I shared my experience using ChatGPT’s Data Analyst web interface for analyzing spatiotemporal data in the post “ChatGPT Data Analyst vs. Movement Data”. The Data Analyst web interface, while user-friendly, is not equipped to handle all types of spatial data tasks, particularly those involving more complex or large-scale datasets. Additionally, because the code is executed on a remote server, we’re limited to the libraries and tools available in that environment. I’ve often encountered situations where the Data Analyst simply doesn’t have access to the necessary libraries in its Python environment, which can be frustrating if you need specific GIS functionality.
Today, we’ll therefore start to explore alternatives to ChatGPT’s Data Analyst Web Interface, specifically, the OpenAI Assistant API. Later, I plan to dive deeper into even more flexible approaches, like Langchain’s Pandas DataFrame Agents. We’ll explore these options using spatial analysis workflow, such as:
To try the code below, you’ll need an OpenAI account with a few dollars on it. While gpt-3.5-turbo is quite cheap, using gpt-4o with the Assistant API can get costly fast.
The OpenAI Assistant API allows us to create a custom data analysis environment where we can interact with our spatial datasets programmatically. To write the following code, I used the assistant quickstart and related docs (yes, shockingly, ChatGPT wasn’t very helpful for writing this code).
Like with Data Analyst, we need to upload the zipped shapefile to the server to make it available to the assistant. Then we can proceed to ask it questions and task it to perform analytics and create maps.
from openai import OpenAI
client = OpenAI()
file = client.files.create(
file=open("H:/ne_110m_populated_places_simple.zip", "rb"),
purpose='assistants'
)
Then we can hand the file over to the assistant:
assistant = client.beta.assistants.create(
name="GIS Analyst",
instructions="You are a personal GIS data analyst. Write and rund code to answer geospatial analysis questions",
tools=[{"type": "code_interpreter"}],
model="gpt-3.5-turbo", # or "gpt-4o"
tool_resources={
"code_interpreter": {
"file_ids": [file.id]
}
}
)
Then we can start asking questions and giving our assistant tasks:
thread = client.beta.threads.create()
message = client.beta.threads.messages.create(
thread_id=thread.id,
role="user",
content="Please load the zipped shapefile and describe the content"
)
assistant > The shapefile has been successfully loaded as a GeoDataFrame with the following details:
- The GeoDataFrame has 243 entries.
- It contains a total of 38 columns with various data types including integer, float, and object types.
- One of the columns is a geometry column representing the spatial information.
If you have any specific analysis or visualizations you would like to perform on this data, feel free to let me know!
The docs have a nice example for how to stream the answers back, e.g. into a Jupyter notebook. I’ve used it to create a small convenience function:
def ask_another_question(question):
message = client.beta.threads.messages.create(
thread_id=thread.id,
role="user",
content=question
)
with client.beta.threads.runs.stream(
thread_id=thread.id,
assistant_id=assistant.id,
event_handler=EventHandler(),
) as stream:
stream.until_done()
ask_another_question("Please list the three largest cities")
assistant > code_interpreter
# Sort the GeoDataFrame by the population in descending order
largest_cities = gdf.sort_values(by='pop_max', ascending=False).head(3)[['name', 'pop_max']]
largest_cities
assistant > The three largest cities in the dataset, along with their maximum population numbers, are as follows:
1. Tokyo: 35,676,000
2. New York: 19,040,000
3. Mexico City: 19,028,000
These cities have the highest recorded maximum population numbers in the dataset. Let me know if you need any further information or analysis!
ask_another_question("extract all scandinavian cities ")
assistant > To extract all the Scandinavian cities from the dataset, we can filter the GeoDataFrame based on the countries typically considered part of Scandinavia. These countries include Norway, Sweden, Denmark, Finland, and sometimes Iceland. Let's filter the GeoDataFrame to extract the Scandinavian cities.
assistant > code_interpreter
# List of countries typically considered part of Scandinavia
scandinavian_countries = ['Norway', 'Sweden', 'Denmark', 'Finland', 'Iceland']
# Filter the GeoDataFrame for Scandinavian cities
scandinavian_cities = gdf[gdf['adm0name'].isin(scandinavian_countries)][['name', 'adm0name']]
scandinavian_cities.head() # Displaying the first few Scandinavian cities
assistant > Here are some of the Scandinavian cities extracted from the dataset:
1. Reykjavík, Iceland
2. Oslo, Norway
3. Helsinki, Finland
4. København (Copenhagen), Denmark
5. Stockholm, Sweden
These are just a few examples of Scandinavian cities present in the dataset. If you would like the complete list or perform any specific analysis on these cities, feel free to let me know!
ask_another_question(
"please create a world map with all cities (use gray circles) "
"with scandinavian cities highlighted as red circles. "
)
assistant > To create a world map with all cities represented as gray circles and Scandinavian cities highlighted as red circles, we will use the GeoPandas library for mapping. Let's go ahead and create the map.
assistant > code_interpreter
import matplotlib.pyplot as plt
# Plot all cities with gray circles and Scandinavian cities with red circles
fig, ax = plt.subplots(figsize=(12, 8))
# Plot all cities in gray circles
gdf.plot(ax=ax, color='lightgrey', markersize=5)
# Plot Scandinavian cities in red circles
scandinavian_cities.plot(ax=ax, color='red', markersize=50, edgecolor='black', label='Scandinavian Cities')
# Set the title
ax.set_title('World Map with Scandinavian Cities Highlighted', fontsize=16)
# Add legend
ax.legend()
# Display the map
plt.show()
assistant > It seems that there was an error while plotting the map because the GeoDataFrame `scandinavian_cities` does not have the necessary numeric data to plot the map directly.
...
plt.show()
output >
assistant > Here is the world map with all cities represented as gray circles and Scandinavian cities highlighted as red circles. The map provides a visual representation of the locations of the Scandinavian cities in relation to the rest of the cities around the world. If you need any further assistance or modifications, feel free to let me know!
To load and show the image, we can use:
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
def show_image():
messages = client.beta.threads.messages.list(thread_id=thread.id)
for m in messages.data:
if m.role == "user":
continue
if m.content[0].type == 'image_file':
m.content[0].image_file.file_id
image_data = client.files.content(messages.data[0].content[0].image_file.file_id)
image_data_bytes = image_data.read()
with open("./out/my-image.png", "wb") as file:
file.write(image_data_bytes)
image = mpimg.imread("./out/my-image.png")
plt.imshow(image)
plt.box(False)
plt.xticks([])
plt.yticks([])
plt.show()
break
Asking for an interactive map in an html file works in a similar fashion.
You can see the whole analysis workflow it in action here:
This way, we can use ChatGPT to perform data analysis from the comfort of our Jupyter notebooks. However, it’s important to note that, like the Data Analyst, the code we execute with the Assistant API runs on a remote server. So, again, we are restricted to the libraries available in that server environment. This is an issue we will address next time, when we look into Langchain.
ChatGPT’s Data Analyst Web Interface and the OpenAI Assistant API both come with their own advantages and disadvantages.
The results can be quite random. In the Scandinavia example, every run can produce slightly different results. Sometimes the results just use different assumptions such as, e.g. Finland and Iceland being part of Scandinavia or not, other times, they can be outright wrong.
As always, I’m interested to hear your experiences and thoughts. Have you been testing the LLM plugins for QGIS when they originally came out?
This release is the first to support GeoPandas 1.0.
Additionally, this release adds multiple new features, including:
For the full change log, check out the release page.
We have also revamped the documentation at https://movingpandas.readthedocs.io/ using the PyData Sphinx Theme:
On a related note: if you know what I need to change to get all Trajectory functions listed in the TOC on the right, please let me know.
With the QGIS Grant Programme 2023, we were able to support six proposals (four in the first round and two in the second round) that are aimed to improve the QGIS project, including software, infrastructure, and documentation. The following reports summarize the work performed in the first four proposals:
Thank you to everyone who participated and made this round of grants a great success and thank you to all our sustaining members and donors who make this initiative possible!
Full Changelog: v3.3.10...v3.3.11
Full Changelog: v3.3.9...v3.3.10
For the last month of July, one short of 30 new plugins were published in the QGIS plugin repository.
Here follows the quick overview in reverse chronological order. If any of the names or short descriptions catches your attention, you can find the direct link to the plugin page in the table below:
MariaDB to QGIS |
Fetches longitude (x) and latitude (y) data from MariaDB and writes it to a Shapefile or GeoPackage and adds it to your map. |
Print Selection |
Outputs selected features to text console. |
DeraPro |
DeraPro for projects and studies allows the download of the reference spatial data of Andalusia and make a cut of the information for a specific study area. |
QPackageQGZ |
QPackage is a tool to save both your QGIS project and data contained in the project to a new directory. |
ArgentinaGeoServices |
A QGIS plugin to import WMS Geoservices from Argentina. |
T Vertical Sessions |
Used to Vertical Sessions of Lidar Point Cloud. |
BuenosAires Converter |
A QGIS plugin that converts layers to EPSG:9497. |
Make Sector |
Plugin to create sector, circle radius, and spidergraph delimited and vector layer. |
CBERS-4A WPM Explorer |
The CBERS Explorer is a specialized plugin developed to facilitate the search and retrieval of images from the China-Brazil Earth Resources Satellite (CBERS) program, specifically focusing on the CBERS-4A satellite with Wide Field Imager (WPM) data. |
FPT Plot Alocation |
Plot alocation for forest inventory. |
QGISpell |
Creates context menu spell checking for attribute data based on ENCHANT libraries. |
ur-scape Data Importer |
Import data to ur-scape. |
MorphAL |
MorphAL plugin for QGIS. |
LER+ |
Nem adgang til LER2 forespørgsler. |
Threshold to ROI |
Create ROI (Region of Interest) with threshold values. |
Spell Checker |
Check the spelling of words in Print Layout elements. |
Filter By Selection |
Filter a given layer by the selected feature and attribute of another layer. |
Natur i Norge kartlegging |
Natur i Norge (NiN) mapping tool. |
AIAMAS – AI-Assisted Map Styler |
Symbolize your vector layers in seconds. |
Sentinel 2 Image Downloader |
This plugin allows users to download Sentinel-2 images. |
MapSafe |
Safeguard datasets using masking, encryption and notarisation. |
GPX Maker for GARMIN® devices |
This plugin exports GPX files for GARMIN® devices. |
QGIS Sound Effects |
Add sound effects to QGIS to make work less boring. |
Mosaic Tool |
A plugin to mosaic bands from selected raster layers. |
Polaris |
QGIS interface for Polaris through Polaris-Studio |
ArcGeek Calculator |
A comprehensive toolset for coordinate calculations, conversions, spatial operations, watershed analysis, land use analysis, and flood simulation in QGIS. |
Auxiliary Labeldata Importer |
Helps you to import Labeldata, stored in an auxiliary Layer from another Project. |
Sections |
Creates a section polygon layer from a point layer. |
Slownik warstw |
Tworzy słownik w formie pliku txt rozdzielanego tabulacjami dla wybranych warstw, program pozwala na eksport pełnych nazw pól danej warstwy oraz wersje jako powstanie po zmienie z gpkg do shp. |
Full Changelog: v3.3.8...v3.3.9
Full Changelog: v3.3.7...v3.3.8