Skip To Content

Write to a GeoJSON File

The Write to a GeoJSON File Output Connector can be used to write GeoEvents, adapted as GeoJSON, to a GeoJSON file. For more information on examples of GeoJSON data record formatting, see the GeoJSON specification.

Usage notes

  • This output connector pairs the GeoJSON Outbound Adapter with the File Outbound Transport.
  • The registered server Folder can be specified using either an absolute path or UNC path.
  • If a UNC path is used, the Windows service account running GeoEvent Server needs read/write permission to the folder.
  • As a best practice, use absolute paths, for example C:\GeoEvent\input, for the Folder property.
  • The Subfolder property allows a subfolder relative to the registered server folder to be specified.
  • If you restart the output, GeoEvent Server will create a new file in the registered system folder path.
  • Depending on the rate and volume of processed GeoEvents, it is recommended to increase the File Rollover Size (KB) beyond the default 1 to avoid creating a cascade of JSON files which Windows cannot keep up with.
  • It is recommended to keep the File Header and File Footer set to the default values when writing GeoJSON objects to a file. This organizes the collection of GeoJSON objects as a FeatureCollection. For more information on The Write to a GeoJSON File Output Connector can be used to write GeoEvents, adapted as GeoJSON, to a GeoJSON file, see the GeoJSON specification.
  • Network latency adversely impacts the ability for GeoEvent Server to write high volumes of data to a file over a UNC path.

Parameters

ParameterDescription

Name

A descriptive name for the output connector used for reference in GeoEvent Manager.

Folder

The registered system folder beneath which files will be created and written to.

Filename Prefix

Specifies the name of the output file GeoEvent Server will create and write to. Appended to the file name is the date/time of when the file was first created. The default is output.

Example: A filename prefix of output created on March 19, 2019 at 2:30:05 pm, would result in a file named output2019-03-19_14-30-05.out.

Subfolder

Specifies the name of a subfolder (or subdirectory) relative to the registered system folder beneath which files will be created and written to. This property should be left blank if no subfolder exists. There is no default for this property.

Example: Specifying a registered system folder as C:\GeoEventand a subfolder as output will result in GeoEvent Servercreating its file at C:\GeoEvent\output assuming the file path exists and is accessible by the Windows service account running ArcGIS GeoEvent Server.

File Extension

The file extension used when creating new files. The default for this property is json, meaning GeoEvent Server will create a JSON file to write GeoJSON to.

File Rollover Method

Specifies the method used to determine when GeoEvent Server will stop writing to a current file and will start writing to a new file. The available File Rollover Method are By Size or By Time. The default is By Time.

  • By Size - GeoEvent Server will stop writing to the current file when a specified file size threshold is met. A new file will be created when the threshold is met.
  • By Time - GeoEvent Server will stop writing to the current file when a specified age threshold is met. A new file will be created when the threshold is met.

File Rollover Size (KB)

(Conditional)

Specifies the maximum size, in kilobytes (KB), a file can reach before GeoEvent Server stops writing to it. Once the maximum file size has been reached, GeoEvent Server will create a new file to start writing to. The default is 1kilobyte.

Property is shown when File Rollover Method is set to By Size and is hidden when set to By Time.

File Rollover Frequency

(Conditional)

Specifies the frequency in which GeoEvent Server will stop writing to the current file and instead will create a new file to start writing to. The available age-based rollover strategies include Hourly, Daily, or Monthly. The default is Hourly.

  • Hourly - GeoEvent Server will stop writing to the current file and will start writing to a new file each hour.
  • Daily - GeoEvent Server will stop writing to the current file and will start writing to a new file each day.
  • Monthly - GeoEvent Server will stop writing to the current file and will start writing to a new file each month.

Property is shown when File Rollover Method is set to By Time and is hidden when set to By Size.

File Cleanup Age (minutes)

Specifies the age, in minutes, from which old files will be managed in accordance to the File Cleanup Method. The default is 4320 minutes.

Example: Every 3 days (4320 minutes) files will either be deleted or archived.

File Cleanup Method

The method used for managing old files that have reached the File Cleanup Age (minutes). The available file cleanup methods are Delete and Archive. The default is Delete.

  • Delete - File that have reached the age specified by the File Cleanup Age (minutes)property will be deleted.
  • Archive - Files that have reached the age specified by the File Cleanup Age (minutes) property will be archived.

Archive Folder

(Conditional)

The registered system folder beneath which files that have reached the File Cleanup Age (minutes) will be archived. There is no default for this property.

Property is shown when File Cleanup Method is set to Archive and is hidden when set to Delete.

Archive Subfolder

(Conditional)

The subfolder relative to the Archive Folderbeneath which files that have reached the File Cleanup Age (minutes) will be archived. Leave this property unspecified if there is no subfolder for archiving files. There is no default for this property.

Property is shown when File Cleanup Method is set to Archive and is hidden when set to Delete.

Formatted JSON

Specifies whether the GeoJSON will be formatted (prettified). Also known as PJSON. The default for this property is No.

  • Yes - The GeoJSON will be formatted (prettified).
  • No - The GeoJSON will be not be formatted.

File Header

The character(s) that will be inserted at the start of every GeoJSON file. GeoEvent Server can use any normal ASCII character, or combination of characters, as a file header. The default is {"type": "FeatureCollection", "features": [.

File Footer

The character(s) that will be inserted at the end of every GeoJSON file. GeoEvent Server can use any normal ASCII character, or combination of characters, as a file footer. The default is ]}.

Event Separator

The character that will be used to separate each event record in the GeoJSON file. GeoEvent Server can use any normal ASCII character as an event separator. The default is , (comma).


In this topic
  1. Usage notes
  2. Parameters