Nous utilisons des cookies pour vous garantir la meilleure expérience sur notre site. Si vous continuez à utiliser ce dernier, nous considèrerons que vous acceptez l'utilisation des cookies. J'ai compris ! ou En savoir plus !.
Un Planet est un site Web dynamique qui agrège le plus souvent sur une seule page, le contenu de notes, d'articles ou de billets publiés sur des blogs ou sites Web afin d'accentuer leur visibilité et de faire ressortir des contenus pertinents aux multiples formats (texte, audio, vidéo, Podcast). C'est un agrégateur de flux RSS. Il s'apparente à un portail web.
Vous pouvez lire le billet sur le blog La Minute pour plus d'informations sur les RSS !
  • Canaux
  • Categories
  • Tags
  • Canaux

    2466 éléments (31 non lus) dans 55 canaux

    Dans la presse Dans la presse

    Planet OSGeo

     
    • sur Mappery: Pinocchio Theme Park

      Publié: 23 March 2024, 11:00am CET

      Ian Wagner shared this pic of a map of Italy in a Pinocchio themed park in South Korea. Who knew Pinocchio was a thing there?

      MapsintheWild Pinocchio Theme Park

    • sur Mappery: A map lover’s birthday present

      Publié: 22 March 2024, 11:00am CET

      Gregory Marler said “I got a scarf for my birthday, it’s got 2 country maps on it! Would @mappery count this as a map in the wild? At the least it is being worn beside my wild/unkempt beard.”

      The answer is definitely “Yes”

      Who can work out the country that is not UK? (Greg can’t answer)

      MapsintheWild A map lover’s birthday present

    • sur Jackie Ng: Avalonia UI Test Drive

      Publié: 22 March 2024, 9:40am CET

      As the title implies, this blog post is about my experience test driving Avalonia UI.

      So why am I doing this?

      I've been getting growing questions lately about whether MapGuide Maestro works on Linux via Mono

      Sadly I no longer emphasize anything regarding Mono compatibility because.

      • WinForms support (in legacy .net Framework 4.x) on Mono is pretty much a hack.
      • And since we've moved away from legacy .net Framework to .net 6.0, the combination of WinForms + .net 6.0 is probably an unsupported combination (you don't use Mono to run .net core/5.0+ applications, you use Microsoft's official SDK/runtime). I'm also not too keen to waste time and resources to test and find out.
      The best and practical approach for a multi-platform MapGuide Maestro would be to at a minimum to rewrite the UI in a library/framework where support on non-Windows platforms is a first-class citizen.

      And in terms of .net multi-platform UI frameworks, there's only one logical choice: Avalonia UI

      While it is not in my immediate plans to rewrite MapGuide Maestro's UI in Avalonia, I wanted to at least explore the feasibility of building such a UI even if all the actual functionality is mocked up, just to see how easy or difficult the whole process is.

      Hence the motivation for this post.

      So why Avalonia?

      Avalonia is effectively the "spiritual successor" to WPF, and adopts most of the same patterns and practices when building UIs for Avalonia.

      I had first heard about Avalonia when it was formerly known as Perspex and at the time, from the screenshots of example Perspex applications on Windows and non-Windows platforms, it was clear at that point in time the range of possible applications one can build with Perspex was quite limited and building an application like Maestro on top of Perspex was not feasible.

      Just recently, I had heard about the framework now known as Avalonia again and this time round there was a lot more positive buzz around it, so I gave it another look and was much more impressed at its capabilities and richer suite of UI controls to build applications with.

      Our objective 

      My objective with this Avalonia learning exercise was to build a minimal multi-document interface skeleton application, mimicking the primary functionality (UI-wise) of MapGuide Maestro.

      • Being able to present a login UI to connect to a MapGuide Server
      • Present MapGuide Server resources in a tree view
      • Open resources in a region of tabbed editor panels and being able to close them.
      This is a crude wireframe of the kind of UI I wanted to build.
      If this kind of UI looks familiar, yes it's basically the UI for tools like:MapGuide Maestro is an IDE-like application (in terms of UI), so my first instinct is to look for a Visual Studio like docking library for Avalonia. However, I've been using Visual Studio Code more often than full Visual Studio as my daily driver for coding and the VSCode UI has become my default UI that I want to replicate for any IDE-like application with a multi-document interface.
      The benefit of such a UI, is that it doesn't require an explicit VS-style window docking control like I have for the current WinForms-based MapGuide Maestro. I can already see the controls needed to build such a UI
      Any UI toolkit worth its salt should to able to provide these basic controls.
      This is a proof-of-concept, so we won't be using the existing Maestro API to talk to actual MapGuide Servers. Instead such functionality will be mocked up for this application. The main purpose of this exercise is to see if Avalonia provides enough of the base UI elements to build a hypothetical version of MapGuide Maestro on top of.
      It turns out this exercise was fraught with several challengesChallenge #1: Getting familiar with Avalonia conceptsThe first challenge was simply getting familiar with Avalonia concepts. Being someone who did .net desktop app development primarily in Windows Forms, I skipped over WPF, and its XAML-based variants/successors like Silverlight, Xamarin Forms, UWP, and MAUI, and Avalonia being a "spiritual successor" to WPF meant that I didn't have a potential conceptual head start on Avalonia that one might have if they already had experience with WPF and its XAML-based derivatives.
      However, I was familiar with the MVVM pattern and data-binding, which is used heavily in Avalonia. I already had experience in knockout.js building/maintaining some of our web apps in my day job, and these concepts learned from knockout.js mostly translate cleanly 1:1 to Avalonia.
      The other Avalonia concepts I'll have to figure out as we go along.
      Challenge #2: WebAssembly (WASM) supportBefore I begin, I must take the MapGuide-knowledgable readers of this post back in time, way back to when MapGuide Open Source 1.0 was released.
      Do you remember how this new (at the time), re-invented version of MapGuide was released, but the only authoring option at the time was to buy a license of Autodesk MapGuide Studio? Not a pretty look if you are offering a free and open source web map GIS server, but the authoring tools are not?
      Some members of the MapGuide community were aware of this glaring discrepancy and created a web-based equivalent of MapGuide Studio called Web Studio built fully with HTML/JS/CSS. Unfortunately, Web Studio was really bare-bones in terms of authoring capabilities and the code being written in the pre-historic era of javascript (this was circa 2006-2007) which did not make it conductive to external contribution. React, TypeScript and friends weren't around then, so trying to enhance Web Studio with new features was extremely challenging. I once tried to add at least a generic XML text editor fallback for Web Studio so you had something to edit various resources where Web Studio did not provide a dedicated editor UI for, but alas this was just too challenging for me and I gave up on such an idea.
      But eventually another user of the MapGuide community solved this problem more directly by developing and releasing a v1.0 of a windows .net desktop application that you all know as MapGuide Maestro. As an aside, I am not the original author of MapGuide Maestro in case you're wondering, I merely took over development and maintenance of Maestro from the 2.1 release onwards.
      Anyways, back to the topic at hand, when I created the new Avalonia application with the provided project template, I was most surprised to see that the generated solution came with a project that compiled to WebAssembly (WASM) that was ready to run in your web browser!
      This was a mind-blowing revelation for me from a conceptual standpoint. It means our hypothetical MapGuide Maestro built on Avalonia could not only exist as a regular desktop application, but the WASM build of this application could be dropped in the the wwwroot of a MapGuide Web tier installation and you would now have a modern version of Web Studio, but much more powerful and capable, because it is just MapGuide Maestro ... now in your web browser!
      Since our starter project template includes a functioning WASM browser target. I now had a strong incentive to keep this target active and working, because the prospect of being able to run MapGuide Maestro in a web browser is a very tempting proposition. Therefore, the choice of libraries and APIs I use is constrained by my new requirement of being able to work in a browser/WASM environment.
      For example, I originally wanted to use MVVMDialogs to simplify working with dialogs (Maestro has lots of dialogs, so I figure such a library could be useful), but I couldn't get this library to work in a WASM environment with some of my testing dialogs, so this was a no-go. Since this was just a proof-of-concept, there wasn't a need to have working dialog system, but it does mean if this were to go beyond a proof-of-concept and into an actual application where we will inevitably have to present a dialog of some sort, I'd have to come with a paradigm that can work in both desktop and browsers.
      Another problem with this WASM target is that I can't seem to debug it in Visual Studio. You can launch the WASM target in the debugger and spawn a new browser window to launch your app, but any breakpoints you stick in your C# code are not being hit. I'm not sure if this a shortcoming or a broken feature, but it is somewhat concerning if we were to go full steam ahead with support WASM as a compilation/deployment target.Challenge #3: "Large scale" MVVMAlthough I already knew the MVVM pattern from knockout.js, my scope of usage was mostly limited to using knockout.js to building "islands" of interactive client-side content on primarily server-generated web pages. So I didn't really have an idea of how to apply such a pattern on a full blown Single Page Application (SPA), which is pretty much what we're trying to achieve (conceptually) in Avalonia. By the time I was building SPAs proper, I had moved on the popular stuff like React, which is how I gained the knowledge needed to build a modern replacement map viewer for MapGuide and my usage of knockout.js fell by the wayside as a result, so I never figured out the answer for how to do large scale MVVM.
      The main problem was that in a large scale MVVM, how do view models communicate with each other without a tight parent-child coupling?
      I deduced that for starters, we definitely need to use dependency injection. Various view models will need to access different services and if we had a root view model with explicit nested child view models (each with their own service requirements), it would be an absolute pain to have to setup these various view models. Using a DI container means we can offload this concern to it and we can focus on just asking the DI container for a particular view model and it will setup all the required services for it for us provided we register everything properly with the DI container.
      For better WASM support, I wanted a dependency injection container that is not driven by reflection to make the code more friendlier to app trimming. We want to be able to app trim on publish so that we can eliminate unused code and reduce the final binary size. This is most desirable for the WASM target as app trimming means smaller binaries, which means smaller payloads to download in a web browser. StrongInject was chosen for this reason as it was a "compile-time" DI container that can verify all your dependencies are registered properly before running the application through the magic of source generators, generating all the necessary registration and validation code for you.

      Finally, to be able to communicate between view models without necessary parent-child coupling, the messenger facility of the MVVM toolkit can be used. With this messenger facility, we simply:
      • Have select view models be recipients of certain messages
      • Have our application services (that various view model commands call) send these messages.
      • Relevant recipients get notified and update themselves (and their bound UIs) accordingly as a result.
      I don't know if this is the proper usage of MVVM pattern in a "large scale" application, but it makes sense internally in my mind.Challenge #4: TabControl binding of heterogenous/polymorphic contentOur proof-of-concept app has a main tab region where tabs of various document content are shown. I figured out easily that their TabControl component is supposed to be data-bound to an observable collection of view models, but what really stumped me was how bind this control to an observable collection of polymorphic editor view models?
      The reason is because the tab content we want to show is not homogenous. One open editor tab could be for a layer, one for a map, one for a feature source, etc, etc. So we need to be able to show different tabs on the same tab control. 
      Avalonia documentation is pretty scant on this topic. All examples I found assume homogenous series of tab content, which is not our case.
      Just for laughs, since AI has been hyped for soon taking away everyone's jobs (even us devs), I figured I'd ask huggingface chat (as a guest), how would you solve this problem?

      Unfortunately, the provided code sample does not work out of the box. It clearly assumed Avalonia = WPF and gave me a WPF-based solution. The giveaway was the Avalonia TabControl does not have an ItemTemplateSelector, but the WPF TabControl does.
      But Avalonia sharing many conceptual similarities with WPF meant that although the answer provided wasn't correct, parts of the answer were applicable and did lead me down to further avenues of inquiry and eventually I found the solution: It was to define a data template for every possible derived tab view model class in the same UserControl where the TabControl was specified.Final challenge: Avalonia VS designerThis wasn't so much a challenge, rather an annoyance. The Avalonia designer in Visual Studio has some teething issues
      • Intellisense/autocomplete is somewhat flaky when writing binding expressions and when you're doing a lot of data-binding, having the editor giving you and incomplete or outdated list of properties you can bind to becomes annoying. A full project build generally fixes this, but it is annoying having to do this every time I add new observable properties or commands to an existing view model class.
      • It's also not rename-aware, so observable property or command renames will result in stale binding expressions, causing havoc with the designer and have to be manually fixed up in the XAML. Choose your observable property names wisely I suppose, because renaming them afterwards is painful.
      The end result and overall thoughtsA week later from that post, after addressing and/or navigating around these various challenges, we have a functional skeleton application!




      And if these screenshots don't convince you, thanks to being able to deploy as a WASM target, I deployed a copy to GitHub pages, so you can see this app for yourself right in your WASM-enabled web browser!

      The source code for this app can be found here. One day this may form the basis of a new (true) multi-platform version of MapGuide Maestro, but for now this lies as a potentially useful starting point for building a tabbed-multi-document editor application with Avalonia.
      So what did I think of Avalonia from this little experiment? 
      • I like it mostly. My pre-existing experience on knockout.js helped greatly with picking up MVVM and data-binding. My initial prediction of a VSCode-style UI layout being buildable turned out to be true.
      • I like the default (project template provided) choice of MVVM Toolkit for applying the MVVM pattern. I like their heavy use of source generators to make adding new observable properties and commands to a view model being a simple case of tacking [ObservableProperty] on a field or tacking [RelayCommand] to a private method and having the source generator generate all of the boilerplate code for you (and it's a lot of boilerplate!).
      • The revelation that Avalonia has a WASM deployment target was both exciting and "cramping my style". It meant that certain libraries I wanted to use (eg. The MVVM dialogs library) could not be used and it wasn't clear what would work in a WASM browser environment and what wouldn't. Which leads to ...
      • Documentation is lacking in some areas. What really stumped me for a while was how do a TabControl bound to a collection of polymorphic or heterogenous tab view models. Their provided examples completely failed to tell me how to do this. I suppose if I came into this with existing WPF experience, this wouldn't have been so difficult as most of the concepts and patterns seem to be mostly transferable, but I happened to have skipped WPF and its bajillion XAML-based derivatives, so I didn't have this pre-existing knowledge to fall back on. Through perseverance and looking at the source code for many existing Avalonia applications on GitHub, I was finally able to determine that data templates was the solution.
      So all-in-all, this was a fun and useful exercise and you get a useful starting point app from this effort!
      Now I better get back onto this MapGuide/FDO work.

    • sur GIScussions: Your Map Inside

      Publié: 21 March 2024, 5:47pm CET

      A few weeks ago I recorded a Geomob Podcast with Ana Lucía González Paz about her beautiful flipbook, A Map Inside. You can read the book in a few minutes and then you can listen to the podcast

      [https:]]

      Towards the end of each podcast, I give my guest the opportunity to go off piste and talk about a subject that they choose (in the past we have talked about digital privacy, mental health and open source sustainability to mention just a few). Ana said that she would like to ask me to describe my Map Inside and you can hear how I replied at the end of the podcast.

      After we recorded the podcast, I was chatting with Ana and we thought that it would be fun to get other people to share their Map Inside. Everyone has a Map Inside connected to memories, people, special moments, would you like to share yours? Just record a short audio clip in mp3 format running for 60 to 120 seconds and mail it to me (if you don’t know my email use the Contact Form to reach me or find me at Mastodon). Assuming we get a few responses, Ana and I will put together an episode of the podcast with a selection of your Maps Inside.

      Hope to hear from you with your Map Inside

    • sur Mappery: Route Map Not Available

      Publié: 21 March 2024, 11:00am CET

      Kaakapoo shared this “A lack of #MapsintheWild today”

      I’m sure this will prompt some debate as to whether the absence of a Map qualifies as an entry here, but you know the rules (editors are always right)

      MapsintheWild Route Map Not Available

    • sur Jorge Sanz: Interview at Geomob Podcast

      Publié: 20 March 2024, 3:19pm CET
      Pièce jointe: [télécharger]

      geomob hero image

      Earlier this week an episode of the Geomob Podcast was published where Steven Feldman interviews yours truly. It was a lot of fun to chat with Steven about Elastic, my experience in the geospatial industry, and Open Source in general. I could also advocate a bit about data privacy and digital identity which is a topic that has picked my interest even more lately with all the shit that is hitting that social network we all know about.

      If you want to learn a bit about Elastic and Geo this is maybe a good opportunity to get a condensed gist of why would anyone want to store and analyze geospatial data in Elasticsearch, a few compelling use cases and so on.

      [https:]]

      Cheers!

      Reply by mail or from the fediverse

    • sur Mappery: Fushimi Inari-taisha Park

      Publié: 20 March 2024, 11:00am CET

      Raf shared this beautiful map from Fushimi Inari-taisha park in Kyoto.

      MapsintheWild Fushimi Inari-taisha Park

    • sur Camptocamp: Camptocamp at FOSSGIS 2024

      Publié: 20 March 2024, 1:00am CET
      Pièce jointe: [télécharger]
      Camptocamp will join other geospatial professionals at the FOSSGIS conference in Hamburg, Germany from March 20 to 23, 2024.
    • sur GeoTools Team: GeoTools 31.0 released

      Publié: 19 March 2024, 8:12pm CET
      GeoTools 31.0 released The GeoTools team is pleased to announce the release of the latest stable version of GeoTools 31.0: geotools-31.0-bin.zip geotools-31.0-doc.zip geotools-31.0-userguide.zip geotools-31.0-project.zip This release is also available from the OSGeo Maven Repository and is made in conjunction with GeoServer 2.25.0 and
    • sur Mappery: Drinking Longitude

      Publié: 19 March 2024, 11:00am CET

      Javier asks whether this qualifies as a map in the wild? And we say “Why not?”

      The blurb on the bottle should say “This wine will coordinate well with food from any latitude”

      MapsintheWild Drinking Longitude

    • sur GeoServer Team: GeoServer 2.25.0 Release

      Publié: 19 March 2024, 1:00am CET

      GeoServer 2.25.0 release is now available with downloads (bin, war, windows), along with docs and extensions.

      This is a stable release of GeoServer recommended for production use. GeoServer 2.25.0 is made in conjunction with GeoTools 31.0, and GeoWebCache 1.25.0.

      Thanks to Peter Smythe for making this release. Thanks to Levy Steve, Peter Smythe, Jody Garnett, and Mark Prins for testing the 2.25.0 release.

      Security Considerations

      This release addresses several security vulnerabilities, all of which require admin access.

      • If you have updated to GeoServer 2.24.2 Release or GeoServer 2.23.5 Release you are already patched.
      • If you are working with a commercial support provider that volunteers with the geoserver-security email list they are already informed.

      Vulnerabilities:

      • CVE-2023-51444 Arbitrary file upload vulnerability in REST Coverage Store API (High).
      • CVE-2023-41877 GeoServer log file path traversal vulnerability (High).
      • CVE-2024-23634 Arbitrary file renaming vulnerability in REST Coverage/Data Store API (Moderate).
      • CVE-2024-23643 Stored Cross-Site Scripting (XSS) vulnerability in GWC Seed Form (Moderate).
      • CVE-2024-23821 Stored Cross-Site Scripting (XSS) vulnerability in GWC Demos Page (Moderate).
      • CVE-2024-23819 Stored Cross-Site Scripting (XSS) vulnerability in MapML HTML Page (Moderate).
      • CVE-2024-23818 Stored Cross-Site Scripting (XSS) vulnerability in WMS OpenLayers Format (Moderate).
      • CVE-2024-23642 Stored Cross-Site Scripting (XSS) vulnerability in Simple SVG Renderer (Moderate).
      • CVE-2024-23640 Stored Cross-Site Scripting (XSS) vulnerability in Style Publisher (Moderate).
      • CVE-2023-51445 Stored Cross-Site Scripting (XSS) vulnerability in REST Resources API (Moderate).

      We would like to thank everyone who contributed to reporting, verifying and fixing the above vulnerabilities (see each CVE for appropriate credits). A special thank you to Steve Ikeoka for reporting most of the issues and doing the majority of the actual fixes.

      The use of the CVE system allows the GeoServer team to reach a wider audience than blog posts. See the project security policy for more information on how security vulnerabilities are managed.

      Upgrade Notes

      We have a number of configuration changes when updating an existing system:

      • The longstanding ENTITY_RESOLUTION_ALLOWLIST setting has been recommended as a way to control the locations available for external entity resolution when parsing XML documents and requests.

        The default has changed from * (allowing any location) to allowing the recommended www.w3.org, schemas.opengis.net, www.opengis.net locations used for OGC Web Services, along with the inspire.ec.europa.eu/schemas location used by our friends in Europe.

      • The FreeMarker Template HTML Auto-escaping is now enabled by default.

      • The spring security firewall is now enabled by default.

      • A new configuration setting is available to limit content served from the geoserver/www folder.

        If you have not met the www folder before it is used to share content, and there is a tutorial serving static files.

      • We do add recommendations to production considerations over time, if you have not checked that page in a while please review.

      Thanks to Steve Ikeoka and Jody Garnett for these improvements.

      JTS fast polygon intersection enabled by default

      The JTS Next Generation polygon intersection algorithm has been enabled by default, which will improve performance of a number of operations, including WPS processes and the vector tiles generation. We deem the functionality well tested enough that it should be opened to the majority of users, even if it’s still possible to turn it off by adding the -Djts.overlay=old.

      MapML Extension

      The MapML extension is receiving a number of updates and improvements, with more to come in the following months. It’s now possible to declare “Tiled CRS” as the CRS for a layer, with the implication not just of the CRS, but also of the gridset that will be used by the MapML viewer:

      This portion builds on top of the work done months ago to support astronomical CRSs, which allows GeoServer to support multiple CRS authorities.

      The MapML preview links are now using the new MapML output format, while the old dedicated REST controller has been removed. This allows for better integration of the MapML format in the GeoServer ecosystem. The MapML viewer has also been updated to the latest version:

      Thanks to Joseph Miller and Andrea Aime (GeoSolutions) for this work, and Natural Resources Canada for sponsoring it.

      Community Module Updates

      Much of the new activity in GeoServer starts as a community module. We’d like to remind you that these modules are not yet supported, and invite you to join the effort by participating in their development, as well as testing them and providing feedback.

      Raster Attribute Table community module

      Developed as part of GEOS-11175, the Raster Attribute Table community module uses the GDAL Raster Attribute Table (RAT) to provide a way to associate attribute information for individual pixel values within the raster, to create styles as well as to provide a richer GetFeatureInfo output.

      For more information see the user guide.

      We’d like to thank Andrea Aime (GeoSolutions) for the development and NOAA for sponsoring.

      Graticules for WMS maps

      The graticules community module, developed as part of GEOS-11216, provides a datastore generating graticules for WMS maps, along with a rendering transformation that can be used to label them. The module can be used to draw a graticule in WMS maps, as well as to download them as part of WFS (or in combination with the WPS download module).

      We’d like to thank Ian Turton for development and GeoSolutions for sponsoring the work.

      GeoServer monitor Kafka storage

      The monitoring Kafka storage module, developed as part of GEOS-11150, allows storing the requests captured by the monitoring extension into a Kafka topic.

      We’d like to thank Simon Hofer for sharing his work with the community. To learn more about the module, how to install and use it, see the user-guide.

      JWT Headers

      The JWT headers module has been developed as part of GEOS-11317.

      The module is a new authentication filter that can read JWT Headers, as well as general JSON payloads and simple strings, to identify a user, as well as to extract their roles. The combination of Apache mod_auth_openidc with geoserver-jwt-headers-plugin provides an alternative to using the geoserver-sec-oauth2-openid-connect-plugin plugin.

      We’d like to thank David Blasby (GeoCat) for this work on this module.

      Developer Updates ResourceStore / Paths API Change

      Developers should keep in mind some important maintenance work performed by Niels Charlier on the use absolute and relative paths in the ResourceStore. See the Developers Guide for more information.

      This does not affect end users.

      Experimental Java 21 support

      GeoServer, along with GeoTools and GeoWebCache, are now tested to build and pass tests with Java 21.

      This is not yet an endorsement to run GeoServer in production with Java 21. We are looking ahead at the 2024 roadmap, and are making sure the basics are covered for the newer Java releases.

      Full Release notes

      New Feature:

      • GEOS-11225 [AuthKey] AuthKey synchronize the user/group automatically

      MapML:

      • GEOS-10438 ENTITY_RESOLUTION_ALLOWLIST property not parsing empty setting
      • GEOS-11207 Refactor MapML MVC controller as GetMap-based operation with standard parameter format
      • GEOS-11221 mkdocs preflight rst fixes
      • GEOS-11289 Enable Spring Security Stric [HttpFirewall] by default
      • GEOS-11297 Escape WMS GetFeatureInfo HTML output by default
      • GEOS-11300 Centralize access to static web files

      Improvement:

      • GEOS-11306 Java 17 does not support GetFeature lazy JDBC count(*)
      • GEOS-11130 Sort parent role dropdown in Add a new role
      • GEOS-11142 Add mime type mapping for yaml files
      • GEOS-11148 Update response headers for the Resources REST API
      • GEOS-11149 Update response headers for the Style Publisher
      • GEOS-11152 Improve handling special characters in the Simple SVG Renderer
      • GEOS-11153 Improve handling special characters in the WMS OpenLayers Format
      • GEOS-11155 Add the X-Content-Type-Options header
      • GEOS-11173 Default to using [HttpOnly] session cookies
      • GEOS-11176 Add validation to file wrapper resource paths
      • GEOS-11213 Improve REST external upload method unzipping
      • GEOS-11222 Include Conformance Class for “Search” from OGC API - Features Part 5 proposal
      • GEOS-11226 Enable JTS OverlayNG by default
      • GEOS-11246 Schemaless plugin performance for WFS
      • GEOS-11247 Avoid HTML annotations special status in APIBodyProcessor
      • GEOS-11248 Move version header handling from APIBodyMethodProcessor to APIDispatcher
      • GEOS-11260 JNDI tutorial uses outdated syntax
      • GEOS-11288 Improve input validation in ClasspathPublisher
      • GEOS-11289 Enable Spring Security Stric [HttpFirewall] by default
      • GEOS-11298 When a Raster Attribute Table is available, expose its attributes in GetFeatureInfo
      • GEOS-11327 Add warning about using embedded data directories
      • GEOS-11334 Update MapML viewer to release 0.13.1

      Bug:

      • GEOS-11050 jdbc-store broken by changes to Paths.names
      • GEOS-11051 Env parametrization does not save correctly in AuthKey extension
      • GEOS-11145 The GUI “wait spinner” is not visible any longer
      • GEOS-11182 Avoid legends with duplicated entries
      • GEOS-11187 Configuring a raster with NaN as NODATA results in two NaN in the nodata band description
      • GEOS-11190 GeoFence: align log4j2 deps
      • GEOS-11203 WMS GetFeatureInfo bad WKT exception for label-geometry
      • GEOS-11224 Platform independent binary doesn’t start properly with default data directory
      • GEOS-11250 WFS GeoJSON encoder fails with an exception if an infinity number is used in the geometry
      • GEOS-11278 metadata: only selected tab is submitted
      • GEOS-11312 Used memory calculation fix on legend WMS request
      • GEOS-11266 csw-iso: missing fields in summary response
      • GEOS-11312 Inconsistent Memory Units in Legend Image Creation
      • GEOS-11335 A layer in an authority other than EPSG may fail to reload after restart

      Task:

      For the complete list see 2.25.0 release notes.

      Community Updates

      Community module development:

      • GEOS-11305 Add layer information in the models backing STAC
      • GEOS-11146 Fix MBTiles output format test
      • GEOS-11184 ncwms module has a compile dependency on gs-web-core test jar
      • GEOS-11209 Open ID Connect Proof Key of Code Exchange (PKCE)
      • GEOS-11212 OIDC accessToken verification using only JWKs URI
      • GEOS-11219 Upgraded mail and activation libraries for SMTP compatibility
      • GEOS-11293 Improve performance of wps-lontigudinal-profile
      • GEOS-11216 Create a datastore to produce graticules for WMS maps.

      Community modules are shared as source code to encourage collaboration. If a topic being explored is of interest to you, please contact the module developer to offer assistance.

      About GeoServer 2.25 Series

      Additional information on GeoServer 2.25 series:

      Release notes: ( 2.25.0 | 2.25-RC )

    • sur GeoServer Team: GeoServer 2.25.0 Release

      Publié: 19 March 2024, 1:00am CET

      GeoServer 2.25.0 release is now available with downloads (bin, war, windows), along with docs and extensions.

      This is a stable release of GeoServer recommended for production use. GeoServer 2.25.0 is made in conjunction with GeoTools 31.0, and GeoWebCache 1.25.0.

      Thanks to Peter Smythe for making this release. Thanks to Levy Steve, Peter Smythe, Jody Garnett, and Mark Prins for testing the 2.25.0 release.

      Security Considerations

      This release addresses several security vulnerabilities, all of which require admin access.

      • If you have updated to GeoServer 2.24.2 Release or GeoServer 2.23.5 Release you are already patched.
      • If you are working with a commercial support provider that volunteers with the geoserver-security email list they are already informed.

      Vulnerabilities:

      • CVE-2023-51444 Arbitrary file upload vulnerability in REST Coverage Store API (High).

      • CVE-2023-41877 GeoServer log file path traversal vulnerability (High).

      • CVE-2024-23634 Arbitrary file renaming vulnerability in REST Coverage/Data Store API (Moderate).

      • CVE-2024-23643 Stored Cross-Site Scripting (XSS) vulnerability in GWC Seed Form (Moderate).

      • CVE-2024-23821 Stored Cross-Site Scripting (XSS) vulnerability in GWC Demos Page (Moderate).

      • CVE-2024-23819 Stored Cross-Site Scripting (XSS) vulnerability in MapML HTML Page (Moderate).

      • CVE-2024-23818 Stored Cross-Site Scripting (XSS) vulnerability in WMS OpenLayers Format (Moderate).

      • CVE-2024-23642 Stored Cross-Site Scripting (XSS) vulnerability in Simple SVG Renderer (Moderate).

      • CVE-2024-23640 Stored Cross-Site Scripting (XSS) vulnerability in Style Publisher (Moderate).

      • CVE-2023-51445 Stored Cross-Site Scripting (XSS) vulnerability in REST Resources API (Moderate).

      We would like to thank everyone who contributed to reporting, verifying and fixing the above vulnerabilities (see each CVE for appropriate credits). A special thank you to Steve Ikeoka for reporting most of the issues and doing the majority of the actual fixes.

      The use of the CVE system allows the GeoServer team to reach a wider audience than blog posts. See the project security policy for more information on how security vulnerabilities are managed.

      Upgrade Notes

      We have a number of configuration changes when updating an existing system:

      • The longstanding ENTITY_RESOLUTION_ALLOWLIST setting has been recommended as a way to control the locations available for external entity resolution when parsing XML documents and requests.

        The default has changed from * (allowing any location) to allowing the recommended www.w3.org, schemas.opengis.net, www.opengis.net locations used for OGC Web Services, along with the inspire.ec.europa.eu/schemas location used by our friends in Europe.

      • The FreeMarker Template HTML Auto-escaping is now enabled by default.

      • The spring security firewall is now enabled by default.

      • A new configuration setting is available to limit content served from the geoserver/www folder.

        If you have not met the www folder before it is used to share content, and there is a tutorial serving static files.

      • We do add recommendations to production considerations over time, if you have not checked that page in a while please review.

      Thanks to Steve Ikeoka and Jody Garnett for these improvements.

      JTS fast polygon intersection enabled by default

      The JTS Next Generation polygon intersection algorithm has been enabled by default, which will improve performance of a number of operations, including WPS processes and the vector tiles generation. We deem the functionality well tested enough that it should be opened to the majority of users, even if it’s still possible to turn it off by adding the -Djts.overlay=old.

      MapML Extension

      The MapML extension is receiving a number of updates and improvements, with more to come in the following months. It’s now possible to declare “Tiled CRS” as the CRS for a layer, with the implication not just of the CRS, but also of the gridset that will be used by the MapML viewer:

      This portion builds on top of the work done months ago to support astronomical CRSs, which allows GeoServer to support multiple CRS authorities.

      The MapML preview links are now using the new MapML output format, while the old dedicated REST controller has been removed. This allows for better integration of the MapML format in the GeoServer ecosystem. The MapML viewer has also been updated to the latest version:

      Thanks to Joseph Miller and Andrea Aime (GeoSolutions) for this work, and Natural Resources Canada for sponsoring it.

      Community Module Updates

      Much of the new activity in GeoServer starts as a community module. We’d like to remind you that these modules are not yet supported, and invite you to join the effort by participating in their development, as well as testing them and providing feedback.

      Raster Attribute Table community module

      Developed as part of GEOS-11175, the Raster Attribute Table community module uses the GDAL Raster Attribute Table (RAT) to provide a way to associate attribute information for individual pixel values within the raster, to create styles as well as to provide a richer GetFeatureInfo output.

      For more information see the user guide.

      We’d like to thank Andrea Aime (GeoSolutions) for the development and NOAA for sponsoring.

      Graticules for WMS maps

      The graticules community module, developed as part of GEOS-11216, provides a datastore generating graticules for WMS maps, along with a rendering transformation that can be used to label them. The module can be used to draw a graticule in WMS maps, as well as to download them as part of WFS (or in combination with the WPS download module).

      We’d like to thank Ian Turton for development and GeoSolutions for sponsoring the work.

      GeoServer monitor Kafka storage

      The monitoring Kafka storage module, developed as part of GEOS-11150, allows storing the requests captured by the monitoring extension into a Kafka topic.

      We’d like to thank Simon Hofer for sharing his work with the community. To learn more about the module, how to install and use it, see the user-guide.

      JWT Headers

      The JWT headers module has been developed as part of GEOS-11317.

      The module is a new authentication filter that can read JWT Headers, as well as general JSON payloads and simple strings, to identify a user, as well as to extract their roles. The combination of Apache mod_auth_openidc with geoserver-jwt-headers-plugin provides an alternative to using the geoserver-sec-oauth2-openid-connect-plugin plugin.

      We’d like to thank David Blasby (GeoCat) for this work on this module.

      Developer Updates ResourceStore / Paths API Change

      Developers should keep in mind some important maintenance work performed by Niels Charlier on the use absolute and relative paths in the ResourceStore. See the Developers Guide for more information.

      This does not affect end users.

      Experimental Java 21 support

      GeoServer, along with GeoTools and GeoWebCache, are now tested to build and pass tests with Java 21.

      This is not yet an endorsement to run GeoServer in production with Java 21. We are looking ahead at the 2024 roadmap, and are making sure the basics are covered for the newer Java releases.

      Full Release notes

      New Feature:

      • GEOS-11225 [AuthKey] AuthKey synchronize the user/group automatically

      MapML:

      • GEOS-10438 ENTITY_RESOLUTION_ALLOWLIST property not parsing empty setting
      • GEOS-11207 Refactor MapML MVC controller as GetMap-based operation with standard parameter format
      • GEOS-11221 mkdocs preflight rst fixes
      • GEOS-11289 Enable Spring Security Stric [HttpFirewall] by default
      • GEOS-11297 Escape WMS GetFeatureInfo HTML output by default
      • GEOS-11300 Centralize access to static web files

      Improvement:

      • GEOS-11130 Sort parent role dropdown in Add a new role
      • GEOS-11142 Add mime type mapping for yaml files
      • GEOS-11148 Update response headers for the Resources REST API
      • GEOS-11149 Update response headers for the Style Publisher
      • GEOS-11152 Improve handling special characters in the Simple SVG Renderer
      • GEOS-11153 Improve handling special characters in the WMS OpenLayers Format
      • GEOS-11155 Add the X-Content-Type-Options header
      • GEOS-11173 Default to using [HttpOnly] session cookies
      • GEOS-11176 Add validation to file wrapper resource paths
      • GEOS-11213 Improve REST external upload method unzipping
      • GEOS-11222 Include Conformance Class for “Search” from OGC API - Features Part 5 proposal
      • GEOS-11226 Enable JTS OverlayNG by default
      • GEOS-11246 Schemaless plugin performance for WFS
      • GEOS-11247 Avoid HTML annotations special status in APIBodyProcessor
      • GEOS-11248 Move version header handling from APIBodyMethodProcessor to APIDispatcher
      • GEOS-11260 JNDI tutorial uses outdated syntax
      • GEOS-11288 Improve input validation in ClasspathPublisher
      • GEOS-11289 Enable Spring Security Stric [HttpFirewall] by default
      • GEOS-11298 When a Raster Attribute Table is available, expose its attributes in GetFeatureInfo
      • GEOS-11327 Add warning about using embedded data directories
      • GEOS-11334 Update MapML viewer to release 0.13.1

      Bug:

      • GEOS-11050 jdbc-store broken by changes to Paths.names
      • GEOS-11051 Env parametrization does not save correctly in AuthKey extension
      • GEOS-11145 The GUI “wait spinner” is not visible any longer
      • GEOS-11182 Avoid legends with duplicated entries
      • GEOS-11187 Configuring a raster with NaN as NODATA results in two NaN in the nodata band description
      • GEOS-11190 GeoFence: align log4j2 deps
      • GEOS-11203 WMS GetFeatureInfo bad WKT exception for label-geometry
      • GEOS-11224 Platform independent binary doesn’t start properly with default data directory
      • GEOS-11250 WFS GeoJSON encoder fails with an exception if an infinity number is used in the geometry
      • GEOS-11278 metadata: only selected tab is submitted
      • GEOS-11312 Used memory calculation fix on legend WMS request
      • GEOS-11266 csw-iso: missing fields in summary response
      • GEOS-11312 Inconsistent Memory Units in Legend Image Creation
      • GEOS-11335 A layer in an authority other than EPSG may fail to reload after restart

      Task:

      For the complete list see 2.25.0 release notes.

      Community Updates

      Community module development:

      • GEOS-11305 Add layer information in the models backing STAC
      • GEOS-11146 Fix MBTiles output format test
      • GEOS-11184 ncwms module has a compile dependency on gs-web-core test jar
      • GEOS-11209 Open ID Connect Proof Key of Code Exchange (PKCE)
      • GEOS-11212 OIDC accessToken verification using only JWKs URI
      • GEOS-11219 Upgraded mail and activation libraries for SMTP compatibility
      • GEOS-11293 Improve performance of wps-lontigudinal-profile
      • GEOS-11216 Create a datastore to produce graticules for WMS maps.

      Community modules are shared as source code to encourage collaboration. If a topic being explored is of interest to you, please contact the module developer to offer assistance.

      About GeoServer 2.25 Series

      Additional information on GeoServer 2.25 series:

      Release notes: ( 2.25.0 | 2.25-RC )

    • sur Free and Open Source GIS Ramblings: Getting started with pygeoapi processes

      Publié: 18 March 2024, 8:16pm CET

      Today’s post is a quick introduction to pygeoapi, a Python server implementation of the OGC API suite of standards. OGC API provides many different standards but I’m particularly interested in OGC API – Processes which standardizes geospatial data processing functionality. pygeoapi implements this standard by providing a plugin architecture, thereby allowing developers to implement custom processing workflows in Python.

      I’ll provide instructions for setting up and running pygeoapi on Windows using Powershell. The official docs show how to do this on Linux systems. The pygeoapi homepage prominently features instructions for installing the dev version. For first experiments, however, I’d recommend using a release version instead. So that’s what we’ll do here.

      As a first step, lets install the latest release (0.16.1 at the time of writing) from conda-forge:

      conda create -n pygeoapi python=3.10
      conda activate pygeoapi
      mamba install -c conda-forge pygeoapi

      Next, we’ll clone the GitHub repo to get the example config and datasets:

      cd C:\Users\anita\Documents\GitHub\
      git clone [https:]
      cd pygeoapi\

      To finish the setup, we need some configurations:

      cp pygeoapi-config.yml example-config.yml  
      # There is a known issue in pygeoapi 0.16.1: [https:]
      # To fix it, edit the example-config.yml: uncomment the TinyDB option in the server settings (lines 51-54)

      $Env:PYGEOAPI_CONFIG = "F:/Documents/GitHub/pygeoapi/example-config.yml"
      $Env:PYGEOAPI_OPENAPI = "F:/Documents/GitHub/pygeoapi/example-openapi.yml"
      pygeoapi openapi generate $Env:PYGEOAPI_CONFIG --output-file $Env:PYGEOAPI_OPENAPI

      Now we can start the server:

      pygeoapi serve

      And once the server is running, we can send requests, e.g. the list of processes:

      curl.exe [localhost:5000] 

      And, of course, execute the example “hello-world” process:

      curl.exe --% -X POST [localhost:5000] -H "Content-Type: application/json" -d "{\"inputs\":{\"name\": \"hi there\"}}"

      As you can see, writing JSON content for curl is a pain. Luckily, pyopenapi comes with a nice web GUI, including Swagger UI for playing with all the functionality, including the hello-world process:

      It’s not really a geospatial hello-world example, but it’s a first step.

      Finally, I wan’t to leave you with a teaser since there are more interesting things going on in this space, including work on OGC API – Moving Features as shared by the pygeoapi team recently:

      So, stay tuned.

    • sur GRASS GIS: 2024 GRASS GIS Community meeting in Prague!

      Publié: 18 March 2024, 8:12pm CET
      The GRASS GIS team announces the annual Community Meeting!! The GRASS GIS Community Meeting will take place from June 14 to 19, 2024, at the NC State European Center in Prague, Czech Republic. Community meetings are great opportunities to support the development of GRASS GIS! Join us Write code Write documentation Translation Website design and content Integrations with other software (QGIS, GDAL, R, etc.) Plan for the future The community meeting is a get-together where supporters, contributors, power users and developers make decisions and tackle larger problems related to the project, discuss and fix bugs, draw the project roadmap and work on new features.
    • sur Fernando Quadro: Geoprocessamento no Agronegócio

      Publié: 18 March 2024, 1:00pm CET

      O geoprocessamento na agricultura reúne tecnologias e métodos essenciais para coletar, tratar e analisar diversos dados sobre a produção agropecuária.

      Com isso o produtor pode ter acesso a imagens e mapas precisos, além de poder traçar planejamentos mais eficientes. Assim consegue aumentar a produtividade e se tornar mais competitivo.

      Por isso, o investimento em tecnologias de geoprocessamento na agricultura é considerado fundamental para o produtor que quer melhorar seus resultados.

      Mas, como isso pode ajudar o agricultor na prática? Vamos citar abaixo alguns benefícios:

      ? Acesso a informações mais detalhadas sobre cada talhão
      ? Identificação de tendências de produtividade
      ? Permitir o trabalho com parceiros de negócio
      ? Identificação de pragas e doenças
      ? Controle de plantas daninhas

      O uso do WebGIS vem sendo uma tendência que cresce a cada dia nesse setor. Sua possibilidade de interação e disponibilização de informações para o usuário é um elemento fundamental que faz com que este tipo de sistema de informação geográfica conectado à internet seja uma importante vertente para o futuro das geotecnologias.

      Fonte: webgis.tech
      Instagram: [https:]]
      LinkedIn: [https:]]

    • sur Mappery: No Cigars!

      Publié: 18 March 2024, 11:00am CET

      Reinder sent this pic, he said “In Amsterdam, they named the Balthasar Floriszstraat after a 17th C. mapmaker. In this street I ran into a rather peculiar world map. The caption says ‘No Cigars'”

      MapsintheWild No Cigars!

    • sur Camptocamp: Camptocamp Heads to FOSSGIS 2024

      Publié: 18 March 2024, 1:00am CET
      Pièce jointe: [télécharger]
      The Camptocamp team is gearing up for another great experience at the FOSSGIS conference.
    • sur Mappery: Rishikesh Hostel

      Publié: 17 March 2024, 11:00am CET

      Elizabeth is back in Rishikesh and sent thios pic from the lobby of her hostel

      MapsintheWild Rishikesh Hostel

    • sur Ecodiv.earth: Download AHN data in GRASS GIS

      Publié: 17 March 2024, 12:00am CET

      The AHN

      The ‘Actueel Hoogtebestand Nederland’ (AHN, version 4) is the latest digital elevation model (DEM) of the Netherlands. It includes a digital terrain model (DTM) and a digital surface model (DSM). The former represents the bare ground surface without any features such as buildings, vegetation, or other structures, while the latter includes these features.

      Both layers can be downloaded at 0.5 or 5 meter resolution in tiles of 6.5 by 5 km. Downloading one tile, which is approximately 500 MB, is doable. However, if you need more tiles, the arguably easier way is to download the data using the WCS (Web Coverage Service) protocol, which allows you to choose what part of the available data to download based on spatial constraints.

      Import the DTM

      This example shows the steps to download the 0.5 meter resolutiom DTM for the Land van Cuijk, a municipality in which our research group Climate-robust Landscapes is carrying out several studies. The first step is to get the r.in.wcs addon. With this addon, you can use the WCS protocol to download data 1 2.

      Install the r.in.wcs addon.

      First step is to import the Python libraries. Note, this will not be repeated with the next scripts.

      import grass.script as gs

      Now, you can install the r.in.wcs addon using the g.extension function.

      gs.run_command("g.extension", extension="r.in.wcs")

      You need the g.extension function to install addons. In the main menu, go to Settings > Addons extension > Install extension from addon. Alternatively, type in g.extension on the command line. This will open the window shown below.

      The g.extension function, started from the command line.

      The g.extension function, started from the command line.

      The r.in.wcs addon imports the raster layers using the resolution and extent of the current region. A crucial step, therefore, is to set the extent and resolution of the region so that it aligns perfectly with that of the AHN layer.

      Set the extent and resolution to match those of the AHN.

      gs.run_command("g.region",
          n=618750, 
          s=306250, 
          w=10000, 
          e=280000, 
          res=0.5)

      Type in g.region on the command line or in the console. You can also find the function under main menu > Settings > Computational region > set region. This opens the following screen:

      Set the bounds

      Set the bounds

      Set the resolution

      Set the resolution

      With this settings, you align the region with the AHN data set.

      Next, download the administrative boundaries of the Dutch municipalities, and extract the boundaries of the “Land van Cuijk”.

      Download layer with administrative boundaries of the neighborhood.

      gs.run_command(
          "v.in.wfs",
          url="https://service.pdok.nl/cbs/wijkenbuurten/2022/wfs/v1_0?",
          output="municipalities",
          name="gemeenten",
      )

      Next, extract the boundaries of the municipality of “Land van Cuijk”

      gs.run_command(
          "v.extract",
          input="municipalities",
          where="naam = 'Land van Cuijk'",
          output="LandvanCuijk",
      )

      Type in v.in.wfs on the command line or in the console. You can also find the function under main menu > File > Import vector data. This opens the following screen (you need to fill in parameters in two tabs):

      Download the vector layer with the municipality boundaries. Define the base URL and the name of the output layer.

      Download the vector layer with the municipality boundaries. Define the base URL and the name of the output layer.

      Download the vector layer with the municipality boundaries. Fill in the name of the WFS layer to download.

      Download the vector layer with the municipality boundaries. Fill in the name of the WFS layer to download.

      Extract the boundaries of the municipality of Land van Cuijk. Select the name of the vector layer with municipalities and give the name of the output layer.

      Extract the boundaries of the municipality of Land van Cuijk. Select the name of the vector layer with municipalities and give the name of the output layer.

      Extract the boundaries of the municipality of Land van Cuijk. Fill in the query, which defines which features you want to select and save. Tip: Use the convenient query builder.

      Extract the boundaries of the municipality of Land van Cuijk. Fill in the query, which defines which features you want to select and save. Tip: Use the convenient query builder.

      Now, you can set the region to match the extent of the vector layer, while taking care that the region aligns perfectly with the DTM.

      Set the region to the correct extent and resolution.

      First, get the north, south, east, and west coordinates of the bounding box of the vector layer and of the region’s extent.

      region_tiles = gs.parse_command("g.region", 
          flags="gu")
      region_munic = gs.parse_command("v.info", 
          flags="g", 
          map="LandvanCuijk")

      Now, adjust the northern boundary of the bounding box of the vector layer so that it aligns with the AHN tiles.

      from math import floor
      
      n = float(region_tiles["n"]) - floor(
          (float(region_tiles["n"]) - float(region_munic["north"]))
      )
      s = float(region_tiles["s"]) + floor(
          (float(region_munic["south"]) - float(region_tiles["s"]))
      )
      w = float(region_tiles["w"]) + floor(
          (float(region_munic["west"]) - float(region_tiles["w"]))
      )
      e = float(region_tiles["e"]) - floor(
          (float(region_tiles["e"]) - float(region_munic["east"]))
      )
      gs.run_command("g.region", n=n, s=s, e=e, w=w)

      And finally, import the DTM layer. Warming, this may take some time.

      Import the DTM for the defined region.

      gs.run_command(
          "r.in.wcs",
          url="https://service.pdok.nl/rws/ahn/wcs/v1_0?",
          coverage="dtm_05m",
          urlparams="GetMetadata",
          output="dtm_05",
      )

      The maximum floating-point value (3.4028235e+38) is not recognized as a NULL value. So use the setnull parameter in the r.null function to specify that this value has to be set to NULL.

      gs.run_command("r.null", 
          map="dtm_05", 
          setnull=3.4028235e+38)

      If this does not work (it didn’t for me), you can use the r.mapcalc function to set this value to NULL.

      gs.run_command("r.mapcalc", 
          expression="dtm_05m = if(dtm_05m > 1000,null(),dtm_05m)",
          overwrite=True)

      Fill in the WCS service URL

      Fill in the WCS service URL

      Get the overage name to request

      Get the overage name to request

      To make it a bit easier, I combined steps 2, 4, and 5 in a new addon r.in.ahn. It is a bit rough around the edges (it only works in a Location with CRS RD New), but it serves its goal. I have submitted it to the GRASS GIS addon repository, so I hope it will be available in a week or so.

      Footnotes
      1. You are expected to be familiar with GRASS GIS and the concept of region used in GRASS GIS. If you are new to GRASS GIS, you are warmly recommended to first check out the GRASS GIS Quickstart and the explanation about the GRASS GIS database.??

      2. Downloading the DTM for the whole municipality will take a while. If you want to speed up things, you can work with a smaller area by using your own vector data.??

    • sur Mappery: Contour Insoles for Hill Climbers

      Publié: 16 March 2024, 11:00am CET

      Walter Schwartz said “Every Wednesday my hiking group covers about 15 km of distance and 500 meters of elevation, almost always “in the wild.” As one of us changed into hiking shoes I spotted this insole. It’s a kind of map that has seen plenty of wild!”

      I think we may have had a similar insole picture in the past but this is such a great pic even if it is a repeat.

      MapsintheWild Contour Insoles for Hill Climbers

    • sur Mappery: Cape Geography Wine

      Publié: 15 March 2024, 11:00am CET

      Rollo was drinking this tasty South African Malbec from the Cape Geography Co and was inspired to send us a pic before he finished the bottle!

      MapsintheWild Cape Geography Wine

    • sur GRASS GIS: Cite GRASS with DOI

      Publié: 15 March 2024, 8:42am CET
      Cite GRASS GIS and your geospatial data in scientific works - now with Digital Object Identifiers (DOI)! The GRASS GIS project celebrated its 40th birthday last year. Over the decades, GRASS GIS has spread around the globe and has enabled generations of researchers to conduct geospatial research in many fields of science. As a new feature, reflecting the current change towards data-driven science and the paradigms of Open Science (including Open Source) and the FAIR principles (Findable, Accessible, Interoperable, Reusable), GRASS GIS software can now be referenced by Digital Object Identifiers (DOI).
    • sur GeoCat: GeoCat is the proud sponsor of the 128th OGC Member Meeting in Delft, the Netherlands

      Publié: 14 March 2024, 3:02pm CET

      GeoCat is happy to announce that we are the proud sponsor of the 128th OGC Member Meeting that takes place in Delft in the Netherlands from March 25th – March 28th, 2024.

      The meeting’s theme is “GEO-BIM for the Built Environment” and there will be a GeoBIM Summit, a special session on Land Admin, a Built Environment Joint Session, a meeting of the Europe Forum, and several SWG and DWG meetings.

      Join us and members of the OGC. We are looking forward to see you all in Delft.

      Read more about the meeting on the OGC website.

      The post GeoCat is the proud sponsor of the 128th OGC Member Meeting in Delft, the Netherlands appeared first on GeoCat bv.

    • sur Fernando Quadro: Raster no PostGIS, vale a pena?

      Publié: 14 March 2024, 1:00pm CET

      Você sabe quais os benefícios e as armadilhas de colocar arquivos rasters em um banco de dados relacional?

      A maioria das pessoas pensa que “colocar em um banco de dados” é uma receita mágica para: desempenho mais rápido, escalabilidade infinita e gerenciamento fácil.

      Se você pensar que o banco de dados está substituindo uma pilha de arquivos CSV, isso provavelmente é verdade.

      Porém quando o banco de dados está substituindo uma coleção de arquivos de imagens GeoTIFF, isso provavelmente é falso. O raster no banco de dados será mais lento, ocupará mais espaço e será muito chato de gerenciar.

      Então, por que fazer isso? Comece com um padrão, “não!”, e então avalie a partir daí.

      Para alguns dados raster não visuais e casos de uso que envolvem o enriquecimento de vetores de fontes raster, ter o raster colocalizado com os vetores no banco de dados pode tornar o trabalho com ele mais conveniente. Porém, ainda será mais lento que o acesso direto e ainda será difícil de gerenciar, mas permite o uso de SQL como uma linguagem de consulta, o que pode oferecer muito mais flexibilidade para explorar o espaço da solução do que um script de acesso a dados criado especificamente para esse fim.

      Fonte: webgis.tech
      Instagram: [https:]]
      LinkedIn: [https:]]

      Gostou desse post? Deixe seu comentário ?

    • sur Mappery: One World

      Publié: 14 March 2024, 11:00am CET

      Mark Iliffe spotted this neat t-shirt in a New York shop. You may need to enlarge the picture to appreciate it.

      I want (L please).

      MapsintheWild One World

    • sur Fernando Quadro: Geoprocessamento na Gestão Rodoviária

      Publié: 13 March 2024, 1:00pm CET

      Quando falamos de Gestão Rodoviária, muito se discute em como aumentar a segurança e na diminuição de acidentes nas rodovias em geral.

      Você sabia que podemos aplicar Geoprocessamento na Gestão Rodoviária para apoio na previsão das condições das rodovias?

      O projeto Vision Zero, por exemplo, é uma iniciativa que tem o objetivo de reduzir a zero as mortes no trânsito, e o SIG e a análise espacial são ferramentas utilizadas para atingir esse objetivo.

      Mas onde o Geoprocessamento entra na prática, e onde ele pode realmente contribuir? Veja:

      ? Prevenção de riscos e acidentes;
      ? Melhorias de acesso;
      ? Mapeamento de estradas inundáveis;
      ? Geotecnologias de detecção remota;
      ? Dados GPS;
      ? Aprendizado de máquina para prever locais de acidentes.

      Fonte: webgis.tech
      Instagram: [https:]]
      LinkedIn: [https:]]

      Você já tinha pensado nessas possibilidades do Geoprocessamento? Conte nos comentários ?

    • sur Mappery: Geo-embellished Vending Machine

      Publié: 13 March 2024, 11:00am CET

      Maarten Pullen sent us this pic of a vending machine that he spotted in Amsterdam.

      If you are puzzled by this one, Maarten explained “The shot was taken in Amsterdam, at the Amsterdam School of Real Estate. They probably want to show some of their local identity to all the business people visiting there.”

      MapsintheWild Geo-embellished Vending Machine

    • sur Stefano Costa: Africa. Le collezioni dimenticate

      Publié: 13 March 2024, 9:12am CET

      È finita a Torino la mostra “Africa. Le collezioni dimenticate” allestita nelle sale di Palazzo Chiablese. Sono riuscito a visitare la mostra pochi giorni fa. Mi è piaciuta molto.

      La mostra è stata organizzata dai Musei Reali di Torino, dalla Direzione Regionale Musei Piemonte e dal Museo di Antropologia ed Etnografia dell’Università di Torino, ed è una intensa passeggiata nel voyeurismo e collezionismo italiano durante il lungo periodo della scoperta, conquista e razzia dell’Africa, fino agli orrori della guerra in Etiopia. Il percorso si snoda sui passi di molti personaggi, tutti uomini italiani: esploratori, ingegneri al servizio dell’espansione belga nel Congo, affaristi, membri della casa reale. Tutti accomunati dall’attività coloniale nelle sue diverse fasi storiche, e tutti prontamente rimossi dalla memoria collettiva al termine della seconda guerra mondiale. Altrettanto dimenticate le collezioni di oggetti africani che questi personaggi hanno fatto confluire a vario titolo nei musei italiani e in questo caso piemontesi.

      Ad accompagnare la visita le installazioni di Bekele Mekonnen, in particolare il “site specific” dal titolo “The smoking table” ma anche le clip sonore lungo il percorso.

      La mostra ha agitato tantissimo i fascisti dichiarati e quelli non dichiarati perché non usa giri di parole, perché chiama il colonialismo e il razzismo con il loro nome, perché mette le voci africane sullo stesso piano di quelle italiane. Il ricco programma pubblico ha coinvolto molte persone, anche originarie dell’Africa.

      Parte dell'installazione “The smoking table” con scritte di colori diversi. In rosso sotto un braccio muscoloso: conspiracy, betrayal, greed, injustice, deception. In azzurro sotto due mani strette: honesty, fraternity, generosity, impartiality"Parte dell’installazione “The smoking table” con scritte di colori diversi. In rosso sotto un braccio muscoloso: conspiracy, betrayal, greed, injustice, deception. In azzurro sotto due mani strette: honesty, fraternity, generosity, impartiality”

      Le polemiche, tutte politiche e ben poco culturali, suonano come un brusio fastidioso se consideriamo il lavoro lunghissimo di preparazione della mostra, la quantità di musei con collezioni africane in tutto il Piemonte, la ricchezza del catalogo che affronta in dettaglio molte delle questioni sollevate ad arte, ad esempio il salario pagato ai lavoratori della Società Agricola Italo-Somala, veri “forzati della terra” anche nelle parole degli italiani dell’epoca.

      Il paradosso sta nel fatto che questa mostra è molto blanda, se la inquadriamo nella cornice europea e occidentale bianca dei musei di antropologia e archeologia: dalla complessa operazione di continuo adattamento del Musée du Quai Branly di Parigi, al documentario Dahomey di Mati Diop che ha vinto l’Orso d’oro del Festival di Berlino pochi giorni fa, per finire al lavoro avviato nel 2016 da quello che oggi si chiama Museo delle Civiltà. È molto eloquente l’intervento del direttore Andrea Villani a un convegno di poche settimane fa, che potete rivedere su YouTube. Ho apprezzato questo passaggio:

      Quello che allora aveva un senso oggi può non solo non avere un senso, ma può anche essere tossico. [..] La storia non si cambia. I musei non cambiano la storia, ma possono raccontarla per intero, accettando di mettere in crisi quello che è venuto prima

      E poiché in Italia non siamo solo colonizzatori ma anche colonizzati e depredati, è bene sapere che alcuni musei degli USA sono seriamente alle prese con la provenienza delle proprie collezioni.

    • sur Fernando Quadro: Última chance para se inscrever no Curso de GeoNode: garanta a sua vaga!

      Publié: 12 March 2024, 3:59pm CET

      NÃO FIQUE DE FORA!

      ??Curso de GeoNode: Última Semana de inscrições!???

      Aprenda a montar a sua própria Infraestrutura de Dados Espaciais com o GeoNode, uma plataforma para gestão e publicação de dados geoespaciais que reúne projetos open-source maduros e estáveis sob uma interface consistente e fácil de usar, permitindo que os usuários, compartilhem seus dados de forma rápida e facil.

      Este novo curso visa capacitar os profissionais no uso eficiente da plataforma GeoNode, e tem como objetivos:

      ? Familiarizar os participantes com os conceitos fundamentais do Geonode e suas capacidades.
      ? Explorar o funcionamento de servidores de mapas e seus benefícios.
      ? Apresentar os padrões de dados do Open Geospatial Consortium (OGC), como Web Map Service (WMS) e Web Feature Service (WFS), para interoperabilidade geoespacial.
      ? Demonstrar a publicação eficiente de dados no Geonode usando views de bancos de dados geográficos.
      ? Ensinar a integração do Geonode com o QGIS através de plugins.

      ?? Quer saber mais?

      O Curso é oferecido na modalidade EAD Ao Vivo, com uma carga horária de 18 horas divididos em 6 encontros. Porém, essas aulas são gravadas e ficam disponíveis ao aluno por 12 meses em nosso portal do aluno.

      Então, se por acaso você não puder comparecer em alguma das aulas ao vivo, não se preocupe, você poderá rever a aula gravada a qualquer momento.

      ??Ficou interessado?

      Acesse: [https:]]
      WhatsApp: [https:]]

    • sur Markus Neteler: GRASS GIS 8.3.2 released

      Publié: 12 March 2024, 11:32am CET

      The GRASS GIS 8.3.2 maintenance release contains more than 30 changes compared to 8.3.1. This new patch release includes important fixes and improvements to the GRASS GIS modules and the graphical user interface (GUI), making it even more stable for daily work.

      The post GRASS GIS 8.3.2 released appeared first on Markus Neteler Consulting.

    • sur Mappery: Occular Cartographic Study

      Publié: 12 March 2024, 11:00am CET

      Eric Lund said “Came across this eye-catching map at my eye doctor’s office this week and had to share it with you.” Well I am glad he did share it, what a cracking map in the wild! Here’s a bit more detail.

      This piece was designed by Tad Bradley, the accompanying description says

      ‘Snellen’ and “Tumbling E’ eye charts: Ocular Cartographic Study

      Although trained and currently practicing architecture at SMA Architecture + Design, Tad Bradley remains an artist and educator. He is continually fascinated with nature and the human body. The complexities within and between these are continually inspirational to investigate through art.
      The scale of the eye charts is inspired by the art movement of hyperrealism. In reproducing the eye charts at such a large scale, they begin to hold a greater weight within space, possibly reminding us the value of our eyesight and the incredible value this sense and these organs bring to our lives.
      The maps and text you see were originally printed in 1906. The series of oversized manuscripts, which focused on separate geographic regions, were titled ‘Geologic Atlas of the United States’, edited by S.J. Kubel. The maps here, in the waiting area, have been scanned and reprinted on metal panels in order to protect them from UV degradation from solar exposure.
      Eye charts have been the tool opticians have used for many years to assist in initially analyzing visual acuity. Exploring a tool within art invites a different awareness of not only the object but the process of how it is used. These eye charts were created for specific groups of people. The Tumbling E chart is used for those unable to read or never learned the Latin alphabet. The shapes and their direction are universal to all. The Snellen eye chart contains eleven rows of diminishing Latin letters to assess vision.
      Each 11? x 11? plywood panel has two layers of hand-cut paper [1906] to create visual contrast for viewers.
      “I chose the text pages from the Atlas to expose the Tumbling E chart. I was interested in exploring the contrast of the text-heavy pages and their visual relationship to the simplified ‘E’ shapes. The maps, on the other hand, are filled with high-contrast colors and patterns, more easily revealing the letters of the Snellen eye chart.
      One of my goals in creating this work was to analyze how we as humans experience the world, interact with one another, and stand alone as individuals. I hope that my work creates curiosity, questions and conversation”.

      MapsintheWild Occular Cartographic Study

    • sur Fernando Quadro: Por que usar o PostGIS?

      Publié: 11 March 2024, 1:00pm CET

      Talvez você já tenha escutado algumas vezes a frase: “PostGIS é uma extensão espacial do PostgreSQL”.

      Isso não significava que você tivesse ou tenha alguma ideia do que isso significa, e que você sabia o que é o PostgreSQL, quiçá o PostGIS.

      Mas não se preocupe, você não sairá desse post sem saber o que é cada um deles.

      PostGIS é um extensor de banco de dados espacial de código aberto e disponível gratuitamente para o PostgreSQL Database Management System (também conhecido como DBMS). Portanto, PostgreSQL (também conhecido como Postgres) é o banco de dados e PostGIS é como um complemento desse banco de dados.

      Resumidamente, o PostGIS adiciona funções espaciais, como distância, área, união, interseção e tipos de dados de geometria ao PostgreSQL. Os bancos de dados espaciais armazenam e manipulam objetos espaciais como qualquer outro objeto no banco de dados.

      ? E qual a vantagem de utilizá-lo?

      Na prática temos algumas vantagens em utilizá-los, mas a principal é a possibilidade de trabalhar com grandes conjuntos de dados. Não é apenas mais fácil, mas às vezes é quase impossível trabalhar em conjuntos de dados maiores sem um banco de dados.

      ?Você já tentou abrir um arquivo CSV de 2 GB?
      ?Ou tentou fazer algum geoprocessamento para um GeoJSON de 800 mb?
      ?Você sabia que os Shapefiles têm um limite de tamanho?

      É claro que você pode resolver alguns desses problemas usando o Geopackage ou alguns outros formatos de arquivo, mas em geral o PostGIS é a ferramenta ideal para lidar com grandes volumes de dados (geoespaciais).

      Fonte: webgis.tech
      Instagram: [https:]]
      LinkedIn: [https:]]

      E você, já conhecia o PostGIS? Conta nos comentários ?

    • sur Mappery: Indigenous Australia

      Publié: 11 March 2024, 11:00am CET

      Tony Rabin spotted this map of the indigenous peoples of Australia near the Qantas bording gate at LAX

      MapsintheWild Indigenous Australia

    • sur Stefano Costa: In…segnami il silenzio

      Publié: 10 March 2024, 7:08pm CET

      Ieri sera siamo andati al Teatro Gustavo Modena, qui vicino a casa, per uno spettacolo della stagione dedicata all’infanzia. Eravamo con altre famiglie, ci siamo persino fatti un aperitivo casalingo prima di andare, visto che iniziava alle sette e mezza.

      Lo spettacolo si intitola “In…segnami il silenzio” e ha come protagonisti Marcello e Maria. Marcello ci racconta dell’arrivo di Maria nella sua classe, lei non parla e non sente, perché ha le “orecchie rotte”. Maria però sa ascoltare con gli occhi e sa parlare con la danza delle mani, con il viso, con tutto il corpo. Il rapporto tra Marcello e Maria è molto profondo, lui si lascia trasportare e insegnare. In cambio le fa vedere la musica che lei non può sentire, in particolare sulle note di una travolgente “Ça plane pour moi”.

      Lo spettacolo è rivolto ai bambini anche se non è facilissimo, ma tratta in modo fiabesco, senza filtri e un po’ scanzonato il tema della disabilità, che non è solo la sordità di Maria ma anche la “distrazione” di Marcello che la maestra gli rimprovera.

      Ci è piaciuto molto.

      Alla fine un appello della regista Elena Dragonetti per il cessate il fuoco a Gaza è stato accolto da un lungo applauso.

      Locandina dello spettacolo sul sito del Teatro nazionale di Genova

      Plastic Bertrand – Ça plane pour moi

    • sur Mappery: Mappery Featured in The New York Times

      Publié: 10 March 2024, 12:48pm CET

      A few weeks ago I did an interview with Eve Kahn for a piece she was writing for The NewYork Times about what she calls “Cartifacts” which are a subset of Maps in the Wild. Mappery gets a very nice write up of course and I recommend the whole piece to my map loving friends.

      MapsintheWild Mappery Featured in The New York Times

    • sur Mappery: Archer Field

      Publié: 10 March 2024, 11:00am CET

      Marianne Pietersen sent us these pics from her visit to Archer Field.

      “Last year I went to a lecture at Archer Field, Brisbane, about the history of the Dutch military camp there,
      during WW2. In a side room of the airport building was a small amount of photos from those days, including the attached 3 maps of the Field. The exhibition is permanent (for now at least.)    ?”

      Today the spelling has been concatenated to Archerfield but the title pane of the map makes clear that in the past it was Archer Field.

      More info on the history of Archer Field airport

      MapsintheWild Archer Field

    • sur Mappery: Switzerland in 3D Magnificence

      Publié: 9 March 2024, 11:00am CET

      This stunning relief map was sent to us by Scott Simmons who spotted it at the Swiss National Museum in Zurich.

      MapsintheWild Switzerland in 3D Magnificence

    • sur Fernando Quadro: Você conhece o MobilityDB?

      Publié: 8 March 2024, 1:00pm CET

      Dispositivos de rastreamento de localização, como GPS, são hoje amplamente utilizados em smartphones e veículos. Como resultado, os dados de trajetória geoespacial estão atualmente sendo coletados e usados ??em muitos domínios de aplicação. O MobilityDB fornece o suporte de banco de dados necessário para armazenar e consultar esses dados de trajetória geoespacial.

      MobilityDB é implementado como uma extensão do PostgreSQL e PostGIS. Ele implementa tipos de banco de dados persistentes e operações de consultas para gerenciar trajetórias geoespaciais e suas propriedades que variam no tempo.

      Uma trajetória geoespacial é geralmente coletada como uma sequência de pontos de localização e informações de data e hora. Na realidade, porém, o movimento é contínuo. Portanto, o MobilityDB interpola a trilha de movimento entre as informações de entrada. Como tal, a localização e as propriedades do objeto em movimento podem ser consultadas, efetivamente aproximadas, a qualquer momento.

      Embora esta interpolação restaure a continuidade do movimento, ela não corresponde a um aumento no tamanho do armazenamento. Pelo contrário, permite descobrir informações redundantes e removê-las. Assim, apenas as informações onde ocorre uma mudança significativa na velocidade/direção são retidas. Esse processo é chamado de normalização e geralmente resulta em uma redução significativa no tamanho do armazenamento em comparação com os pontos de entrada.

      ? Mas na prática, como funciona esse gerenciamento realizado pela extensão?

      ?Pense em obter a velocidade média de um trem em movimento, sem nenhum código SQL longo, usando uma função e pronto.
      ?Ou em armazenar dados GPS de forma muito compacta em uma única linha/coluna e ser capaz de fazer consultas complexas com muito pouco SQL.

      É essa praticidade que o MobilityDB vai te proporcionar.

      Você já tinha ouvido falar dessa extensão do PostgreSQL/PostGIS? Conte nos comentários ?

      Fonte: webgis.tech
      Instagram: [https:]]
      LinkedIn: [https:]]

    • sur Mappery: Mosaic map of Delft

      Publié: 8 March 2024, 11:00am CET

      Impressive mosiac map of Delft, posted by Hans van der Kwast @hansakwast@fosstodon.org

      MapsintheWild Mosaic map of Delft

    • sur GeoServer Team: How to Publish a GeoTIFF file in GeoServer

      Publié: 8 March 2024, 1:00am CET

      GeoSpatial Techno is a startup focused on geospatial information that is providing e-learning courses to enhance the knowledge of geospatial information users, students, and other startups. The main approach of this startup is providing quality, valid specialized training in the field of geospatial information.

      ( YouTube | LinkedIn | Facebook | Reddit | X )

      Publishing a GeoTIFF file in GeoServer

      In this session, we want to talk about “How to Publish a GeoTIFF file in GeoServer” comprehensively. If you want to access the complete tutorial, simply click on the link.

      Introduction

      The GeoTIFF is a widely used geospatial raster data format, it is composed of a single file containing both the data and the georeferencing information. By default, GeoTIFF will be an option in the Raster Data Sources list when creating a new data store.

      Note. In this blog post, we used GeoServer version 2.20.0.

      Add a GeoTIFF data

      To add a GeoTIFF data in GeoServer, follow these steps:

      • Navigate to Data > Stores page, then click on the Add new Store link.
      • Select the desired workspace from the drop-down menu.
      • Enter the Data Source Name, make sure the Enabled option is checked. If checked, it enables the store. If unchecked (disabled), no data in the GeoTIFF will be served from GeoServer.
      • In the URL under the Connection Parameters, browse to the location of the GeoTIFF file then press the Save button.
      • Now you will be redirected to the New Layer page automatically and to add a layer for an available resource click on the Publish link.
      • Check the Name, Coordinate Reference Systems and the Bounding Boxes fields are properly set and press the Save button.
      Layer Groups

      In Geoserver, a layer group serves as a convenient container for organizing layers and other layer groups in a structured hierarchy. By assigning a single layer to a layer group in WMS requests, the process of making requests is simplified as instead of specifying multiple individual layers, only one layer needs to be indicated. Furthermore, a layer group establishes a set order for the layers within it and enables the specification of alternative styles for the layers, distinct from their default settings.

      Add a Layer Group
      • To create a Layer Groups, navigate to Data > Stores page. Click on Add a new layer group link. The initial fields allow you to configure the name, title, abstract and workspace of the layer group. Enter the Data Source Name and Title.

      • The Enabled checkbox, if disabled, will cause the layer group to just show up at configuration time, while the Advertised checkbox, if unchecked, will make it to not be available in GetCapabilities request and in the layer preview. The behaviour of layer group regarding both checkboxes will not affect the behaviour of any of the layers being grouped, which will follow respectively that specified in the corresponding edit page.

        Note. In the layer group section, Workspace selection is optional.

      • The Bound section contain the data BoundingBox of this layer group in the native coordinate reference system. The input can be done manually or automatically with the help of Generate Bounds.

        Note. By default, a layer group is queryable when at least a child layer is queryable. Uncheck Queryable box if you want to explicitly indicate that it is not queryable independently of how the child layers are configured.

      • To add more layers to the Layer Group list, you can press the Add Layer… button at the top of the table. From the popup window, select the layer to be added by clicking the layer name.

      • A layer group can be added by pressing the Add Layer Group… button at the top of the table. From the list of layer groups, select the appropriate layer group’s name.

      • A style group is a style that has one or more Named Layers which reference layers that exist in the catalog. Style groups can be added to Layer Groups as an alternative way of defining a collection of styled layers. To add it, press the Add Style Group… button at the top of the table and from the popup window, select the style group to be added by clicking its name.

      • Press the generate bounds button to have geoserver compute the group bounds from the layers inside of it.

        Note. A layer group can contain layers with dissimilar bounds and projections. GeoServer automatically reprojects all layers to the projection of the layer group.

      • When a layer group is processed, the layers are rendered in the order provided, so the publishable elements at the bottom of list will be rendered last and will show on top of the others. A publishable element can be positioned higher or lower on this list by pressing the green up or down arrows, respectively, or can be simply dragged in the target position.

      • Metadata links allows linking to external documents that describe the data of layer group. Keywords make possible to associate a layer group with some keywords that will be used to assist catalog searching.

      • Press Save button to create the new layer group.

      Preview a Layer Group

      So in order to preview the created layer, navigate to the Data > Layer Preview page and enter the name of your layer group in the search box, then press Enter button. Click on the OpenLayers link for a given layer and the view will display. An OpenLayers map loads in a new page and displays the group layer with the default styles. You can use the Preview Map to zoom and pan around the dataset, as well as display the attributes of features by click on each feature.

      Using WMS layers in QGIS

      To display a WMS layer in QGIS software, follow these steps:

      • Open GQIS and navigate to Layer > Add Layer > Add WMS/WMTS Layer.
      • To create a new service connection, from the Layers tab, press New button.
      • Name your connection from the Connection Details. Next, from the URL textbox, you need to access a WMS layer as HTTP address of Web Map Server. In this case, name the connection as My Project and the URL as http://localhost:8080/geoserver/project/wms and press OK. Note that the “project” refers to the workspace defined in Geoserver.
      • Press the Connect button to fetch the list of layers available, then press Add button and Close.
      • Now, you will see the layer loaded in the QGIS canvas. You can zoom/pan around just like any other layer. The way WMS service works is that every time you zoom/pan, it sends your viewport coordinates to the server and the server creates an image for that viewport and return it to the client. So there will be some delay before you see the image for the area after you have zoomed in. Also, since the data you see is an image, there is no way to query for attributes like in a regular vector/imagery layer.
    • sur Camptocamp: OSGeo - OGC - ASF Code Sprint in Évora, Portugal

      Publié: 8 March 2024, 1:00am CET
      Pièce jointe: [télécharger]
      This unique gathering brought together key players in the field, including Camptocamp, a prominent contributor to the OsGeo community and a leading player in the steering committees of many of the association's projects.
    • sur Fernando Quadro: Comparando GeoNode e ArcGIS Online: Qual é o certo para você?

      Publié: 7 March 2024, 1:00pm CET

      GeoNode e ArcGIS Online são plataformas de software GIS (Geographic Information System) que permitem a criação e o compartilhamento de mapas e aplicativos web. No entanto, existem diferenças importantes entre as duas plataformas que podem influenciar na escolha da solução mais adequada para suas necessidades. Este artigo tem como objetivo fornecer uma comparação entre essas plataformas, com foco em recursos, funcionalidades e sua adequação para instituições governamentais, empresariais e acadêmicas.

      ? Funcionalidades

      O Geonode é uma plataforma open-source com foco na catalogação, visualização e compartilhamento de dados geoespaciais, que apresenta facilidade de uso, gerenciamento e integração com diversas ferramentas e serviços web OGC (Open Geospatial Consortium).

      O ArcGIS Online é uma plataforma robusta para criação de mapas e aplicativos WebGIS que possui uma ampla gama de funcionalidades para análise espacial, geoprocessamento e gerenciamento de dados, além da integração com outras plataformas ArcGIS e ferramentas da Esri.

      ? Curva de aprendizado

      O Geonode possui uma interface amigável e intuitiva, facilitando o aprendizado para iniciantes por meio de uma documentação completa e uma comunidade ativa que oferece suporte e ajuda aos usuários. Além disso, o Geonode possui uma curva de aprendizado mais suave para usuários com pouca ou nenhuma experiência em GIS.

      O ArcGIS Online é uma plataforma mais complexa, com uma curva de aprendizado mais acentuada, o que requer conhecimentos técnicos em GIS para configuração, administração e desenvolvimento de aplicações. Essa plataforma possui documentação extensa e abrangente, com diversos recursos de aprendizado.

      ? Documentação

      A documentação do Geonode é recomendada para usuários iniciantes em GIS que buscam uma documentação mais simples e direta e para usuários que desejam configurar e usar a plataforma rapidamente.

      O ArcGIS Online é recomendado para usuários experientes em GIS que buscam uma documentação completa e abrangente e para usuários que desejam explorar todos os recursos da plataforma.

      ? Taxas de licenciamento e custos de assinatura

      GeoNode: Sendo de código aberto, o GeoNode é totalmente gratuito para baixar, usar e modificar. Não há taxas de licenciamento ou custos de assinatura associados ao uso da plataforma.

      ArcGIS Online: O ArcGIS Online exige uma taxa de licenciamento, que pode ser substancial, especialmente para organizações maiores ou com necessidades complexas de GIS. Além disso, poderão ser incorridos custos contínuos de assinatura para acesso a atualizações e suporte.

      ? Personalização e Desenvolvimento

      O GeoNode: A natureza de código aberto do GeoNode permite ampla personalização e desenvolvimento. As organizações podem adaptar a plataforma às suas necessidades específicas sem incorrer em custos adicionais com ferramentas de desenvolvimento proprietárias.

      ArcGIS Online: A personalização no ArcGIS Online pode exigir o uso de ferramentas e APIs proprietárias, potencialmente levando a taxas de licenciamento ou custos de desenvolvimento
      adicionais.

      ? Escalabilidade e flexibilidade

      GeoNode: A escalabilidade do GeoNode não está vinculada a níveis de licenciamento ou níveis de assinatura. As organizações podem dimensionar a implantação do GeoNode conforme necessário, sem incorrer em custos adicionais de licenciamento.

      ArcGIS Online: O dimensionamento do ArcGIS Online pode exigir a compra de licenças adicionais ou níveis de assinatura, o que pode se tornar caro à medida que as necessidades de GIS de uma organização aumentam.

      ? Mas enfim, quando devo usar cada uma das ferramentas?

      Use o GeoNode se fizer parte de uma pequena, média ou grande organização com necessidades essenciais de mapeamento e compartilhamento de dados geoespaciais e que, além disso, busque uma solução open-source, fácil de usar e sem custos de licenças.

      Use o ArcGIS Online se fizer parte de uma grande organização com recursos que possua necessidades complexas de GIS e que busquem uma plataforma robusta e com ampla gama de funcionalidades para usuários que já estão familiarizados com outras plataformas ArcGIS e ferramentas da Esri.

      ? Ficou interessado?

      Acesse: [https:]]
      WhatsApp: [https:]]

    • sur Fernando Quadro: Os 5 benefícios da Infraestrutura de Dados Espaciais

      Publié: 6 March 2024, 1:00pm CET

      A Infraestrutura de Dados Espaciais (IDE) é uma ferramenta essencial no Geoprocessamento, oferecendo uma série de benefícios. Com a utilização da IDE, é possível organizar, armazenar e compartilhar dados espaciais de forma eficiente, facilitando o acesso e a análise dessas informações.

      Princípios como a padronização e a interoperabilidade são fundamentais para o bom funcionamento da IDE, garantindo a qualidade e a integridade dos dados. Além disso, fatores históricos, como o avanço da tecnologia e a democratização do acesso à informação, contribuíram para o desenvolvimento e a popularização da Infraestrutura de Dados Espaciais.

      ? Os benefícios:

      ? Melhor organização e gestão dos dados
      ? Maior eficiência na análise espacial
      ? Facilidade no compartilhamento de informações
      ? Melhor tomada de decisões
      ? Estímulo à inovação e desenvolvimento tecnológico

      As aplicações da IDE são diversas, abrangendo áreas como planejamento urbano, gestão ambiental, agricultura, transporte e muitas outras. Através da utilização de mapas e análises espaciais, é possível obter informações valiosas para a tomada de decisões, contribuindo para o desenvolvimento sustentável e a melhoria da qualidade de vida.

      ? E onde o GeoNode se encaixa nisso?

      O GeoNode é uma plataforma para gestão e publicação de dados geoespaciais que reúne projetos open source maduros e estáveis sob uma interface consistente e fácil de usar. Com ele você consegue implantar sua IDE de forma fácil e prática.

      ? Quer saber mais?

      O Curso é oferecido na modalidade EAD Ao Vivo, com uma carga horária de 18 horas divididas em 6 encontros. Porém, essas aulas são gravadas e ficam disponíveis ao aluno por 12 meses em nosso portal do aluno.

      Então, se por acaso você não puder comparecer em alguma das aulas ao vivo, não se preocupe, você poderá rever a aula gravada a qualquer momento.

      Em comemoração ao aniversário de 12 anos da Geocursos, estamos disponibilizando pra você R$ 100 de desconto, basta utilizar o cupom GEOCURSOS12ANOS

      ? Ficou interessado?

      Acesse: [https:]]
      WhatsApp: [https:]]

    • sur OPENGIS.ch: INTERLIS Crashkurs Webinar

      Publié: 6 March 2024, 8:19am CET

      Der Crashkurs dauert 2.5 Stunden via Google Meet (kein Google Konto erforderlich) und kostet 90 CHF pro Person.

      Beschreibung

      Ziel dieses Crashkurses ist es, “blutigen Anfänger:innen” INTERLIS näher zu bringen. Nach dem Crashkurs werden sie wissen, was INTERLIS ist, wie es angewendet wird und wie ein Modell gelesen wird und man sich darin zurechtfindet. Weiter werden sie fähig sein, ein einfaches Beispielmodell selbst zu modellieren.

      Vorkenntnisse

      Keine.

      Software

      Keine. Das Webinar ist primär frontal und es muss keine Software vorinstalliert werden.

      Um gleich ein bisschen mitzumachen, können aber optional folgende Tools installiert werden, im Idealfall auf einem separaten Bildschirm:

      Kurskalender und Anmeldung
    • sur Adam Steer: Image transects for ecological assessment

      Publié: 6 March 2024, 4:38am CET
      Sometimes we don’t need to create full blown orthophotos and 3D models to understand things. Just seeing an image in a location context is enough. With this in mind, I was recenly tasked by Taungurung Land and Waters Council to collect a set of baseline images along preset transects for ecological assessment. The transects were… Read More »Image transects for ecological assessment
    • sur GeoSolutions: GeoSolutions at CalGIS in Visalia, California – March 18-20, 2024

      Publié: 5 March 2024, 5:29pm CET

      You must be logged into the site to view this content.

    • sur Fernando Quadro: O que é um WebGIS

      Publié: 5 March 2024, 1:00pm CET

      WebGIS é uma tecnologia usada para exibir e analisar dados espaciais na Internet. Ele combina as vantagens da Internet e do GIS oferecendo um novo meio de acessar informações espaciais sem a necessidade de você possuir ou instalar um software GIS.

      A necessidade de divulgação de dados geoespaciais têm estimulado cada vez mais o uso de ferramentas WebGIS para apresentações interativas de mapas e de informações relacionadas por meio da internet.

      As soluções adotadas na apresentação destes mapas devem apresentar um equilíbrio entre facilidade de uso, riqueza de recursos para visualização e navegação entre os dados, e funcionalidades geoespaciais para pós-processamento, características que devem ser adequadas para cada perfil de usuário que acessará o WebGIS.

      Fonte: webgis.tech
      Instagram: [https:]]
      LinkedIn: [https:]]

    • sur gvSIG Team: Coordinación CArtográfica en el Sistema de Administración del Territorio (CCASAT)

      Publié: 5 March 2024, 9:47am CET

      Compartimos información sobre CCASAT un grupo de trabajo de expertos en administración del territorio del cual la Asociación gvSIG formamos parte.

      Coordinación CArtográfica en el Sistema de Administración del Territorio (CCASAT) es un grupo con sede en la Universitat Politécnica de València, España; en el Departamento de Ingeniería Cartográfica, Geodesia y Fotogrametría (DICGF) y en la Escuela Técnica Superior de Ingeniería Geodésica, Cartográfica y Topográfica (ETSIGCT), cuyos objetivos principales son:

      Apoyo, colaboración e investigación en todos aquellos ámbitos relacionados con la información cartográfica que permita una administración efectiva del territorio (como la información catastral, y/o la información registral, o similar), y fundamentalmente en aspectos que sirvan de apoyo para conseguir seguridad en la tenencia de la tierra, y valoración con efecto administrativo. Fomentando la difusión, transferencia de conocimientos, investigación, coordinación, consultoría y optimización de recursos.

      CCASAT está enfocado principalmente a España y Latinoamérica, siendo el idioma principal el español.

      http://www.ccasat.upv.es

    • sur GeoTools Team: GeoTools 31-RC Release Candidate

      Publié: 4 March 2024, 1:00pm CET
       The GeoTools team is pleased share a release candidate  GeoTools 31-RC: geotools-31-RC-bin.zip  geotools-31-RC-doc.zip  geotools-31-RC-userguide.zip  geotools-31-RC-project.zip  This release candidate is also available from the OSGeo Maven Repository and is made in conjunction with GeoServer 2.25-RC. The release was made by Jody Garnett (GeoCat).Testing
    • sur Stefano Costa: ènostra e la transizione energetica dal basso a Savona

      Publié: 4 March 2024, 10:47am CET

      Venerdì 1 marzo ero a Savona per parlare di transizione energetica dal basso alla Società di Mutuo Soccorso Fornaci, insieme al gruppo territoriale di ènostra. Ci avevano invitati il comitato No rigassificatore e il comitato Fermiamo il mostro per una serata insieme a due associazioni genovesi con cui collaboriamo spesso, Cittadini sostenibili e CER Sole.

      Savona e Vado Ligure non assistono passivamente alle scelte assurde dei politici regionali e locali di accogliere un rigassificatore che inquina il mare, deturpa il territorio con tutto il gasdotto necessario a terra, contribuisce a inquinare l’aria rimanendo ancorati alle fonti fossili e arricchendo le grandi multinazionali. C’è stato un risveglio che ha portato a una lunga catena umana lungo la costa, tante mobilitazioni e molti resistono all’idea di avere dei benefici “compensativi”.

      La serata è stata lunga e la partecipazione grande, nonostante la pioggia. Si è parlato dei danni che derivano dalle fonti fossili per il clima e per la salute, delle false notizie sulle rinnovabili, delle comunità energetiche. E io ho presentato le attività di ènostra. Ero piuttosto stanco ma con l’aiuto degli altri soci del gruppo territoriale ho spiegato cosa fa la cooperativa, che principi la guidano e l’importanza della partecipazione alle scelte energetiche al di là del cambio di fornitura. Non tutta l’energia rinnovabile è uguale e quella fatta dal basso, attenta agli impatti sociali e ambientali è quella che preferiamo.

      L’accoglienza del comitato è stata molto generosa e sono contento che sia nato questo legame.

      Cos’è una cooperativa energetica e cosa fa in concreto (video Youtube)

    • sur GeoServer Team: GeoServer 2.25-RC Release

      Publié: 4 March 2024, 1:00am CET

      GeoServer 2.25-RC release is now available with downloads (bin, war, windows), along with docs and extensions.

      This is a release candidate intended for public review and feedback. GeoServer 2.25-RC is made in conjunction with GeoTools 31-RC, and GeoWebCache 1.25-RC.

      Thanks to Jody Garnett (GeoCat) for making this release.

      Why share a release candidate?

      A sensible question to ask is why a “release candidate” is being produced at all - when we do not recommend running such a thing in production.

      GeoServer also follows a “release early, release often” approach which is where the project shares releases so you can test and provide feedback.

      This results in a lovely balance:

      • The GeoServer developer has already tested on the data and data sources they got handy.

      • The users of GeoServer have access to a much greater variety in data and and use cases to test with.

        Please try out this release candidate and let us know how it works for you.

      • Bonus: By testing with your data directory you are assured that the next GeoServer will work well for you and your team.

      This balance of a community sharing and each doing what they can they can do easily, is a nice thing about the open-source approach: the result is software we can trust and works well.

      Thank you for being part of the GeoServer community. Testing and feedback is welcome by email and bug reports.

      Upgrade Notes

      We have a number of configuration changes when updating an existing system:

      • The longstanding ENTITY_RESOLUTION_ALLOWLIST setting has been recommended as a way to control the locations available for external entity resolution when parsing XML documents and requests.

        The default has changed from * (allowing any location) to allowing the recommended www.w3.org, schemas.opengis.net, www.opengis.net locations used for OGC Web Services, along with the inspire.ec.europa.eu/schemas location used by our friends in Europe.

      • The FreeMarker Template HTML Auto-escaping is now enabled by default.

      • The spring security firewall is now enabled by default.

      • A new configuration setting is available to limit content served from the geoserver/www folder.

        If you have not met the www folder before it is used to share content, and there is a tutorial serving static files.

      • We do add recommendations to production considerations over time, if you have not checked that page in a while please review.

      Thanks to Steve Ikeoka and Jody Garnett for these improvements.

      Security Considerations

      This a reminder to update to GeoServer 2.24.2 Release (or GeoServer 2.35.5 Release).

      Alongside the upcoming GeoServer 2.25.0 release we will “publicly disclose” a list of Common Vulnerabilities and Exposures that have been addressed previously.

      • If you are working with a commercial support provider that volunteers with the geoserver-security email list they are already informed.
      • If you have updated to GeoServer 2.24.2 Release (or GeoServer 2.23.5 Release) you are already patched.

      I hope you enjoy our team’s effort to improve communication. The use of the CVE system allows us to reach a wider audience than reads these blog posts.

      See the project security policy for more information on how security vulnerabilities are managed.

      Experimental Java 21 support

      GeoServer, along with GeoTools and GeoWebCache, are now tested to build and pass tests with Java 21.

      This is not yet an endorsement to run GeoServer in production with Java 21. We are looking ahead at the 2024 roadmap, and are making sure the basics are covered for the newer Java releases.

      JTS fast polygon intersection enabled by default

      The JTS Next Generation polygon intersection algorithm has been enabled by default, which will improve performance of a number of operations, including WPS processes and the vector tiles generation. We deem the functionality well tested enough that it should be opened to the majority of users, even if it’s still possible to turn it off by adding the -Djts.overlay=old.

      MapML Extension

      The MapML extension is receiving a number of updates and improvements, with more to come in the following months. It’s now possible to declare “Tiled CRS” as the CRS for a layer, with the implication not just of the CRS, but also of the gridset that will be used by the MapML viewer:

      This portion builds on top of the work done months ago to support astronomical CRSs, which allows GeoServer to support multiple CRS authorities.

      The MapML preview links are now using the new MapML output format, while the old dedicated REST controller has been removed. This allows for better integration of the MapML format in the GeoServer ecosystem. The MapML viewer has also been updated to the latest version:

      Thanks to Joseph Miller and Andrea Aime (GeoSolutions) for this work, and Natural Resources Canada for sponsoring it.

      Community Module Updates

      Much of the new activity in GeoServer starts as a community module. We’d like to remind you that these modules are not yet supported, and invite you to join the effort by participating in their development, as well as testing them and providing feedback.

      Raster attribute Table community module

      Developed as part of GEOS-11175, the Raster Attribute Table community module uses the GDAL Raster Attribute Table (RAT) to provide a way to associate attribute information for individual pixel values within the raster, to create styles as well as to provide a richer GetFeatureInfo output.

      For more information see the user guide.

      We’d like to thank Andrea Aime (GeoSolutions) for the development and NOAA for sponsoring.

      Graticules for WMS maps

      The graticules community module, developed as part of GEOS-11216, provides a datastore generating graticules for WMS maps, along with a rendering transformation that can be used to label them. The module can be used to draw a graticule in WMS maps, as well as to download them as part of WFS (or in combination with the WPS download module).

      We’d like to thank Ian Turton for development and GeoSolutions for sponsoring the work.

      GeoServer monitor Kafka storage

      The monitoring Kafka storage module, developed as part of GEOS-11150, allows storing the requests captured by the monitoring extension into a Kafka topic.

      We’d like to thank Simon Hofer for sharing his work with the community. To learn more about the module, how to install and use it, see the user-guide.

      JWT Headers

      The JWT headers module has been developed as part of GEOS-11317.

      The module is a new authentication filter that can read JWT Headers, as well as general JSON payloads and simple strings, to identify a user, as well as to extract their roles. The combination of Apache mod_auth_openidc with geoserver-jwt-headers-plugin provides an alternative to using the geoserver-sec-oauth2-openid-connect-plugin plugin.

      We’d like to thank David Blasby (GeoCat) for this work on this module.

      Full Release notes

      New Feature:

      • GEOS-11225 [AuthKey] AuthKey synchronize the user/group automatically

      MapML:

      • GEOS-10438 ENTITY_RESOLUTION_ALLOWLIST property not parsing empty setting
      • GEOS-11207 Refactor MapML MVC controller as GetMap-based operation with standard parameter format
      • GEOS-11221 mkdocs preflight rst fixes
      • GEOS-11289 Enable Spring Security Stric [HttpFirewall] by default
      • GEOS-11297 Escape WMS GetFeatureInfo HTML output by default
      • GEOS-11300 Centralize access to static web files

      Improvement:

      • GEOS-11130 Sort parent role dropdown in Add a new role
      • GEOS-11142 Add mime type mapping for yaml files
      • GEOS-11148 Update response headers for the Resources REST API
      • GEOS-11149 Update response headers for the Style Publisher
      • GEOS-11152 Improve handling special characters in the Simple SVG Renderer
      • GEOS-11153 Improve handling special characters in the WMS OpenLayers Format
      • GEOS-11155 Add the X-Content-Type-Options header
      • GEOS-11173 Default to using [HttpOnly] session cookies
      • GEOS-11176 Add validation to file wrapper resource paths
      • GEOS-11213 Improve REST external upload method unzipping
      • GEOS-11222 Include Conformance Class for “Search” from OGC API - Features Part 5 proposal
      • GEOS-11226 Enable JTS OverlayNG by default
      • GEOS-11246 Schemaless plugin performance for WFS
      • GEOS-11247 Avoid HTML annotations special status in APIBodyProcessor
      • GEOS-11248 Move version header handling from APIBodyMethodProcessor to APIDispatcher
      • GEOS-11260 JNDI tutorial uses outdated syntax
      • GEOS-11288 Improve input validation in ClasspathPublisher
      • GEOS-11289 Enable Spring Security Stric [HttpFirewall] by default
      • GEOS-11298 When a Raster Attribute Table is available, expose its attributes in GetFeatureInfo

      Bug:

      • GEOS-11050 jdbc-store broken by changes to Paths.names
      • GEOS-11051 Env parametrization does not save correctly in AuthKey extension
      • GEOS-11145 The GUI “wait spinner” is not visible any longer
      • GEOS-11182 Avoid legends with duplicated entries
      • GEOS-11187 Configuring a raster with NaN as NODATA results in two NaN in the nodata band description
      • GEOS-11190 GeoFence: align log4j2 deps
      • GEOS-11203 WMS GetFeatureInfo bad WKT exception for label-geometry
      • GEOS-11224 Platform independent binary doesn’t start properly with default data directory
      • GEOS-11250 WFS GeoJSON encoder fails with an exception if an infinity number is used in the geometry
      • GEOS-11278 metadata: only selected tab is submitted
      • GEOS-11312 Used memory calculation fix on legend WMS request

      Task:

      Community module development:

      • GEOS-11305 Add layer information in the models backing STAC
      • GEOS-11146 Fix MBTiles output format test
      • GEOS-11184 ncwms module has a compile dependency on gs-web-core test jar
      • GEOS-11209 Open ID Connect Proof Key of Code Exchange (PKCE)
      • GEOS-11212 OIDC accessToken verification using only JWKs URI
      • GEOS-11219 Upgraded mail and activation libraries for SMTP compatibility
      • GEOS-11293 Improve performance of wps-lontigudinal-profile
      About GeoServer 2.25 Series

      Additional information on GeoServer 2.25 series:

      Release notes: ( 2.25-RC )

    • sur Stefano Costa: Install iosacal with conda

      Publié: 2 March 2024, 5:35pm CET

      Starting today, you can install iosacal with conda. This adds to the existing installation procedure with pip. Conda is a good fit for complex projects and has better tooling for reproducibility.

      Installing iosacal can be achieved by adding conda-forge to your channels with:

      conda config --add channels conda-forge conda config --set channel_priority strict

      Once the conda-forge channel has been enabled, iosacal can be installed with conda:

      conda install iosacal

      or with mamba:

      mamba install iosacal
    • sur Fernando Quadro: Curso de GeoNode com inscrições abertas!

      Publié: 1 March 2024, 8:39pm CET

      Aprenda a montar a sua própria Infraestrutura de Dados Espaciais com o GeoNode, uma plataforma para gestão e publicação de dados geoespaciais que reúne projetos open-source maduros e estáveis sob uma interface consistente e fácil de usar, permitindo que os usuários, compartilhem seus dados de forma rápida e facil.

      Este novo curso visa capacitar os profissionais no uso eficiente da plataforma GeoNode, e tem como objetivos:

      ? Familiarizar os participantes com os conceitos fundamentais do Geonode e suas capacidades.
      ? Explorar o funcionamento de servidores de mapas e seus benefícios.
      ? Apresentar os padrões de dados do Open Geospatial Consortium (OGC), como Web Map Service (WMS) e Web Feature Service (WFS), para interoperabilidade geoespacial.
      ? Demonstrar a publicação eficiente de dados no Geonode usando views de bancos de dados geográficos.
      ? Ensinar a integração do Geonode com o QGIS através de plugins.

      ?? Quer saber mais?

      O Curso é oferecido na modalidade EAD Ao Vivo, com uma carga horária de 18 horas divididos em 6 encontros. Porém, essas aulas são gravadas e ficam disponíveis ao aluno por 12 meses em nosso portal do aluno.

      Então, se por acaso você não puder comparecer em alguma das aulas ao vivo, não se preocupe, você poderá rever a aula gravada a qualquer momento.

      Em comemoração ao aniversário de 12 anos da Geocursos, estamos disponibilizando pra você R$ 100 de desconto, basta utilizar o cupom GEOCURSOS12ANOS

      ??Ficou interessado?

      Acesse: [https:]]
      WhatsApp: [https:]]

    • sur Stefano Costa: IOSACal in Google Colab

      Publié: 1 March 2024, 5:27pm CET

      Google Colab is a popular notebook service that you can run directly from your browser. Python is natively supported and it’s fairly easy to run a Jupyter notebook, even with custom dependencies like Numpy and Matplotlib.

      You can run IOSACal in Google Colab! I have added a new short how-to guide in the official documentation. Find the how-to at [https:]] .

      This takes advantage of a demo notebook that was contributed by Jelmer Wind.

      A screenshot of the demo notebook running IOSACal in Google Colab. Even with a plot!

    • sur OTB Team: OTB Release 9.0.0

      Publié: 28 February 2024, 6:00pm CET
      Dear OTB community, We are happy to announce that OTB version 9.0.0 has been released! Ready to use binary packages are available on the package page of the website: The Docker image is available :docker pull orfeotoolbox/otb:9.0.0 It is also possible to checkout the branch with git: git clone [https:] OTB -b release-9.0 The documentation […]
    • sur Free and Open Source GIS Ramblings: Trajectools 2.0 released ?

      Publié: 24 February 2024, 8:26pm CET

      It’s my pleasure to share with you that Trajectools 2.0 just landed in the official QGIS Plugin Repository.

      This is the first version without the “experimental” flag. If you look at the plugin release history, you will see that the previous release was from 2020. That’s quite a while ago and a lot has happened since, including the development of MovingPandas.

      Let’s have a look what’s new!

      The old “Trajectories from point layer”, “Add heading to points”, and “Add speed (m/s) to points” algorithms have been superseded by the new “Create trajectories” algorithm which automatically computes speeds and headings when creating the trajectory outputs.

      “Day trajectories from point layer” is covered by the new “Split trajectories at time intervals” which supports splitting by hour, day, month, and year.

      “Clip trajectories by extent” still exists but, additionally, we can now also “Clip trajectories by polygon layer”

      There are two new event extraction algorithms to “Extract OD points” and “Extract OD points”, as well as the related “Split trajectories at stops”. Additionally, we can also “Split trajectories at observation gaps”.

      Trajectory outputs, by default, come as a pair of a point layer and a line layer. Depending on your use case, you can use both or pick just one of them. By default, the line layer is styled with a gradient line that makes it easy to see the movement direction:

      while the default point layer style shows the movement speed:

      How to use Trajectools

      Trajectools 2.0 is powered by MovingPandas. You will need to install MovingPandas in your QGIS Python environment. I recommend installing both QGIS and MovingPandas from conda-forge:

      (base) conda create -n qgis -c conda-forge python=3.9 
      (base) conda activate qgis
      (qgis) mamba install -c conda-forge qgis movingpandas
      

      The plugin download includes small trajectory sample datasets so you can get started immediately.

      Outlook

      There is still some work to do to reach feature parity with MovingPandas. Stay tuned for more trajectory algorithms, including but not limited to down-sampling, smoothing, and outlier cleaning.

      I’m also reviewing other existing QGIS plugins to see how they can complement each other. If you know a plugin I should look into, please leave a note in the comments.

    • sur geomatico: Desarrollo de un gemelo digital para la gestión del agua

      Publié: 23 February 2024, 2:17pm CET

      La escasez de agua en la agricultura, agravada por el cambio climático, amenaza la seguridad alimentaria. Los sistemas de riego eficientes son clave para mitigar estos desafíos, optimizando el uso del agua y fortaleciendo la resiliencia agrícola.

      Entre 2022 y 2023 hemos desarrollado un gemelo digital de gestión del agua en agricultura junto al IRTA (Instituto de Investigación y Tecnología Agroalimentaria). En la aplicación web se pueden monitorizar y analizar casi 300 mil parcelas simbolizadas semanalmente por 17 indicadores (unos 250 millones de registros por año) que permiten optimizar la irrigación.

    • sur QGIS España: Publicación del libro Introducción a los Sistemas de Información Geográfica con QGIS

      Publié: 22 February 2024, 9:00pm CET
      Publicada la Segunda Edición del Libro “Introducción a los Sistemas de Información Geográfica con QGIS” de Federico Gazaba

      Una pregunta recurrente en redes sociales es ¿Dónde puedo encontrar un manual para aprender a usar QGIS? o ¿Cómo puedo iniciarme en el uso de los Sistemas de Información Geográfica (SIG)? Hace aproximadamente 3 años Federico Gazaba publicaba la pimera versión de su libro “Introducción a los Sistemas de Información Geográfica con QGIS” un manual que en su momento fue de referencia obligada para las personas usuarias de QGIS en habla hispana pero que con el paso del tiempo había quedado desactualizado debido a la aparición de nuevas versiones de QGIS.

      Recientemente el autor nos comentaba que se estaba preparando una actualización de libro y no nos ha hecho esperar mucho, el 22 de Febrero nos anunciaba en el canal de Telegram de QGIS en español que la versión 2.0 había sido publicada: _“Hola amigos #geoinquietos !. Lo prometido es deuda, les traigo la versión 2.0 de mi libro libre “Introducción a los Sistemas de Información Geográfica con QGIS”. Esta versión actualiza los contenidos de la versión anterior a QGIS 3.34 Prizren.".

      El libro ha sido publicado bajo la licencia CC BY-SA 4.0 lo que permite que sea compartido o modificado, para cualquier proposito, con libertad mientras se respete la atribución al autor y se comparta con la misma licencia. Se puede descargar aquí o aquí el repositorio del libro se puede encontrar en GitHub

      Este libro es otro ejemplo que demuestra que los proyectos de software libre y open source permiten compartir y colaborar en este tipo de iniciativas donde podemos participar de forma activa y generar grandes sinergias en sus aplicaciones y desarrollos en beneficio, tanto de las comunidades que las desarrollan como las que las usan.

      Federico Gazaba es profesor de Matemáticas y Técnico Maestro Mayor de Obras y actualmente es docente en el Instituto de Formación Docente y Técnica 122 “Presidente Illia” de Pergamino (Provincia de Buenos Aires, Argentina) y Director de Sistemas de Información Georreferenciada de la Municipalidad de Pergamino. Desde el año de 2013 es usuario de QGIS y es un entusiasta del las tecnologías libres y de los datos espaciales abiertos. La creación del manual nace de la necesidad de impartir cursos de QGIS a sus colegas de municipalidad y es el resultado de la sistematización de esas enseñanzas. Desde 2016, de forma ininterrumpida, imparte cursos introductorios a los SIG para diferentes instituciones.

      Puedes seguir a Federico en la siguientes redes sociales:

    • sur GeoTools Team: GeoTools 29.5 released

      Publié: 21 February 2024, 12:30pm CET
        GeoTools 29.5 releasedThe GeoTools team is pleased to announce the release of the latest maintenance version of GeoTools 29.5:geotools-29.5-bin.zipgeotools-29.5-doc.zipgeotools-29.5-userguide.zipgeotools-29.5-project.zipThis release is also available from the OSGeo Maven Repository and is made in conjunction with GeoServer 2.23.5 and GeoWebCache 1.23.4. We are
    • sur QGIS Blog: Save the date & call for contributions: QGIS user conference and contributor meeting in Bratislava

      Publié: 20 February 2024, 8:17pm CET

      We are happy to announce that QGIS User Conference will take place on 9-10 September 2024 in Bratislava, Slovakia.


      The traditional Contributor Meeting will be held right after the conference on 11-13 September 2024 at the same venue.

      Learn more about the user conference and the contributor meeting at the event’s web site: [https:]]

      The call for papers for the user conference is now open – you can submit proposals for talks and workshops by 31 March 2024:
      [https:]]

      We have also started call for sponsors, with sponsorship opportunities at various levels. More details here:
      [https:]]

      User Conference

      The QGIS User Conference is an annual event that brings together users and developers of QGIS. The conference provides an opportunity for attendees to learn about the latest developments in QGIS, share their experiences with others, and network with other QGIS users and
      developers.

      Contributor Meeting

      QGIS Contributor Meetings are volunteer-driven events where contributors to the QGIS project from around the world get together in a common space – usually a university campus. During these events, contributors to the QGIS project take the opportunity to plan their work, hold face-to-face discussions and present new improvements to the QGIS project that they have been working on. Everybody attending the event donates their time to the project for the days of the event.
      As a project that is built primarily through online collaboration, these meetings provide a crucial ingredient to the future development of the QGIS project. The event is planned largely as an ‘unconference’ with minimal structured programme planning.

      For more details and to sign up, please visit the corresponding wiki page [https:]]

    • sur Camptocamp: Coopterr, territorial cooperation platform based on Rennes Métropole's digital twin

      Publié: 19 February 2024, 1:00am CET
      Pièce jointe: [télécharger]
      Coopterr, Rennes Métropole's territorial cooperation platform, is now online. It offers a first service to citizens, enabling them to consult electromagnetic wave exposure measurements and identify radioelectric sites in the city of Rennes.
    • sur GeoServer Team: GeoServer 2.23.5 Release

      Publié: 18 February 2024, 1:00am CET

      GeoServer 2.23.5 release is now available with downloads (bin, war, windows), along with docs and extensions.

      This is the last planned maintenance release of GeoServer 2.23.x, providing existing installations with minor updates and bug fixes. Sites using the 2.23.x series are encouraged to upgrade to GeoServer 2.24.x, or eventually wait next month, for the 2.25.0 release, and upgrade their installation, with the help of the upgrade guide.

      GeoServer 2.23.5 is made in conjunction with GeoTools 29.5, and GeoWebCache 1.23.4.

      Thanks to Andrea Aime (GeoSolutions) for making this release.

      Release notes

      New Feature:

      • GEOS-11225 AuthKey synchronize the user/group automatically
      • GEOS-11279 metadata: allow same field on multiple tabs

      Improvement:

      • GEOS-11213 Improve REST external upload method unzipping
      • GEOS-11246 Schemaless plugin performance for WFS
      • GEOS-11260 JNDI tutorial uses outdated syntax
      • GEOS-11276 Use style_body to define CSS style for a layer
      • GEOS-11288 Improve input validation in ClasspathPublisher

      Bug:

      • GEOS-11174 GWC rest api returns erroneous truncated response when gzip http encoding is enabled
      • GEOS-11205 Layer page: style image fails if it is in isolated workspace
      • GEOS-11250 WFS GeoJSON encoder fails with an exception if an infinity number is used in the geometry
      • GEOS-11255 Multiple inserts in WPS with different idGen strategies does not work
      • GEOS-11256 Cannot retrieve LegendGraphic from a PostGIS datastore with ‘hideEmptyRules’ and ‘Support on the fly geometry simplification’ enabled
      • GEOS-11278 metadata: only selected tab is submitted
      • GEOS-11285 GWC REST Content-Encoding gzip returns broken response
      • GEOS-11291 GeoFence: Cleanup stale log4j references

      For the complete list see 2.23.5 release notes.

      Community Updates

      Community module development:

      Community modules are shared as source code to encourage collaboration. If a topic being explored is of interest to you, please contact the module developer to offer assistance.

      About GeoServer 2.23 Series

      Additional information on GeoServer 2.23 series:

      Release notes: ( 2.23.5 | 2.23.4 | 2.23.3 | 2.23.2 | 2.23.1 | 2.23.0 | 2.23-RC1 )

    • sur QGIS Blog: QGIS Grants #9: Call for Grant Proposals 2024

      Publié: 15 February 2024, 8:09pm CET

      Dear QGIS Community,

      We are very pleased to announce that this year’s round of grants is now available. The call is open to anybody who wants to make a contribution to QGIS funded by our grant fund, subject to the call conditions outlined in the application form.

      The deadline for this round is in four weeks, on 14 March 2024.

      There are no new procedures in 2024. Please note the following guidelines established in previous years: 

      • The proposal must be submitted as a ‘QEP’ (QGIS Enhancement Proposal) issue in the repo: [https:]] (tagged as Grant-2024). Following this approach will allow people to ask questions and provide public feedback on individual proposals.
      • Proposals must clearly define the expected final result so that we can properly assess if the goal of the proposal has been reached.
      • The project budgets should account for PR reviewing expenses to ensure timely handling of the project-related PRs and avoid delays caused by relying on reviewer volunteer time. 
      • In the week after the QEP discussion period, the proposal authors are expected to write a short summary of the discussion that is suitable for use as a basis on which voting members make their decisions. 

      The PSC of QGIS.ORG will examine the proposals and has veto power in case a proposal does not follow guidelines or is not in line with project priorities.

      For more details, please read the introduction provided in the application form.

      We look forward to seeing all your great ideas for improving QGIS!

    • sur EOX' blog: Open Science Catalog

      Publié: 15 February 2024, 1:00am CET
      Just like the European Space Agency (ESA), we advocate for and actively support Open Science, as we believe in the significance of collaborative efforts in advancing scientific knowledge and addressing global challenges. We acknowledge the transformative power of Open Science in driving interdiscipl ...
    • sur XYCarto: Projection Grid

      Publié: 13 February 2024, 4:19am CET

      There are times when I need a regular grid for an entire projection extent.  Meaning, for the extent of an entire projection, I need to create a regular grid of uniform tiles across the projection.  In past projects, these grids have been very helpful for data alignment and clipping data into uniform shapes and sizes. This has proved especially helpful in Machine Learning pipelines where I need to ensure pixel to pixel alignments between rasters in a specified location.

      Gridding, tiling, and indexing type work has been around forever in geospatial, so there is not much to say about the method.  Basically, you take an extent and cut it up into a grid. In this case, the extent is for an entire projection.

      I built a repository on Github and a quick method to do this via one command.

      make build-grid epsg="EPSG:2193" width=1000 height=1000

      For this method, the width and height are the desired grid cell size.  The units are the units for the projection.  EPSG:2193 (NZTM) is in metre units, so running the command above will make a grid of the NZTM projection populated with 1000m by 1000m cells.

      The GitHub repository can be run using the Make/Docker method or users can access the python script directly using:

      python3 create-grid.py EPSG:2193 1000 1000

      In order to do so, you will need to have installed:

      • GDAL
      • GeoPandas
      • PyProj
      • Shapely

      Happy mapping!

    • sur GeoSolutions: GeoNode 4.2 is out + Free GeoNode Webinar

      Publié: 13 February 2024, 3:29am CET
      Pièce jointe: [télécharger]

      You must be logged into the site to view this content.

    • sur PostGIS Development: PostGIS Patch Releases

      Publié: 8 February 2024, 1:00am CET
      The PostGIS development team is pleased to provide bug fix releases for 3.4.2, 3.3.6, 3.2.7, 3.1.11, 3.0.11, and 2.5.11. Please refer to the links above for more information about the issues resolved by these releases.
    • sur Oslandia: Software quality in QGIS

      Publié: 7 February 2024, 1:55pm CET

      According to the definition of software quality given by french Wikipedia

      An overall assessment of quality takes into account external factors, directly observable by the user, as well as internal factors, observable by engineers during code reviews or maintenance work.

      I have chosen in this article to only talk about the latter. The quality of software and more precisely QGIS is therefore not limited to what is described here. There is still much to say about:

      • Taking user feedback into account,
      • the documentation writing process,
      • translation management,
      • interoperability through the implementation of standards,
      • the extensibility using API,
      • the reversibility and resilience of the open source model…

      These are subjects that we care a lot and deserve their own article.

      I will focus here on the following issue: QGIS is free software and allows anyone with the necessary skills to modify the software. But how can we ensure that the multiple proposals for modifications to the software contribute to its improvement and do not harm its future maintenance?

      Self-discipline

      All developers contributing to QGIS code doesn’t belong to the same organization. They don’t all live in the same country, don’t necessarily have the same culture and don’t necessarily share the same interests or ambitions for the software. However, they share the awareness of modifying a common good and the desire to take care of it.

      This awareness transcends professional awareness, the developer not only has a responsibility towards his employer, but also towards the entire community of users and contributors to the software.

      This self-discipline is the foundation of the quality of the contributions of software like QGIS.

      However, to err is human and it is essential to carry out checks for each modification proposal.

      Automatic checks

      With each modification proposal (called Pull Request or Merge Request), the QGIS GitHub platform automatically launches a set of automatic checks.

      Example of proposed modification

      Result of automatic checks on a modification proposal

      The first of these checks is to build QGIS on the different systems on which it is distributed (Linux, Windows, MacOS) by integrating the proposed modification. It is inconceivable to integrate a modification that would prevent the application from being built on one of these systems.

      The tests

      The first problem posed by a proposed modification is the following “How can we be sure that what is going to be introduced does not break what already exists?”

      To validate this assertion, we rely on automatic tests. This is a set of micro-programs called tests, which only purpose is to validate that part of the application behaves as expected. For example, there is a test which validates that when the user adds an entry in a data layer, then this entry is then present in the data layer. If a modification were to break this behavior, then the test would fail and the proposal would be rejected (or more likely corrected).

      This makes it possible in particular to avoid regressions (they are very often called non-regression tests) and also to qualify the expected behavior.

      There are approximately 1.3 Million lines of code for the QGIS application and 420K lines of test code, a ratio of 1 to 3. The presence of tests is mandatory for adding functionality, therefore the quantity of test code increases with the quantity of application code.

      In blue the number of lines of code in QGIS, in red the number of lines of tests

      There are currently over 900 groups of automatic tests in QGIS, most of which run in less than 2 seconds, for a total execution time of around 30 minutes.

      We also see that certain parts of the QGIS code – the most recent – are better covered by the tests than other older ones. Developers are gradually working to improve this situation to reduce technical debt.

      Code checks

      Analogous to using a spell checker when writing a document, we carry out a set of quality checks on the source code. We check, for example, that the proposed modification does not contain misspelled words or “banned” words, that the API documentation has been correctly written or that the modified code respects certain formal rules of the programming language.

      We recently had the opportunity to add a check based on the clang-tidy tool. The latter relies on the Clang compiler. It is capable of detecting programming errors by carrying out a static analysis of the code.

      Clang-tidy is, for example, capable of detecting “narrowing conversions”.

      Example of detecting “narrowing conversions”

      In the example above, Clang-tidy detects that there has been a “narrowing conversion” and that the value of the port used in the network proxy configuration “may” be corrupted. In this case, this problem was reported on the QGIS issues platform and had to be corrected.

      At that time, clang-tidy was not in place. Its use would have made it possible to avoid this anomaly and all the steps which led to its correction (exhaustive description of the issue, multiple exchanges to be able to reproduce it, investigation, correction, review of the modification), meaning a significant amount of human time which could thus have been avoided.

      Peer review

      A proposed modification that would validate all of the automatic checks described above would not necessarily be integrated into the QGIS code automatically. In fact, its code may be poorly designed or the modification poorly thought out. The relevance of the functionality may be doubtful, or duplicated with another. The integration of the modification would therefore potentially cause a burden for the people in charge of the corrective or evolutionary maintenance of the software.

      It is therefore essential to include a human review in the process of accepting a modification.

      This is more of a rereading of the substance of the proposal than of the form. For the latter, we favor the automatic checks described above in order to simplify the review process.

      Therefore, human proofreading takes time, and this effort is growing with the quantity of modifications proposed in the QGIS code. The question of its funding arises, and discussions are in progress. The QGIS.org association notably dedicates a significant part of its budget to fund code reviews.

      More than 100 modification proposals were reviewed and integrated during the month of December 2023. More than 30 different people contributed. More than 2000 files have been modified.

      Therefore the wait for a proofreading can sometimes be long. It is also often the moment when disagreements are expressed. It is therefore a phase which can prove frustrating for contributors, but it is an important and rich moment in the community life of a free project.

      To be continued !

      As a core QGIS developer, and as a pure player OpenSource company, we believe it is fundamental to be involved in each step of the contribution process.

      We are investing in the review process, improving automatic checks, and in the QGIS quality process in general. And we will continue to invest in these topics in order to help make QGIS a long-lasting and stable software.

      If you would like to contribute or simply learn more about QGIS, do not hesitate to contact us at infos+qgis@oslandia.com and consult our QGIS support proposal.

    • sur Paul Ramsey: Building the PgConf.Dev Programme

      Publié: 6 February 2024, 5:00pm CET

      Update: The programme is now public.

      The programme for pgconf.dev in Vancouver (May 28-31) has been selected, the speakers have been notified, and the whole thing should be posted on the web site relatively soon.

      Vancouver, Canada

      I have been on programme committees a number of times, but for regional and international FOSS4G events, never for a PostgreSQL event, and the parameters were notably different.

      The parameter that was most important for selecting a programme this year was the over 180 submissions, versus the 33 available speaking slots. For FOSS4G conferences, it has been normal to have between two- and three-times as many submissions as slots. To have almost six-times as many made the process very difficult indeed.

      Why only 33 speaking slots? Well, that’s a result of two things:

      • Assuming no more than modest growth over the last iteration of PgCon, puts attendence at around 200, which is the size of our plenary room. 200 attendees implies no more than 3 tracks of content.
      • Historically, PostgreSQL events use talks of about 50 minutes in length, within a one hour slot. Over three tracks and two days, that gives us around 33 talks (with slight variations depending on how much time is in plenary, keynotes or lightning talks).

      The content of those 33 talks falls out from being the successor to PgCon. PgCon has historically been the event attended by all major contributors. There is an invitation-only contributors round-table on the pre-event day, specifically for the valuable face-to-face synch-up.

      Seminary Room

      Given only 33 slots, and a unique audience that contains so many contributors, the question of what pgconf.dev should “be” ends up focussed around making the best use of that audience. pgconf.dev should be a place where users, developers, and community organizers come together to focus on Postgres development and community growth.

      That’s why in addition to talks about future development directions there are talks about PostgreSQL coding concepts, and patch review, and extensions. High throughput memory algorithms are good, but so is the best way to write a technical blog entry.

      Getting from 180+ submissions to 33 selections (plus some stand-by talks in case of cancellations) was a process that consumed three calls of over 2 hours each and several hours of reading every submitted abstract.

      The process was shepherded by the inimitable Jonathan Katz.

      • A first phase of just coding talks as either “acceptable” or “not relevant”. Any talks that all the committee members agreed was “not relevant” were dropped from contention.
      • A second phase where each member picked 40 talks from the remaining set into a kind of “personal program”. The talks with just one program member selecting them were then reviewed one at a time, and that member would make the case for them being retained, or let them drop.
      • A winnow looking for duplicate topic talks and selecting the strongest, or encouraging speakers to collaborate.
      • A third “personal program” phase, but this time narrowing the list to 33 talks each.
      • A winnow of the most highly ranked talks, to make sure they really fit the goal of the programme and weren’t just a topic we all happened to find “cool”.
      • A talk by talk review of all the remaining talks, ensuring we were comfortable with all choices, and with the aggregate make up of the programme.

      The programme committee was great to work with, willing to speak up about their opinions, disagree amicably, and come to a consensus.

      SFU

      Since we had to leave 150 talks behind, there’s no doubt lots of speakers who are sad they weren’t selected, and there’s lots of talks that we would have taken if we had more slots.

      If you read all the way to here, you must be serious about coming, so you need to register and book your hotel right away. Spaces are, really, no kidding, very limited.

    • sur Oslandia: (Fr) Rencontres QGIS-fr – Grenoble 27 & 28 mars 2024

      Publié: 6 February 2024, 12:03pm CET

      Sorry, this entry is only available in French.

    • sur SourcePole: Designing QGIS Cloud QWC2 with CSS

      Publié: 6 February 2024, 1:00am CET
      In an earlier post, I showed how it is possible to permanently position a legend in the QGIS Cloud map as part of a QGIS Cloud Pro subscription. To achieve this, the appearance of the map view was changed using CSS. In this post, I will describe exactly what this is and how it works. The appearance of the QGIS Cloud Web Client is controlled via CSS. CSS stands for Cascading Style Sheets.
    • sur Lutra consulting: New point clouds and mesh features in QGIS 3.36

      Publié: 5 February 2024, 9:00am CET

      QGIS 3.36 is round the corner and as usual, there will be several new exciting features with the new release. Below is the list of features our team has added to the new release. This was made possible by generous funding from clients.

      Render point clouds as a surface in 2D map views

      Point clouds are rendered as individual points by default. Depending on the zoom level and density of the points, you might not be able to get a full picture of the map.

      Rendering points as surface enables you to have a better understanding of the data before trying to do any analysis or processing. This has been possible in 3D map views for a couple of QGIS releases, now we have added the functionality also in 2D map views.

      The feature generates a surface using triangulation on-the-fly from the points using the same symbology. Below you can see the difference between a point cloud rendered as individual points and rendered as a surface:

      Point clouds as surface

      Point clouds as individual points vs. as a TIN surface

      The good news is that rendering as a surface also works well with global map shading, allowing users to get a nice hillshade:

      Point clouds as surface with hillshade with hillshade

      Point clouds as surface with hillshade

      To enable this feature, you need to check the option for Render as a Surface (Triangulate) under the Layer Styling panel.

      Point clouds styling panel

      Settings to display point clouds as surface

      Pro-tip: if the on-the-fly rendering as a surface takes too long to render, try increasing the Maximum error: for example 0.6 mm instead of the default 0.3 mm.

      Flexible styling of classes

      Previously, point cloud data visualisation in QGIS was limited to rendering all points with a uniform size and opacity. This made it difficult to differentiate between different point classes and highlight specific features of interest. To address this issue, we have introduced a new feature that allows users to customise the point size and opacity for each point cloud data class. This provides a flexible way for visualising point cloud data, allowing users to highlight specific point classes, e.g. by increasing the point size.

      Assigning size and opacity to each point cloud class

      Assigning size and opacity to each point cloud class

      Point clouds with different sizes and opacity levels

      Point clouds with different sizes and opacity levels Set 3D map view extent in 2D map

      Effectively navigating and visualising large-scale 3D datasets can be challenging on PCs with limited resources. To address this issue, we introduced a new feature that allows users to interactively limit the 3D scene, enabling them to focus on specific areas of interest. This new feature, conveniently accessible from the toolbar, eliminates the need for tedious manual entry of coordinates for bounding boxes. Instead, users can simply drag and draw a box around the desired area, instantly restricting the 3D scene to that specific extent. This interactive approach significantly enhances the user experience and streamlines the process of exploring and analysing 3D data:

      Interactive selection of 3D map scene from 2D map

      Interactive selection of 3D map scene from 2D map Python API for 3D views

      Creating and viewing 3D maps in QGIS with the correct camera location and angle, scene tilt, light, and other parameters can be a time-consuming and error-prone process. This is because it requires users to manually adjust these settings, often through trial and error. However, with the introduction of the new 3D map view API in QGIS, Python plugins can now automate this process, making it much easier, consistent and more efficient to create high-quality 3D maps that are visually appealing and informative.

      # List all open 3D map canvases
      iface.mapCanvases3D()
      # [<qgis._3d.Qgs3DMapCanvas object at 0x7f23491b5e10>]
      canvas = iface.mapCanvases3D()[0]
      

      Now let’s try something more complicated:

      # Let's change some settings!
      ms = canvas.mapSettings()
      ms.setEyeDomeLightingEnabled(True)
      ms.setBackgroundColor(QColor('beige'))
      ms.setTerrainMapTheme('dtm')
      ms.setFieldOfView(110)
      
      # Move the camera to look at specific map coordinates in layer's CRS
      cam = canvas.cameraController()
      mapPoint = QgsVector3D(-498175.92, -1205400.58, 210)
      worldPoint = ms.mapToWorldCoordinates(mapPoint)
      cam.setLookingAtPoint(worldPoint, 60, 45, 100)
      
      # Create four new 3D map views
      c1 = iface.createNewMapCanvas3D('South View')
      c2 = iface.createNewMapCanvas3D('West View')
      c3 = iface.createNewMapCanvas3D('North View')
      c4 = iface.createNewMapCanvas3D('East View')
      
      # Apply settings to all open 3D map views
      for canvas in iface.mapCanvases3D():
      	canvas.mapSettings().setEyeDomeLightingEnabled(True)
      
      # Define a camera pose to update the views' cameras
      pose = QgsCameraPose()
      pose.setCenterPoint(QgsVector3D(0, 210, 0))  # This is in 3D world coordinates
      pose.setDistanceFromCenterPoint(100)
      pose.setPitchAngle(75)  # Tilt the camera by 75 degrees
      pose.setHeadingAngle(0)  # Looking towards North
      c1.cameraController().setCameraPose(pose)
      pose.setHeadingAngle(90)  # Towards East
      c2.cameraController().setCameraPose(pose)
      pose.setHeadingAngle(180)  # Towards South
      c3.cameraController().setCameraPose(pose)
      pose.setHeadingAngle(270)  # Towards West
      c4.cameraController().setCameraPose(pose)
      
      # We can set the 3D map views 2D extent to always match the main 2D canvas one
      # Our 3D views get updated while zooming/panning the main 2D canvas
      canvas = iface.mapCanvas()
      canvas.extentsChanged.connect(lambda :c1.mapSettings().setExtent(canvas.extent()))
      canvas.extentsChanged.connect(lambda :c2.mapSettings().setExtent(canvas.extent()))
      canvas.extentsChanged.connect(lambda :c3.mapSettings().setExtent(canvas.extent()))
      canvas.extentsChanged.connect(lambda :c4.mapSettings().setExtent(canvas.extent()))
      

      Changing 3D view settings through Python

      Changing 3D view settings through Python More point clouds attributes

      LAS/LAZ/COPC point clouds have a classificationFlags attribute that stores four types of information (Synthetic, Keypoint, Withheld, and Overlap) in a single value. This saves space, but it makes it difficult to use the information for styling or filtering, as you need to write complex expressions.

      To make it easier to use, we are following the approach introduced in PDAL 2.6: the classificationFlags attribute gets replaced with four separate attributes: Synthetic, Keypoint, Withheld, and Overlap. This will make it easier to include these attributes in styling and filtering expressions.

      Performance enhancement for rendering

      To improve the performance of point cloud rendering in QGIS, we introduced a new caching system to minimise the need for repeated decompression of LAS node data while panning or zooming. This caching mechanism efficiently stores decompressed points for each unique combination of layer URI, node, requested attributes, filter extent, and filter expression. This enables rapid rendering of previously cached nodes, significantly enhancing the overall rendering performance in 2D and 3D maps.

      Performance can vary depending on actual data, but on a local sample COPC file, it renders 7 times faster with this change.

      Labels for mesh layer

      Viewing mesh data has been possible through styling, plotting or using the Identify tool. But now you can also create labels on mesh surfaces or vertices similar to vector layers.

      To display labels for your mesh data, simply open the styling panel and enable labels for:

      • Labels on Vertices
      • Labels on Surfaces

      Label settings for mesh layers

      Label settings for mesh layers

      Below is an example of mesh Z values at vertices (yellow) and mesh areas at cell centre (purple):

      Example of labels on a mesh layer

      Example of labels on a mesh layer Want more changes in QGIS?

      Do you want to see more improvements and new features in QGIS? Do not hesitate to contact us to discuss your requiremnets.

    • sur Sean Gillies: Preseason running

      Publié: 5 February 2024, 12:09am CET

      My 32 week running season starts on February 19 and ends on September 29, at Bear Lake if everything goes right. My preseason running has been light on running because of various maladies. I strained my back at the end of December and just as I recovered from that I experienced some knee inflammation that was badly aggravated by running. For the past three weeks I've switched to weight training and chugging on the elliptical machines at a nearby gym. I'm doing 5x5s of squats, deadlifts, etc three times a week and 4-5 x 3 minute hard elliptical intervals once or twice a week. In between I've been walking briskly on the bike path or hiking on trails. I'd hoped to be actually running 6 hours a week by now, but am adjusting and getting some good workouts in. By February 19, I think I'll be able to take my interval workouts outside and switch from hiking to running without beating up on my knee.

    • sur Markus Neteler: Celebrating 18 Years of the Open Source Geospatial Foundation (OSGeo)

      Publié: 4 February 2024, 3:42pm CET

      The Open Source Geospatial Foundation (OSGeo) today celebrates its 18th anniversary, underscoring its pivotal role in the development of open source geospatial software and its impact on the world. Founded in 2006, OSGeo’s mission is to support and promote the collaborative development of open geospatial technologies and data. Over the years, it has become a cornerstone of the open geospatial community, fostering innovation, education and adoption of open source geospatial software worldwide.

      The post Celebrating 18 Years of the Open Source Geospatial Foundation (OSGeo) appeared first on Markus Neteler Consulting.

    • sur Adam Steer: Route mapping using Strava, OpenStreetMap and QQIS

      Publié: 4 February 2024, 12:16am CET
      Tools used: QGIS 3.34.3 Prizren; Inkscape 1.2, a web browser Most of this is reasonably standard ‘get data, make maps’ – you can flick straight to cartographic magic for the un-standard parts if you want! The product Brief and design choices The brief for this map was to visualise a bicycle ride route – and… Read More »Route mapping using Strava, OpenStreetMap and QQIS
    • sur Free and Open Source GIS Ramblings: Finding geospatial accounts on Mastodon

      Publié: 3 February 2024, 10:54am CET

      Besides following hashtags, such as #GISChat, #QGIS, #OpenStreetMap, #FOSS4G, and #OSGeo, curating good lists is probably the best way to stay up to date with geospatial developments.

      To get you started (or to potentially enrich your existing lists), I thought I’d share my Geospatial and SpatialDataScience lists with you. And the best thing: you don’t need to go through all the >150 entries manually! Instead, go to your Mastodon account settings and under “Import and export” you’ll find a tool to import and merge my list.csv with your lists:

      And if you are not following the geospatial hashtags yet, you can search or click on the hashtags you’re interested in and start following to get all tagged posts into your timeline:

    • sur Markus Neteler: Using leafmap with actinia in a Jupyter notebook

      Publié: 1 February 2024, 11:07pm CET

      This blog post gives an overview of how to easily perform a geodata analysis of an online available dataset (here: a GeoTIFF file) with actinia and display the result in Leafmap browser-based.

      The post Using leafmap with actinia in a Jupyter notebook appeared first on Markus Neteler Consulting.

    • sur gvSIG Team: Video on the Spatial Data Infrastructure of Albacete

      Publié: 1 February 2024, 6:45pm CET

      We share an institutional video about the Spatial Data Infrastructure of Albacete, developed with the gvSIG Suite, and that is having a significant impact both at the management level and in public service. A video that, in just over a minute, allows you to understand the scope that projects of this kind have.

    • sur gvSIG Team: Vídeo sobre la Infraestructura de Datos Espaciales de Albacete

      Publié: 1 February 2024, 6:41pm CET

      Compartimos un vídeo institucional sobre la la Infraestructura de Datos Espaciales de Albacete, desarrollada con la Suite gvSIG y que está teniendo un gran impacto tanto a nivel de gestión como a nivel de servicio público.

      Un vídeo que en poco más de un minuto permite entender el alcance que tienen este tipo de proyectos:

    • sur GeoServer Team: A Comprehensive Guide to Publishing a Shapefile in GeoServer

      Publié: 1 February 2024, 1:00am CET

      GeoSpatial Techno is a startup focused on geospatial information that is providing e-learning courses to enhance the knowledge of geospatial information users, students, and other startups. The main approach of this startup is providing quality, valid specialized training in the field of geospatial information.

      ( YouTube | LinkedIn | Facebook | Reddit | X )

      A Comprehensive Guide to publishing a Shapefile in GeoServer

      In this session, we want to talk about “How to Publish Shapefile in GeoServer” comprehensively. If you want to access the complete tutorial, simply click on the link

      Introduction

      The Data section contains configuration options for all the different data-related settings that GeoServer uses to access and publish geospatial information. It also describes how to load, manage, and publish data in the GeoServer web interface. Each section contains the specific pages that provide add, view, edit, and delete capabilities.

      Note. In this blog post, we used GeoServer version 2.20.0.

      Workspaces

      A Workspace serves as a means to group and organize similar layers together. It enables you to associate multiple layers and stores with a single workspace. Each workspace can be managed independently, with its own security policies, data administrator, and web services. Generally, a workspace is created for each project, along with its corresponding stores and layers.

      Add a workspace

      To create a new workspace, navigate to Data > Workspaces page. Click on the Add new workspace, then you have to enter a Workspace Name and Namespace URI.

      • Workspace Name: It is an identifier describing your project. It must not exceed ten characters or contain spaces (due to use as an XML “prefix” when downloading content).
      • Namespace URI: URI stands for Uniform Resource Identifier, is a formal system for uniquely identifying resources, and consists of two types: URL and URN. A Namespace URI does not need to point to an actual location on the web and only needs to be a unique identifier.
      • Default Workspace: This setting is useful when you only have one workspace defined. The setting allows users to communicate with the web service using just the layer name (rather than prefix:layer name required when managing hundreds of workspaces). select the Default Workspace checkbox to assign this as your default workspace.
      • Sometimes the same feature type needs to be published multiple times with a different mapping and with the same name. This can be done in GeoServer using Isolated Workspaces functionality.

      Press the Submit button to save your new workspace.

      Edit a workspace

      To view or edit a workspace, click on the Workspace name, then a workspace configuration page will be displayed.

      • For Settings, select the Enabled checkbox to customize the settings and contact details for the workspace level. This allows you to define an introduction to your workspace, and override the global settings for your workspace.
      • Use the checkbox located next to each service to override the Global Settings for the associated service. Once enabled, clicking on the Services link will open the settings page for the service, allowing default values for the service title, abstract, and other details to be supplied.
      • The Security tab allows to set data access rules at the workspace level. To create/edit the workspace’s data access rules, check/uncheck checkboxes according to the desired role.
      Remove a workspace

      To remove a workspace, select it by clicking the checkbox next to the workspace. Multiple workspaces can be selected, or all can be selected by clicking the checkbox in the header. Click the Remove selected workspace(s) link. Now you will be asked to confirm or cancel the removal.

      Pressing OK removes the selected workspace(s).

      Stores

      The Stores manage the connection parameters between GeoServer and the data sources where your spatial data reside. They provide a mechanism for GeoServer to connect to various data repositories, including file systems, databases, and cloud storage services. Each store represents a unique data source and has its configuration settings.

      Add a store

      To add a Store, navigate to Data > Stores page. Click on Add new store, then you will be prompted to choose a data source. GeoServer supports several different data formats, but they are classified into three types: “Vector data”, “Raster data”, and “Cascaded Services”.

      • Vector data formats include Shapefile, GeoPackage, PostGIS, and Properties. The most common and widely used option is Shapefile.
      • Raster data formats include ArcGrid, GeoPackage, GeoTIFF, ImageMosaic, and WorldImage. The most used and well-known are the GeoTIFF and the WorldImage. GeoTIFF is a spatial extension of the “TIFF” format and tags image files with geographic information. A WorldImage is similar, but georeferencing information is saved in an external text file.
      • Cascaded Services include WFS, WMS, and WMTS. GeoServer can proxy a remote Web Map Service and Web Map Tile Service and load it as a store in GeoServer.

      Other data sources are supplied as GeoServer extensions. Extensions are downloadable modules that add functionality to GeoServer. Click the appropriate data source to configure the store, because the connection parameters vary depending on data format.

      To create a Shapefile data store, follow these steps:

      • Select the desired workspace from the drop-down menu.
      • Enter the Data Source Name. Make sure the “Enabled” checkbox is selected. Otherwise, access to the store along with all the datasets defined, will be disabled for it.
      • In the “Shapefile location”, click on the Browse link to define the location of the shapefile.
      • The DBF file format has a field for character encoding, but it doesn’t always accurately indicate the actual encoding used. As a result, it is important to specify the DBF character set correctly when decoding strings to ensure accurate interpretation of the data.

      When finished, press the Save button. Now it will automatically redirect to the Add New Layer page, which will be completely described in the Layer section. Next, we will explain how to edit and remove the store.

      Edit a store

      To view or edit a store, click on the Store name. A Store configuration page will be displayed. The exact contents of this page depend on the specific format of the Store. After your configuration is modified, press the Save button.

      Remove a store

      To remove a Store, click the checkbox next to the store. Multiple stores can be selected, or all can be selected by clicking the checkbox in the header. Click the Remove selected stores. You will be asked to confirm the removal of the configuration for the store(s) and all resources defined under them.

      Pressing OK removes the selected Store(s), and returns to the Stores page.

      Layers

      From the administration interface, navigate to the Data > Layers page. On this page, you can view and edit existing layers, add a new layer, or remove a layer. It also shows you the type of layers in the Type column, with a different icon for vector and raster layers, according to the geometry shape. The Title, Workspace, and Store values of each layer are shown.

      Add a layer

      Clicking the Add a new layer, brings up a New Layer Chooser panel. The menu displays all currently enabled stores. If you want to add a new layer for a published resource, click on Publish Again. Note that when republishing the name of the new layer may have to be modified to avoid conflict with an existing layer.

      The beginning sections (Basic Resource Info, Keywords, and Metadata link) provide metadata, specifically textual information that makes the layer data easier to understand and work with. The metadata information will appear in the capabilities documents which refer to the layer. These options are:

      • Name: The identifier used to reference the layer in WMS requests that are filled automatically. Note that for a new layer for an already-published resource, the name must be changed to avoid conflict.
      • Enabled: A layer that is not enabled won’t be available to any kind of request, it will just show up in the configuration and in REST config.
      • Advertised: A layer is advertised by default. A non-advertised layer will be available in all data access requests (for example, WMS GetMap, WMS GetFeature) but won’t appear in any capabilities document or the layer preview.
      • Title: The human-readable description to briefly identify the layer to clients that filled automatically. GeoServer provides an item for the title and abstract and describes how to specify metadata in different languages. By default, it’s disabled and can be enabled from the i18n checkbox.
      • Abstract: It describes the layer in detail.
      • Keywords: List of short words associated with the layer to assist catalog searching. To add a new keyword, enter your keyword, then press the Add Keyword button to add it.
      • Metadata & Data Links: It allows linking to external documents that describe the data layer. The Type input provides a few example types, like FGDC or ISO19115, but allows any other type to be declared. Format provides its mime type, while URL points to the actual metadata.

      A Coordinate Reference System (CRS) defines how georeferenced spatial data relates to real locations on the Earth’s surface. GeoServer needs to know the CRS of your data. This information is used for computing the latitude/longitude bounding box and reprojecting the data during both WMS and WFS requests.

      • Native SRS: Specifies the coordinate system the layer is stored in. Clicking the projection link displays a description of the SRS.
      • Declared SRS: Specifies the coordinate system GeoServer publishes to clients.
      • SRS Handling: Determines how GeoServer should handle projection when the two SRSes differ. Possible values are:
        • Force declared: This is the default option and normally the best course of action. Use this option when the source has no native CRS, has a wrong one, or has one matching the EPSG code.
        • Reproject from native: This setting should be used when the native data set has a CRS that does not match any official EPSG. E.g. Lambert Conformal Conic to WGS84.
        • Keep native: This is a setting that should be used in very rare cases. Keeping native means using the declared one in the capabilities documents, but then using the native CRS in all other requests.

      The Bounding Box determines the extent of the data within a layer. It includes two items: “Native Bounding Box” and “Lat/Lon Bounding Box”. Generate the bounds for the layer by pressing the Compute from data and Compute from native bounds button in the Bounding Boxes section.

      Vector layers have a list of the “Feature Type Details”. These include the Property and Type of a data source. Remember that, if you want to change your data by ArcGIS or QGIS, like add or remove features or fields, or edit the attribute table contents, there is no need to create a layer again in the GeoServer, just press the Reload feature type, so your layer will be updated.

      Remember that GeoServer, by default, publishes all the features that are currently available in the layer. However, if you wish to limit the features to a specific subset, you can achieve this by specifying a CQL filter in the configuration. Upon completing the layer configuration, finalize the process by pressing the Save button. This action will create the layer based on the specifications you have provided.

      Edit a layer

      To view or edit a layer, click on the Layer Name from the Layer page. A layer configuration page will be displayed. After your configuration is modified, press the Save button.

      Remove a layer

      To remove a layer, select the checkbox next to the layer. Multiple layers can be selected, or all can be selected by clicking the checkbox in the header. By clicking the Remove selected layers link, you will be asked to confirm the removal of the configuration for the layer(s) and all resources defined under them.

      Press OK removes the selected layer(s), and returns to the Layers page.

    • sur gvSIG Team: Manual gvSIG Desktop 2.6

      Publié: 30 January 2024, 11:23am CET

      La última versión de gvSIG Desktop además de considerables mejoras ha traído un cambio en la interfaz del programa, modernizando el aspecto de los iconos utilizados.

      Hoy os compartimos el manual completo en PDF de gvSIG Desktop 2.6, que es una guía estupenda para los nuevos usuarios y a los que lleváis tiempo trabajando con gvSIG Desktop os puede ser útil para familiarizaros con los nuevos iconos.

      Y aunque seréis los menos, para los que queráis seguir utilizando el juego de iconos «clásico» podéis instalarlo desde el Administrador de Complementos.

      El manual de gvSIG Desktop 2.6 se puede descargar en este enlace.

    • sur 3liz: Sortie de Lizmap Web Client 3.7

      Publié: 29 January 2024, 12:00pm CET
      Lizmap Web Client 3.7

      Nous sommes heureux d'annoncer la sortie de Lizmap Web Client 3.7, la nouvelle version majeure de l'application.

      Financeurs Avignon Territoire de Belfort Calvados French province Direction Départemental du Territoire et de la Mer de l'Hérault Faunalia Lons-le-Saunier Grand Narbonne urban community Valabre Pré-requis et installation

      Il est désormais requis d'avoir un QGIS serveur minimum 3.22. Cependant, nous recommandons fortement d'utiliser une version LTR plus récente, comme la version 3.28 ou bien même la prochaine version LTR 3.34. Consultez la feuille de route QGIS.

      Pour utiliser pleinement de cette version 3.7, n'oubliez pas de mettre à jour votre extension Lizmap dans QGIS bureautique. Nous avons écrit un article dédié sur cette nouvelle version.

      Fonctionnalités Refonte du thème par défaut

      Un nouveau thème est disponible, apportant une interface utilisateur plus à jour. Il est désormais également plus facile de mettre à jour ces couleurs, car cela a été centralisé en utilisant seulement quelques variables CSS.

      Nouveau thème

      Dataviz

      Dans l'extension, vous pouvez trouver de nouveaux paramètres pour chaque graphique. Par exemple, il est possible de définir deux titres différents, selon l'endroit où le graphique est affiché : soit dans le panneau principal de visualisation de données, soit dans une popup.

      La principale nouvelle fonctionnalité est la mise en page par Glisser&Déposer. Nous nous sommes inspirés de la fonctionnalité native de QGIS concernant la Mise en page du formulaire Glisser-Déposer. Dans Lizmap, lorsque vous avez de nombreux graphiques à afficher, vous pouvez les organiser en onglets ou conteneurs.

      Dans QGIS, voici un exemple de mise en page des graphiques :

      New Drag&Drop layout for Dataviz

      et voici le résultat dans Lizmap Web Client :

      New Drag&Drop layout for Dataviz

      Ces nouvelles fonctionnalités ont été financées par DDTM 34.

      Légende

      C'est l'une des fonctionnalités les plus visibles et attendues de Lizmap, il est possible de cocher/décocher les éléments de la légende individuellement.

      Nous avons également revu la façon dont Lizmap gérait les couches de base dans le projet (fonds de carte). Les utilisateurs sont désormais invités à utiliser le groupe baselayers dans la légende pour définir les couches de base. À l'aide d'une version à jour de l'extension, vous pouvez utiliser l'onglet "Fonds" pour vous aider.

      Nous avons également décidé d'utiliser le même comportement que dans QGIS Bureautique concernant la manière dont les utilisateurs manipulent la légende. Désormais, lors de l'activation d'un groupe, toutes les couches incluses dans ce groupe ne seront pas activées automatiquement.

      New theme

      Pour inclure ces nouvelles fonctionnalités, beaucoup de re-factorisation du code Javascript ont été réalisées sous le capot, financées par le département du Calvados et Le Grand Narbonne.

      Mise en page

      Dans l'extension, un nouveau panneau sur les mises en page a été ajouté. Vous êtes invités à jeter un œil à ces nouveaux paramètres. Il est possible de :

      • définir par mise en page si nous l'activons ou non sur l'interface Web. Avant, il était seulement possible de choisir d'activer ou non l'impression à l'échelle des propriétés du projet
      • définir les groupes Lizmap qui sont autorisés à accéder à chaque mise en page
      • définir une icône personnalisée lorsque la mise en page est basée sur un atlas.
      • réduire le nombre de formats disponibles. Plus besoin de Javascript pour avoir une interface simplifiée
      • ...

      Nouvelles options concernant les mises en page dans l'extension

      Ces nouvelles fonctionnalités ont été financées par DDTM 34.

      Au cours de ce travail, nous avons déprécié l'extension QGIS serveur AtlasPrint. Lizmap utilise désormais la fonctionnalité native de QGIS Serveur pour exporter en PDF un élément de l'atlas.

      Edition WebDAV

      Faunalia a contribué directement au code source de Lizmap en ajoutant le support WebDAV dans le formulaire d'édition lorsque l'outil d'édition a été défini sur stockage WebDAV. Vous pouvez consulter la documentation en ligne. Cela fonctionne également lors de l'affichage de la popup.

      Relations entre les tables

      Le support des relations 1-n entre tables a été amélioré lors de l'édition de ces couches :

      • Ajout d'une nouvelle entité "enfant" depuis la popup d'un parent
      • Affichage du tableau des entités "enfants" depuis le formulaire d'édition d'un parent

      Add a child

      Add a child

      Ces améliorations des relations 1-n ont été financées à la fois par la ville d'Avignon et Valabre.

      Dessin Texte et mesure

      Il est possible d'annoter la carte avec du texte dans l'outil de dessin. Les mesures ont également été améliorées.

      New draw text and measure options

      Ces fonctionnalités ont été financées par le Territoire de Belfort et Lons-le-Saunier.

      Contraintes

      Lors du dessin de certaines géométries sur Lizmap, vous pouvez désormais définir une contrainte de longueur et/ou d'angle.

      Constraints

      Action

      De nouveaux "contextes" ont été ajoutés à la fonctionnalité Actions. Avant, les actions n'étaient disponibles que pour le contexte d'entité. Avec la version 3.7, les actions peuvent être définies dans le contexte couche (similaire à la fonctionnalité native de QGIS) ou même au niveau duprojet.

      Nouveaux contextes pour les actions

      Ces nouveautés ont été financées par Porte du Soleil.

      Javascript

      En raison du travail qui a été effectué lors de la légende ou d'autres fonctionnalités de Lizmap, certains scripts Javascript précédents pourraient ne plus fonctionner et devront être adaptés.

      Bonne nouvelle, certains de ces anciens scripts pourraient ne plus être nécessaires. Par exemple, à propos de la légende, vous êtes invités à passer au thème QGIS natif.

      Téléchargement

      Vous pouvez télécharger le dernier zip sur notre page des sorties.

      Vous pouvez également consulter la liste des modifications complètes ("changelog") de la version 3.7.0, en anglais.

      Modules

      À la date du 29 janvier 2024, voici la liste des modules qui ont été mis à jour pour 3.7 :

      Les autres modules sont en cours.

      Nous espérons que vous allez apprécier cette nouvelle version ?

      L'équipe 3Liz

    • sur 3liz: Release of Lizmap Web Client 3.7

      Publié: 29 January 2024, 12:00pm CET
      Lizmap Web Client 3.7

      3Liz is pleased to announce the release of Lizmap Web Client 3.7, the new major version of the application.

      Funders Avignon Territoire de Belfort Calvados French province Direction Départemental du Territoire et de la Mer de l'Hérault Faunalia Lons-le-Saunier Grand Narbonne urban community Valabre Pre-requirements and installation

      It is now required to have a minimum QGIS server 3.22. However, we highly recommend using the latest LTR version, i.e. version 3.28 or even soon the next LTR version 3.34. Check the QGIS roadmap.

      To take full advantage of this version 3.7, don't forget to update your Lizmap plugin in QGIS desktop. We've written an article dedicated to this new version.

      Features Overhaul of the default theme

      A new theme is available, bringing a more up-to-date UI. It's now also easier to update these colors, because it has been centralized using just a few CSS variables.

      New theme

      Dataviz

      In the plugin, you can find new settings about each plot. For instance, it's possible to set two different titles, depending on where the plot is displayed : either in the main dataviz panel or within a popup.

      The main new feature is the Drag&Drop layout. We have been inspired by the native feature in QGIS about the Drag&Drop form layout. In Lizmap, when you have many plots to display, you can organize them in tabs or containers.

      In QGIS, this is an example of the layout :

      New Drag&Drop layout for Dataviz

      and the result in Lizmap Web Client :

      New Drag&Drop layout for Dataviz

      These new features have been funded by DDTM 34.

      Legend

      This is one of the most visible and expected feature in Lizmap, it's possible to check/uncheck the legend items individually.

      We also reviewed the way Lizmap was managing base layers in the project. Users are now invited to use the baselayers group in the legend to define your base layers. With an updated version of the plugin, use the "Baselayers" tab to help you.

      We also decided to stick to the same behavior as in QGIS Desktop on how users are manipulating the legend. Now, when enabling a group, it will not toggle "ON" all layers included within this group.

      New theme

      To include these new features, a lot of Javascript refactoring has been done under the hood, funded by both Calvados province and Le Grand Narbonne.

      Layouts

      In the plugin, a new panel about layouts landed. You are invited to have a look to these new settings. It's possible to :

      • set per layout if we enable it or not on the web interface. Before, it was only possible to choose to enable or not printing capabilities at the project level.
      • define Lizmap groups which are allowed to access this layout
      • define a custom icon when the layout is based on an atlas.
      • reduce the number of formats available. No more Javascript needed to have a simplified interface
      • ...

      New print options in the plugin

      These new features have been funded by DDTM 34.

      During this work, we deprecated the QGIS server plugin AtlasPrint. Lizmap now uses the native feature from QGIS Server for printing an atlas feature.

      Editing WebDAV

      Faunalia contributed directly on the Lizmap source code by adding WebDAV support in form when the editing widget has been set to WebDAV storage, check the online documentation. It works as well when displaying the popup.

      Relations between tables

      The support of relations 1-n between tables has been improved when editing these layers :

      • Adding new "child" features from the popup of a parent
      • Displaying the table of "child" features from the editing form of a parent

      Add a child

      Add a child

      These improvements about relations 1-n were funded by both Avignon city and Valabre.

      Drawing Text and measures

      It's possible to annotate the map with some text in the drawing tool. Measures have been improved as well.

      New draw text and measure options

      These features were funded by Territoire de Belfort and Lons-le-Saunier.

      Constraints

      When digitizing some geometries on Lizmap, you can now set some length and/or angle constraints.

      Constraints

      Actions

      Some new scopes have been added the Actions feature. Before, it was only the feature scope. With 3.7, Actions can be defined in the layer scope or (similar to QGIS native actions feature) or even in the project scope.

      New contexts for Actions

      These new features have been funded by Porte du Soleil.

      Javascript

      Due to the work which have been done during the legend or other features in Lizmap, some previous Javascript script might not work anymore and need to be adapted.

      Good news, some of these legacy scripts might not be needed anymore. For instance, about the legend, you are invited to switch to the native QGIS theme feature.

      Download

      You can download the latest zip on our releases page.

      You can also check the full changelog of version 3.7.0.

      Modules

      As of January 29rd 2024, this is the list of modules which have been released for 3.7 :

      Other modules are work-in-progress.

      We hope you will enjoy this new version ?

      The 3Liz team

    • sur Free and Open Source GIS Ramblings: Trajectools update: stop detection & trajectory styling

      Publié: 27 January 2024, 2:38pm CET

      The Trajectools toolbox has continued growing:

      I’m continuously testing the algorithms integrated so far to see if they work as GIS users would expect and can to ensure that they can be integrated in Processing model seamlessly.

      Because naming things is tricky, I’m currently struggling with how to best group the toolbox algorithms into meaningful categories. I looked into the categories mentioned in OGC Moving Features Access but honestly found them kind of lacking:

      Andrienko et al.’s book “Visual Analytics of Movement” comes closer to what I’m looking for:

      … but I’m not convinced yet. So take the above listed three categories with a grain of salt. Those may change before the release. (Any inputs / feedback / recommendation welcome!)

      Let me close this quick status update with a screencast showcasing stop detection in AIS data, featuring the recently added trajectory styling using interpolated lines:

      While Trajectools is getting ready for its 2.0 release, you can get the current development version directly from [https:]] .

    • sur GIScussions: Geomob London – a Cracking Night of Maps

      Publié: 26 January 2024, 3:38pm CET

      I must have said this before but I will say it again, if you live anywhere near to London and you are into geotech, maps or location influenced applications then you should give Geomob a try. I’d offer you a money back guarantee but as it’s free that isn’t necesary but more on that later.

      On Wednesday night (24th Jan 2024) we had nearly a hundred people attending what truly was a cracking event, the room was full (almost overfull), the speakers were eclectic, wide ranging and brilliant, the conversation was sparkling and mappy and it was a treat to be able to stand outside the pub drinking in January.

      For a run down on the 5 speakers and their talks have a look at the @Geomob thread on mastodon

      The talks covered a new javascript library, a Welsh language version of OSM, crowd sourcing neighbourhood boundaries in New Zealand, mapping bus routes and stops in India and the audience favourite (and mine) A Map Inside. This was a perfect selection of talks, technical, quirky, passionate and absorbing. As always, the best is saved for the end when we go to the nearby pub and chat, make new friends and discover new opportunities.

      There is something very special about Geomob and that is perhaps evidenced by its expansion from its origins in London to regular events in Barcelona, Berlin, Finland, Lisbon, Munich and Tel Aviv. Geomob would not be possible without the energy and commitment of Ed Freyfogle whose company OpenCage is the principal sponsor of the events (and the podcast) and the generous sponsors – OpenCage, Mappery, Esri UK, Ed Parsons, Geolytix and SplashMaps.

      But here is the rub, the numbers are increasing (which is good) and beer prices are also increasing (which is not so good) so the cost of running the events is increasing faster than sponsorship. We need more sponsors or larger sponsorship to keep Geomob growing and spreading geo-goodness to a wider audience, can you help us? It could be an individual or a company sponsoring events in a city or worldwide or it could be that you would like to sponsor a podcast episode and get a mention of your organisation as a sponsor in our podcast (great if you are hiring or launching a new service). Ed and I have some ideas for novel approaches to sponsorship and would be happy to discuss them with you, just message me through the contact form.

      Geomob always needs speakers at the events and on the podcast so if you fancy presenting or being interviewed get in touch with us.

    • sur GeoSolutions: GeoSolutions at GeoWeek Feb 11-13 (Booth 548): Cesium/3D Tiles Support in MapStore

      Publié: 25 January 2024, 2:08pm CET

      You must be logged into the site to view this content.

    • sur GeoTools Team: GeoTools 30.2 Released

      Publié: 25 January 2024, 7:56am CET
      &nbsp;The GeoTools team is pleased to the release of the latest stable version of&nbsp;GeoTools 30.2: geotools-30.2-bin.zip&nbsp; geotools-30.2-doc.zip&nbsp; geotools-30.2-userguide.zip&nbsp; geotools-30.2-project.zip&nbsp; This release is also available from the&nbsp;OSGeo Maven Repository&nbsp;and is made in conjunction with GeoServer 2.24.1. The release was made by Jody Garnett (GeoCat).
    • sur GeoServer Team: GeoServer 2.24.2 Release

      Publié: 24 January 2024, 1:00am CET

      GeoServer 2.24.2 release is now available with downloads (bin, war, windows), along with docs and extensions.

      This is a stable release of GeoServer recommended for production use. GeoServer 2.24.2 is made in conjunction with GeoTools 30.2, and GeoWebCache 1.24.2.

      Thanks to Jody Garnett (GeoCat) for making this release, everyone who contributed, and to Georg Weickelt and Peter Smythe for preflight testing.

      Security Considerations

      This release addresses security vulnerabilities and is considered an essential upgrade for production systems.

      See project security policy for more information on how security vulnerabilities are managed.

      Release notes

      Improvement:

      • GEOS-11213 Improve REST external upload method unzipping
      • GEOS-11246 Schemaless plugin performance for WFS
      • GEOS-11219 Upgraded mail and activation libraries for SMTP compatibility

      Bug:

      • GEOS-9757 Return a service exception when client provided WMS dimensions are not a match
      • GEOS-11051 Env parametrization does not save correctly in AuthKey extension
      • GEOS-11223 Layer not visible in preview/capabilities if security closes the workspace, but allows access to the layer
      • GEOS-11224 Platform independent binary doesn’t start properly with default data directory
      • GEOS-11235 preauthentication filters - session reuse even after having logout
      • GEOS-11241 ModificationProxy breaks information hidding on CatalogInfo.accept(CatalogVisitor) exposing the proxied object
      • GEOS-11250 WFS GeoJSON encoder fails with an exception if an infinity number is used in the geometry
      • GEOS-11255 Multiple inserts in WPS with different idGen strategies does not work

      Task:

      For the complete list see 2.24.2 release notes.

      Community Updates

      Community module development:

      Community modules are shared as source code to encourage collaboration. If a topic being explored is of interest to you, please contact the module developer to offer assistance.

      About GeoServer 2.24 Series

      Additional information on GeoServer 2.24 series:

      Release notes: ( 2.24.2 | 2.24.1 | 2.24.0 | 2.24-RC )

    • sur GeoSolutions: Partnership with Nordiq Group

      Publié: 23 January 2024, 12:25pm CET

      You must be logged into the site to view this content.

    • sur Stefano Costa: I libri che ho letto nel 2023

      Publié: 20 January 2024, 12:46pm CET

      Fine anno, tempo di elenchi (bilanci, no). Nel 2023 ho letto pochino.

      David Graeber, Debito

      Questo è il libro che mi ha impegnato per più tempo. È un saggio, ed era da tempo che non leggevo un saggio, non sono più abituato allo stile e all’impegno richiesto. È un testo rivoluzionario a livello sociologico e psicologico (smonta il senso di colpa!) ancora più che a livello economico. Ha uno stile abbastanza scorrevole (per me) ma comunque è denso di nozioni, confronti tra fatti e conseguenze scagliate come frecce ad ogni pagina. Non conoscevo David Graeber prima della pubblicazione postuma del libro L’alba di tutto (The dawn of everything), scritto a quattro mani con l’archeologo David Wengrow. Ho pensato che non ci fosse nessuna fretta e fosse invece un bene partire da qui per conoscere il lavoro di Graeber, e sono contento di averlo fatto.

      Enzo Barnabà, Morte agli Italiani!

      Il massacro di Aigues-Mortes, che il 17 agosto 1893 costò la vita a nove operai italiani linciati da una folla inferocita, rappresenta un episodio capitale nella storia dei rapporti tra l’Italia e la Francia.

      Questo libro di Enzo Barnabà è breve, preciso e senza orpelli.

      Racconta la tragedia del massacro di Aigues-Mortes, le premesse che lo hanno reso possibile, le conseguenze che ebbe in Italia capaci di sconvolgere gli assetti politici sia del governo sia delle giovani formazioni socialiste.

      Lucia Tozzi, Dopo il turismo

      Questo libro è stato scritto di getto nei mesi del lockdown. Trafigge come una spada convinzioni e luoghi comuni, in modo anche un po’ crudele. Il turismo è insostenibile. Distrugge le comunità delle persone, i luoghi abitati da queste comunità.

      Sono passati appena 3 anni e sembra la cronaca della rivoluzione mancata di un altro pianeta. Abbiamo già dimenticato tutto quello che è accaduto e quello che avrebbe potuto accadere.

      Il libro può essere “acquistato” gratuitamente in formato ePub dal sito dell’editore nottetempo.

      Luca Mercalli, Salire in montagna

      La cosa che mi fa incazzare di questo libro è che è scritto da una persona di cui avevo una stima incondizionata, frutto di altre letture (non della trasmissione televisiva). Ma questo libro sembra scritto da Paolo Rumiz. Infatti Mercalli ce l’ha con chi abita in montagna, con chi non ci abita più, con chi non ci abita e non ci ha mai abitato. Lo scopo principale del libro è lamentarsi della burocrazia che gli impedisce di costruire la sua seconda casa, dove può trovare riparo dalle zanzare della sua abitazione indipendente di pianura. Salire in montagna sarebbe un antidoto al riscaldamento globale, dice il sottotitolo, ma se va bene dire una fesseria del genere al bar, trovarlo propagandato da un climatologo fa per l’appunto incazzare. Le montagne tutte e in particolare le Alpi sono uno degli ecosistemi più fragili di fronte al cambiamento climatico, e per fortuna questa semplice nozione fa capolino qua e là tra le pagine del libro. Costruire una casa recuperando un edificio storico invece che buttarlo giù è una bella cosa, molto costosa (ma Mercalli alla fine non ci dice quanto) ma ne vale la pena perché potremmo ripopolare la montagna lavorando al computer, secondo la logica deformata di questo libro. Non ne sopporto l’idea di fondo perché è la propaganda di una idea individualista, come se i venti milioni di abitanti della pianura padana potessero trovare spazio per la loro seconda casa sulle montagne e salvarsi così tutti dal riscaldamento globale (che li lascerà comunque a morire di fame). E nelle prime pagine è riportata virgola per virgola una pseudoetimologia sull’idronimo della Dora presa da Wikipedia, che mi ha reso da subito indisposto. E non c’è nemmeno una carta geografica.

      Assia Djebar, Bianco d’Algeria

      Questo libro è sicuramente quello che ho faticato di più a leggere, nonostante non sia molto lungo. Trasuda nella sua componente principale un dolore immenso, il dolore di un popolo intero. Parla dello sradicamento ineludibile di chi deve usare la lingua degli oppressori per esprimersi, anche quando questa espressione raggiunge livelli altissimi e anche quando gli oppressori francesi si manifestano come la più grande sciagura mai accaduta al popolo algerino. Parla di profondissimi legami con le persone che per la libertà hanno messo tutto il proprio corpo e non solo il proprio intelletto, a costo di perdere la vita.

      Chinelo Okparanta, Sotto gli alberi di udala

      Questo libro inizia con una carta geografica della Nigeria, e questo potrebbe essere sufficiente a metterlo vicino al mio cuore (perché mi piacciono molto le carte geografiche). Ritrovo il Biafra devastato e dilaniato dalla ferocia della guerra civile di Metà di un sole giallo, con un pesantissimo supplizio in più. La protagonista è costretta a vivere con crescente angoscia la propria omosessualità, perché in Nigeria è un peccato mortale che viene punito in modo sommario, anche con linciaggi. Ma nella seconda parte si riaccende la speranza. È la stessa Africa dove oggi vacilla un po’ il colonialismo europeo.

      Beata Umubyeyi Mairesse, I tuoi figli ovunque dispersi

      Anche questo libro è un racconto di sradicamento, che attraversa più generazioni. Tra Ruanda e Francia, tra nonna, madre, figlio, la protagonista trova un senso, anche linguistico, al proprio passato e al proprio futuro, nonostante il trauma del genocidio, della fuga dal genocidio e dello sradicamento che ne deriva. Bellissimo, straziante e lucido.

      Gabriela Wiener, Sanguemisto

      Anche questo libro è un racconto di sradicamento, che attraversa più generazioni (non ho sbagliato a fare copia e incolla). È un libro molto forte che si aggancia quasi chimicamente con letture accademiche che sto facendo in questo periodo, su archeologia e colonialismo (in Italia non esiste il postcolonialismo). Ma è anche un tripudio agrodolce di femminilità.

      Inizio il 2024 leggendo L’incendio di Cecilia Sala e Tutta intera di Espérance Hakuzwimana.

    • sur gvSIG Team: IDE del Ayuntamiento de Albacete, optimizando la gestión de la información

      Publié: 18 January 2024, 3:04pm CET

      Os traemos una presentación de la Infraestructura de Datos Espaciales (IDE) de Albacete, proyecto estratégico destinado a proporcionar un marco tecnológico y organizativo para la gestión, acceso y uso de la información geoespacial en el ámbito del municipio de Albacete. Este proyecto ha tenido como objetivo principal mejorar la toma de decisiones, impulsar el desarrollo urbano sostenible y fomentar la colaboración entre los diferentes actores involucrados en la planificación y gestión del territorio.

      La ponencia presenta los trabajos principales y avances de la implantación de la IDE de Albacete. Durante el proyecto se ha llevado a cabo tanto la recopilación, integración y homogeneización de una amplia variedad de datos geoespaciales como el desarrollo de herramientas orientadas a ampliar la funcionalidad de la IDE y a fomentar la participación de los distintos departamentos municipales.

      En cuanto a los avances logrados, se ha implementado una plataforma tecnológica robusta y escalable, con base tecnológica en la Suite gvSIG, que permite la gestión eficiente de la información geoespacial y su difusión a través de un conjunto de geoportales y servicios web interoperables. Además de los geoportales de uso interno,se ha publicado un visor cartográfico principal y un número creciente de geoportales temáticos (turismo, urbanismo, movilidad, etc.).

      Además, se han desarrollado herramientas específicas que facilitan el acceso y uso de los datos geoespaciales por parte de los diferentes usuarios del Ayuntamiento de Albacete, destacando integraciones con otros sistemas informáticos como el gestor de expedientes SEDIPUALBA / SEGEX, el Catastro con acceso a datos protegidos o el Padrón. Integrada con la IDE desarrollada con gvSIG Online, también se cuenta con la app móvil gvSIG Mapps para la toma de datos en campo, tanto en modo online como offline, y un catálogo de metadatos basado en Geonetwork.

      Por último, hay que reseñar que el proyecto también ha implicado un esfuerzo en formación y divulgación entre el personal técnico del Ayuntamiento de Albacete.

      En conclusión, la implantación de la Infraestructura de Datos Espaciales de Albacete representa un paso significativo hacia una gestión territorial más eficiente y sostenible. Un proyecto que puede servir de referencia para otros municipios con necesidades similares.

    • sur GeoSolutions: GeoSolutions is now a Cesium Certified Developer – 3D Tiles

      Publié: 18 January 2024, 12:24pm CET

      You must be logged into the site to view this content.

    • sur Oslandia: (Fr) [En image] Giros 360 : un jumeau numérique pour la Garonne

      Publié: 18 January 2024, 9:15am CET

      Sorry, this entry is only available in French.

    • sur gvSIG Batoví: NUEVO GRUPO TELEGRAM PARA URUGUAY (PERO ABIERTO A OTROS…)

      Publié: 17 January 2024, 6:19pm CET

      Hay un nuevo grupo en Telegram para los «geoinquietos»; de Uruguay pero abierto a todo aquel que quiera sumarse. Para compartir información, oportunidades de formación, becas, inquietudes, consultas, y todo aquello vinculado de algún modo a lo geoespacial. Siempre con respeto y buena onda: 

      [https:]]

      Los invitamos a unirse.

    • sur Sean Gillies: 2024 running goals

      Publié: 1 January 2024, 12:00am CET

      I've registered for the Never Summer 100K (my 3rd) at the end of July, the Black Squirrel Trail Half-Marathon (my 4th) in early September, and the Bear 100 Mile at the end of September (my 2nd try). All are events that I've run before, but never as a set. I ran Never Summer and Black Squirrel together in 2021. I did the shorter 60K version of Never Summer last year along with the Bear.

      I intend to do Never Summer as part of my build up for the Bear 100. I'll give it a good go, but stay composed, and be mindful that it will be just the first week of my peak training block. I registered for Black Squirrel because I've missed running it, could be really fit that week, and some faster running might be a fun break from the long slogs of late summer.

      Finishing the Bear 100 is my number one goal. I'd like to finish and do well at Never Summer and Black Squirrel, too, but am ready to sacrifice these goals if I must.

      Along the way to finishing the Bear I'm going to try to add 250 miles at 220 feet per mile to last year's numbers, so 1850 miles running and 275,000 feet of climbing. This is feasible if things go well. I ran 2000 miles in 2021.

      I aim to lose at least 15 pounds in the next 9 months so I don't have to drag them for 30 hours through the mountains of Utah and Idaho. I'll have to omit junk food and DIPAs to do it. In their place, I can work on training my stomach to handle Spring Energy gels.

      My last goal is to increase the flexibility and durability of my ankles so that I have a better chance of weathering the trails of the Bear in 2024. I'm planning to get some physical therapy help on this early this next spring.

      Good luck in reaching your own goals for next year, whether they are on or off trail!

    • sur Tom Kralidis: Cheers to 2023

      Publié: 31 December 2023, 8:53pm CET
      2023 was a memorable year and quite the ride! Eventful and full swing on so many fronts. Here’s the annual rundown: pygeoapi: two releases, lots of development at code sprints and continuous improvement for the project. Dutch API rules, CRS and increased support for the various standards as they evolve. As well, numerous valuable discussions […]
    • sur Sean Gillies: Running in 2023

      Publié: 31 December 2023, 2:34am CET

      2023 was a pretty good running year. I was both ambitious and conservative, overcame some adversity and learned a lot. The numbers for 2023:

      • 363 hours

      • 1610 miles

      • 220,128 feet D+

      • 3 ultra finishes

      • 1 DNF

      Coming off a down year, I signed up for my first 100 mile run, and tried to do it on fairly minimal training relative to the big miles I ran in 2021. I got my third Quad Rock 50 mile finish in May, did the Kettle Moraine 60K fun run in June, and the Never Summer 60K in July.

      I had to manage and run through an episode of intense back pain in July, but recovered in time for the Bear 100 in September. At that race I was on track to finish in less than 36 hours, but wrecked my left ankle and dropped out at 61 miles. I'm going to try it again.

      I ran fewer miles than in 2019-2021 years, but did a lot of climbing (including a new weekly total high), and started 4 ultra-marathons. That's a new high for me.

      In 2024, I'll be trying a different mix of events. And I'll be back here at Kelly Lake.

      https://live.staticflickr.com/65535/53093994225_d7e5b0e5db_b.jpg

      Kelly Lake at Never Summer 2023

    • sur From GIS to Remote Sensing: Remotior Sensus Update: Version 0.3

      Publié: 30 December 2023, 1:38pm CET
      I'm glad to announce the update of Remotior Sensus to version 0.3.The main new feature is a new module for displaying an interface similar to the Semi-Automatic Classification Plugin (which is based on Remotior Sensus) in Jupyter notebooks.Jupyter notebooks are interactive documents that can be edited in a web browser, which allow for coding in Python and interact with widgets.
      The Jupyter interface is still in development and only a few tools are available. For the moment, the available tools are:
      • search and download of remote sensing images;
      • creation and management of Band Sets;
      • the dock for creating a training input and saving ROIs created interactively through polygons or region growing;
      • the import of vectors in training input;
      • the plot of spectral signatures;
      • the classification of the Band Sets;
      • a file browser for selecting files or directories.
      For example the following command displays the interface for downloading products.
      import remotior_sensus
      rs = remotior_sensus.Session(n_processes=2, available_ram=1000)
      rs.jupyter().download_interface()



      Of course this is a proof of concept, considering that this interface doesn't have all the functions of the Semi-Automatic Classification Plugin, and there are a few differences in the look and feel because of the characteristics of Jupyter notebooks.A tutorial describing this new feature will be released soon.
      For any comment or question, join the Facebook group or GitHub discussions about the Semi-Automatic Classification Plugin.

    • sur Andrea Antonello: SMASH 1.8 is out!

      Publié: 29 December 2023, 4:58pm CET

      Dear all, it has been a while, but some stuff has been going on in the SMASH community. And we now have a new release. So let's have a look at what is new.


      We farewell the play store

      It is a while we have additional work to do and are loosing usability in SMASH due to the restrictions imposed by the google store. The most impacting has sure been the fact to not be able to access the phone memory freely. And asking google permission to do so didn't work out, since it seems that only file browsers applications and antivirus need to access the memory freely.

      With the help of the F-Droid community (special thanks to IzzySoft, Linsu and Licaon-kter) we have been able to make our second appearance on the f-Droid store. And that is now enough to completely migrate there. So we made a last release of SMASH for the store today, but it will be the last one. Please from now on come and get SMASH from the F-Droid store, where the real open source apps live.

      Flutter map

      We finally made an upgrade of flutter_map, the map widget library used. This took so long, because the architecture of the library had changed and took some rework inside SMASH.

      And now on to the new features:

      Geometries inside forms

      One nice addition that we have to thank Luca Delucchi and the Digiagriapp for is the possibility to insert inside of complex notes.

       

      URL based forms combos

      It is now possible to insert in forms URLs to substitute long item lists in comboboxes (dropdown lists). This allows forms to be smaller in case of large amounts of items and also to be more dynamic.

      Gejson layer support

      Geojson is now one of the supported formats in read and write mode (together with geopackage and postgis). It can be used in combination with sld styling as for the other vector formats.

      More efficient toolbar

      The toolbar has been redone with more usability in mind.

      Editing is done on a sidebar now:

      and in the settings it is possible to remove unused buttons:

      leads to:

       

       Other tiny things that might be worth telling
      • now the default behavior of tile maps is to zoom beyond the max zoom level by scaling (no more white emptiness)
      • the current log panel has now 3 sizes for better overlay on map
      • the info tool is now a box selection tool and as such way more usable
      • online sources have been reworked to have the possibility to add and remove from the default. Also the default maps have been reviewed to ensure they are working
      • feature info now also presents the length and area of the geometry as derived value
      • we did many many bugfixes

      One last thing to add. SMASH 1.8 already presents the possibility to import layers from the new GSS server. This is still in testing mode and ongoing work with the Region Piemonte and not yet disseminated as such. Just to give an idea, it will be possible to generate database tables on the server based on form definitions and download the tables as layers from the GSS and sync them two-ways. Also it will allow for point, line and polygon geometries. All in all it will be an alternative way to take notes, still using the form system and having a way to synchronize data to teh central server instance. But well, this will probably be the next story to tell, once testing is done.

      Enjoy!!
       

      	
    • sur SIG Libre Uruguay: Y se va el último…

      Publié: 28 December 2023, 2:36pm CET