Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PoC getting Antlr4 to work as WktCrs parser. #122

Draft
wants to merge 2 commits into
base: develop
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
PoC getting Antlr4 to work as WktCrs parser.
FittedCS still Todo.
  • Loading branch information
driekus77 committed Jul 30, 2024
commit e99c39ec5ff2886ddb98f139b89a65a42d5764cf
270 changes: 270 additions & 0 deletions src/ProjNet/IO/Wkt/WktCrs.g4
Original file line number Diff line number Diff line change
@@ -0,0 +1,270 @@
/*
[The "BSD licence"] Copyright (c) 2023 Nikolay Fiykov All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above
copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without
specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* For parsing propeties file (like GeoTools epsg.properties), use starting rule "propsFile". For parsing single WKT CRS definition, use starting rule "wkt".
*/

// $antlr-format alignTrailingComments true, columnLimit 150, minEmptyLines 1, maxEmptyLinesToKeep 1, reflowComments false, useTab false
// $antlr-format allowShortRulesOnASingleLine false, allowShortBlocksOnASingleLine true, alignSemicolons hanging, alignColons hanging

grammar WktCrs;


propsFile
: propRow* EOF
;

propRow
: commentLine
| epsgDefLine
;

commentLine
: COMMENT_LINE
;

epsgDefLine
: epsgCode EQ wkt
;

wkt
: compdcs
| projcs
| geogcs
| vertcs
| geoccs
| localcs
;

compdcs
: 'COMPD_CS' LPAR name COMMA (projcs | geogcs) COMMA vertcs COMMA authority RPAR
;

projcs
: 'PROJCS' LPAR name COMMA geogcs COMMA projection COMMA (parameter COMMA)+ unit COMMA (
extension COMMA
)? (
axis COMMA
)* authority RPAR
;

geoccs
: 'GEOCCS' LPAR name COMMA datum COMMA primem COMMA unit COMMA (axis COMMA)+ authority RPAR
;

geogcs
: 'GEOGCS' LPAR name COMMA datum COMMA primem COMMA unit (COMMA axis)* (COMMA authority)? RPAR
;

vertcs
: 'VERT_CS' LPAR name COMMA vertdatum COMMA unit COMMA axis COMMA authority RPAR
;

localcs
: 'LOCAL_CS' LPAR name COMMA localdatum COMMA unit COMMA (axis COMMA)+ authority RPAR
;

datum
: 'DATUM' LPAR name COMMA spheroid (COMMA towgs84)? (COMMA authority)? RPAR
;

vertdatum
: 'VERT_DATUM' LPAR name COMMA type COMMA authority RPAR
;

localdatum
: 'LOCAL_DATUM' LPAR name COMMA type (COMMA authority)? RPAR
;

spheroid
: 'SPHEROID' LPAR name COMMA semiMajorAxis COMMA inverseFlattening (COMMA authority)? RPAR
;

towgs84
: 'TOWGS84' LPAR dx COMMA dy COMMA dz (COMMA ex COMMA ey COMMA ez (COMMA ppm)?)? RPAR
;

extension
: 'EXTENSION' LPAR name COMMA projtext RPAR {}
;

authority
: 'AUTHORITY' LPAR authorityName COMMA code RPAR
;

primem
: 'PRIMEM' LPAR name COMMA longitude (COMMA unit)? (COMMA authority)? RPAR
;

unit
: 'UNIT' LPAR name COMMA conversionFactor (COMMA authority)? RPAR
;

axis
: 'AXIS' LPAR name COMMA axisOrient RPAR
;

projection
: 'PROJECTION' LPAR name (COMMA authority)? RPAR
;

parameter
: 'PARAMETER' LPAR name COMMA value RPAR
;

authorityName
: '"EPSG"'
| '"ESRI"'
;

axisOrient
: 'EAST'
| 'WEST'
| 'NORTH'
| 'SOUTH'
| 'NORTH_EAST'
| 'NORTH_WEST'
| 'UP'
| 'DOWN'
| 'OTHER'
| 'GEOCENTRIC_X'
| 'GEOCENTRIC_Y'
| 'GEOCENTRIC_Z'
| name
;

epsgCode
: PKEY
| NUMBER
;

name
: TEXT
;

number
: NUMBER
;

type
: NUMBER
;

semiMajorAxis
: NUMBER
;

inverseFlattening
: NUMBER
;

dx
: NUMBER
;

dy
: NUMBER
;

dz
: NUMBER
;

ex
: NUMBER
;

ey
: NUMBER
;

ez
: NUMBER
;

ppm
: NUMBER
;

projtext
: TEXT
;

code
: TEXT
| NUMBER
;

longitude
: NUMBER
;

conversionFactor
: NUMBER
;

value
: NUMBER
;

NUMBER
: PM? INT ('.' INT)? EXP?
;

TEXT
: '"' ('""' | ~'"')* '"'
;

PKEY
: [A-Z] [0-9A-Z]+
;

COMMENT_LINE
: '#' ~[\r\n]*
;

WS
: [ \r\n\t]+ -> skip
;

COMMA
: ','
;

LPAR
: '['
| '('
;

RPAR
: ']'
| ')'
;

EQ
: '='
;

fragment INT
: [0-9]+
;

fragment EXP
: [Ee] PM? INT
;

fragment PM
: '+'
| '-'
;
Loading
Loading