560 questions
1
vote
0
answers
61
views
the refresh_before option from MapProxy doesn't work
I've configured a WMS with MapProxy and I am currently working on the caching configuration.
The refresh_before option is explained in the documentation. As far as I understand, MapProxy only caches ...
0
votes
0
answers
19
views
Intermittent WMTS Service Stalling and Flickering with SharpMap 1.2 and BruTile 2.2.0
I'm encountering an intermittent issue when rendering a WMTS service in Windows Forms using SharpMap 1.2 and BruTile 2.2.0. The service works correctly initially, but occasionally, it stops rendering ...
0
votes
0
answers
36
views
How to retrieve multiple products with list of ID's in ShippingBo API?
I need to retrieve details for a list of orders using their IDs.
Currently, I'm looping through each ID and making individual API calls like this:
https://app.shippingbo.com/products?search[id]=a
I ...
1
vote
0
answers
107
views
Downloaded TIFF file from WMS server using Python shows values that differ from the original
I'm using the following Python code to download a tiff file from a WMS server:
import requests
import numpy as np
import rasterio
from rasterio.transform import from_origin
from rasterio.transform ...
0
votes
1
answer
97
views
WMTS layer misalignment with WMS GetFeatureInfo
Just curious if anyone has encountered this before.
I have a 1m raster dataset tiled cached and served as WMTS layer. And I'm displaying it on a web map while also querying it for the raster pixel ...
0
votes
0
answers
92
views
Calculate shape from WMS BBOX in projection
I want to write a little wms service in php, querying polygons from a mariadb database and use it with leaflet.
leaflet.js together with proj4leaflet.js calls my service with a BBOX parameter, ...
0
votes
1
answer
256
views
GeoServer Layer Not Displaying Entire GeoTIFF Image
I'm having an issue with GeoServer not displaying the entire GeoTIFF image. The image is about 5.23 GB and displays correctly in QGIS, but when I create a layer in GeoServer, only a portion of the ...
0
votes
1
answer
1k
views
WMS service basic authentication
I am building a leaflet map on a server without root access.
I'd like to add a WMS service which is secured by basic authentication(username and password).
There is a simple method in leaflet adding ...
0
votes
1
answer
116
views
Load specific layer of GeoServer to A WMSLayer using Esri JSAPI 4
I am trying to load a geoserver wms layer to a WMSLayer using Esri JS API 4.x, thought the code below loads ok using Esri JS API 3.x
require(["esri/layers/WMSLayer","esri/layers/...
0
votes
0
answers
294
views
geoserver: Connection to external wms fails
When I set up a connection to an external wms service in my geoserver, the connection test fails with the error "connection reset".
I already switched http-connection-pooling on and of, with ...
0
votes
1
answer
75
views
QGIS - Get the nearests neighbors from a WMS layer
Usually, to retreive the nearests neighbors between two vector layers, I will use the algorithm "Join attributes by nearest".
In my situation, I have a vector layer and many WMS layers.
Is ...
0
votes
0
answers
173
views
How to use geotools to load tif files and generate images using WMS like GeoServer
I want to use geotools to write code to implement geoserver loading tif files to implement wms services. After loading geotools, I performed wms output, but my code encountered two problems: the first ...
1
vote
1
answer
511
views
How to fix IntersectionObserver causing a memory leak in my OpenLayers web app?
So I'm developing a web application called MSC AniMet. This application is coded using Vue2 and Vuetify2 and it's essentially a big OpenLayers map with a bunch of stuff and functionality added to it ...
0
votes
0
answers
275
views
how to apply custom sld to wms layer in layer call(sld_body parameter).I tried but defaullt style only applied not the style i send through sld_body
const sld = ` <StyledLayerDescriptor version="1.0.0"
xsi:schemaLocation="http://www.opengis.net/sld StyledLayerDescriptor.xsd"
xmlns="http://www.opengis....
0
votes
0
answers
50
views
How to remove piecemeal loading from WMS Geoserver and load the entire map using react-leaflet?
I'm implementing a timelapse, selecting a date range, but I'm not able to show the entire map at once, it's loading via Tiles.
const Map = () => {
const [selectedLayers, setSelectedLayers] = ...