pyproj Questions
3
I have the GeoJSON
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Polygon",
"coordinates": [
[[13.65374516425911, 52.3853338281...
3
I'm trying to install geopandas on my M1 mac and I'm running into errors
I tried to pip install all the dependencies individually but where I'm tripping up is in the install of pyproj.
I installed ...
Cadge asked 16/2, 2022 at 7:11
4
I have used a fresh anaconda install to download and install all the required modules for osnmx library but I got the following error:
Cheeky asked 9/1, 2020 at 6:14
2
Solved
I wrote a code using the pyproj library and converted this code to an exe file for use on another computer. I added the pyproj to the requirements.txt file. And I installed the library with the req...
1
Solved
Let's say I have a GeoDataFrame with a CRS set.
gdf.crs
gives me
<Projected CRS: EPSG:25833>
Name: ETRS89 / UTM zone 33N
Axis Info [cartesian]:
- [east]: Easting (metre)
- [north]: Northing ...
1
I want to use PyProj. I follow the installation instructions given in the documentation
conda config --prepend channels conda-forge
conda config --set channel_priority strict
conda install pyproj
...
2
Is there a method to extract a grid of coordinates (purple dots) from a center coordinate, with a 100 meters distance between each coordinate for example?
For example having an input of latitude a...
Cento asked 1/10, 2021 at 17:2
8
Solved
I'm trying to solve my issue in my own but I couldn't, I'm trying to run this code in every format you can imagine and in ArcGIS pro software it's the same I can't find this error message in any ot...
Ulrikeulster asked 28/3, 2019 at 5:2
3
How can I convert geodetic (latitude, longitude, altitude) coordinates into local tangent plane ENU (East, North, Up) coordinates with Python?
pyproj package does not seem to have the right functio...
Boabdil asked 21/11, 2018 at 9:21
1
Solved
I am on Ubuntu 19.10 and I am trying to install proj 7.2.0
According to the website I should use this:
sudo apt-get install proj-bin
But it seems that this command installs version 5.2.0:
Reading...
1
in respect to the previous examples in stackoverflow, I searched for other alternatives in order to create a scalebar.
In my research, I verified that the Basemap class from mpl_toolkits.basemap se...
Grave asked 12/8, 2020 at 22:43
2
Solved
My code works well when it's .py
but when I make .exe file with pyinstaller, it shows ModuleNotFoundError.
I write this when I made .exe
pyinstaller -F MyCode.py
How can I solve this problem...
Baccalaureate asked 24/4, 2019 at 7:45
2
Solved
I am trying to convert netCDF files to EPSG:3857 for use with Mapbox by using GDAL. This would be .nc to .nc conversion. Not to raster. I am open to using GDAL or other methods to do this. This dat...
Mammy asked 2/3, 2019 at 9:13
2
Solved
I am attempting to install pyproj, although am getting a Proj executable not found. Please set PROJ_DIR variable error.
COMMAND
$ pipenv install pyproj
I have also tried pipenv git+https://githu...
1
© 2022 - 2024 — McMap. All rights reserved.