Skip to content

Commit

Permalink
Merge pull request #28 from jjimenezshaw/upgrade-proj-9.3.1
Browse files Browse the repository at this point in the history
Upgrade PROJ 9.3.1
  • Loading branch information
jjimenezshaw authored Dec 3, 2023
2 parents a30c3e2 + cf48cf5 commit 28dc982
Show file tree
Hide file tree
Showing 1,595 changed files with 4,421 additions and 3,214 deletions.
1,569 changes: 1,077 additions & 492 deletions crslist.json

Large diffs are not rendered by default.

19 changes: 16 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,12 @@
</head>

<body onload="load()">
<h1>CRS Explorer - PROJ <span id="proj_version">9.3.0</span> codes</h1>
<h1>CRS Explorer - PROJ <span id="proj_version">9.3.1</span> codes</h1>
<div>
<label for="version">PROJ version: </label>
<select name="version" id="version" onchange="versionChanged(this)">
<option value="latest">latest</option>
<option value="9.3.1">9.3.1</option>
<option value="9.3.0">9.3.0</option>
<option value="9.2.1">9.2.1</option>
<option value="9.2.0">9.2.0</option>
Expand Down Expand Up @@ -746,16 +747,28 @@ <h3>Selected &amp; Filtered Systems (<span class='loader-text'>Loading&hellip;</

function loadDb() {
processVersionFromParams(window.location)
fetch(versioned_url + 'crslist.json', {
const url = versioned_url + 'crslist.json';
fetch(url, {
method: "GET",
})
.then(response => response.json())
.then(response => {
if (!response.ok) {
const message = "Something went wrong downloading " + url
alert(message);
updateURL();
throw new Error(message);
}
return response.json();
})
.then(data => {
fullDB = data;
createAuthorities(data);
updateFromParams(window.location);
fillTables(data);
runFilter();
})
.catch((error) => {
console.log(error)
});
}

Expand Down
18 changes: 9 additions & 9 deletions metadata.txt
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
pyproj info:
pyproj: 3.6.1.dev0
PROJ: 9.3.0
pyproj: 3.6.1
PROJ: 9.3.1
data dir: /usr/share/proj/
user_data_dir: /tmp/proj
PROJ DATA (recommended version): 1.15
PROJ DATA (recommended version): 1.16
PROJ Database: 1.2
EPSG Database: v10.094 [2023-08-08]
ESRI Database: ArcGIS Pro 3.1 [2023-19-01]
EPSG Database: v10.098 [2023-11-24]
ESRI Database: ArcGIS Pro 3.2 [2023-11-02]
IGNF Database: 3.1.0 [2019-05-24]

System:
python: 3.10.12 (main, Jun 11 2023, 05:26:28) [GCC 11.4.0]
python: 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0]
executable: /home/venv/bin/python3
machine: Linux-6.2.0-1012-azure-x86_64-with-glibc2.35
machine: Linux-6.2.0-1016-azure-x86_64-with-glibc2.35

Python deps:
certifi: 2023.7.22
certifi: 2023.11.17
Cython: None
setuptools: 59.6.0
pip: 23.2.1
pip: 23.3.1
4 changes: 2 additions & 2 deletions scripts/gen_file.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ set -Eeuo pipefail
echo 'Set first argument to "addgit" if you want to add wkt files automatically'

# indicate DOCKER PROJ version
PROJ_VERSION=9.3.0
PYPROJ_VERSION=c77e346d4e0ecc07cdc495fcaefafea09a8dde5c # fixed 3.6.0
PROJ_VERSION=9.3.1
PYPROJ_VERSION=3.6.1
TAG="crs-explorer:$PROJ_VERSION"

# prepare destination
Expand Down
Loading

0 comments on commit 28dc982

Please sign in to comment.