LocalFilenamePatterns Data Type

Configure patterns for auto-detection of input files in the local base directory. Resolving input files is only provided for files in the base directory not for any external resources.

Properties
name data type description
gtfs Pattern Patterns for matching GTFS zip-files or directories. If the filename contains the given pattern it is considered a match. Any legal Java Regular expression is allowed.

This parameter is optional.

Default: (?i)gtfs - Match all filenames that contain "gtfs". The default pattern is NOT case sensitive.

netex Pattern Patterns for matching NeTEx zip files or directories. If the filename contains the given pattern it is considered a match. Any legal Java Regular expression is allowed.

This parameter is optional.

Default: (?i)netex - Match all filenames that contain "netex". The default pattern is NOT case sensitive.

osm Pattern Pattern for matching Open Street Map input files. If the filename contains the given pattern it is considered a match. Any legal Java Regular expression is allowed.

This parameter is optional.

Default: (?i)(.pbf|.osm|.osm.xml)$ - Match all filenames that ends with suffix .pbf, .osm or .osm.xml. The default pattern is NOT case sensitive.

dem Pattern Pattern for matching elevation DEM files. If the filename contains the given pattern it is considered a match. Any legal Java Regular expression is allowed.

This parameter is optional.

Default: (?i).tiff?$ - Match all filenames that ends with suffix .tif or .tiff. The default pattern is NOT case sensitive.

Example

{
  "gtfs" : { },
  "netex" : { },
  "osm" : { },
  "dem" : { }
}