Skip to content
/ ramap Public

The radioactive cesium, strontium and plutonium deposition map 🌐

License

Notifications You must be signed in to change notification settings

h8nor/ramap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Website info

Data taken from open sources for 2018.
The site was created with the support of the Leaflet.

Structure of the base site

  1. To add a new file with geopoints, its name must be added to the file array.
  2. The file with geopoints must contain the structure:
{
	"type": "FeatureCollection",
	"features": [...]
}
  1. Description of object "features":
{
	"type": "Feature",
	"properties": {
		"name": <DESTINATION>,
		"cs": {
			"cnt": <COUNT_TESTS>,
			"avg": <AVERAGE_POWER>,
			"min": <MIN_POWER>,
			"max": <MAX_POWER>
		},
		"sr": {
			"cnt": <COUNT_STUDIES>,
			"avg": <AVERAGE_POWER>,
			"min": <MIN_POWER>,
			"max": <MAX_POWER>
		},
		"pu": {
			"cnt": <COUNT_STUDIES>,
			"avg": <AVERAGE_POWER>,
			"min": <MIN_POWER>,
			"max": <MAX_POWER>
		},
		"pw": <POWER>,
		"radius-size": <POINT_RADIUS>,
		"upd": <YYYY-MM-DD>
	},
	"geometry": {
		"type": "Point",
		"coordinates": [<LON>, <LAT>]
	},
	"id": <NODE_ID>
}

All values have a text data type and must be enclosed in double quotation marks, unless otherwise specified.

Check the circuit through json validator.

Notes for objects "properties":

  • Geopoints are drawn on the map according to the data of the "cs" object, therefore it is better to declare it
  • The "sr" and "pu" objects is optional

Notes for values:

  • <AVERAGE_POWER> must be either number of average measured dose
  • <COUNT_TESTS> must be either integer number of tests
  • <MAX_POWER> must be either number of maximum measured dose
  • <MIN_POWER> must be either number of minimum measured dose
  • <NODE_ID> can be as point identifier
  • <POINT_RADIUS> can be either integer number point radius
  • <POWER> must be either "Ci" (Curie) or "kBq" (k Becquerel)
  • <YYYY-MM-DD> can be as date test (it's advisable to follow the example format)

For values <AVERAGE_POWER> and <MIN_POWER> use negative value if you want to specify value less than declared.

In the long-term plans desire

You can make a pull-request with processed data from list sources, or offer a new data source.

Possible problems

Downloading geopoints isn't optimized and with a large number can stop script execution.

Licensing

Website is licensed under the License.

About

The radioactive cesium, strontium and plutonium deposition map 🌐

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published