aiscr-aonline

Archeologie online

https://github.com/arup-cas/aiscr-aonline

Science Score: 54.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
    Links to: zenodo.org
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (7.1%) to scientific vocabulary
Last synced: 6 months ago · JSON representation ·

Repository

Archeologie online

Basic Info
Statistics
  • Stars: 1
  • Watchers: 3
  • Forks: 0
  • Open Issues: 8
  • Releases: 2
Created over 8 years ago · Last pushed over 1 year ago
Metadata Files
Readme License Citation

README.md

Archeologie online

DOI SWH

Institute of Archaeology of the CAS, Prague

Content

  • arup_map is the webapp to show heatmap based on OSM
  • solr has configuration files and test data. Solr version is 5.3 (http://apache.miloslavbrada.cz/lucene/solr/5.3.1)

Copy arup folder to unzipped solr-5.3.1/server/solr. From solr-5.3.1 execute bin/solr start -f. Solr will be running on port 8983: http://localhost:8983/solr

Configuration create folder ~/.arup conf.json in this directory merges with the default one in war.

#url of running solr
"solrHost": "http://localhost:8983/solr",

#core names
"mapCore": "arup",
"sourcesCore": "sources",
"practicesCore": "practices",


#default number of rows for solr queries
"solrDefaultRows" : 100,

#number of results to display
"displayRows" : 100,

#number of results in home page
"homeResultsNum":4

#zoom level for toggle view from heatmap to markers
"markerZoomLevel" : 13,

#maximum zoom level allowed
"maxZoom": 15,

#list of facets
"facets": ["database", "Type_area", "Type_site"],

#number of characters to display. If value is longer, will be cutted and ellipsis added
"facetMaxChars" : 80,

#Data directories. sources, practices and imagesDir are relative to dataDir
"dataDir":"/home/alberto/Projects/ARUP/data/",
"imagesDir":{"Atlas":"images_atlas/"},
"sourcesDir":"sources/",
"practicesDir":"practices/",


#List of source directories for indexing map records. 
#db: database, file: file to index, map: json file with field names map between csv a solr 
"indexMapSources": [{"db":"Atlas", "file":"/home/archeo/data/atlas.csv", "map":"/home/archeo/data/maps.json"}],

#The radius each datapoint will have (if not specified on the datapoint itself) 
"heatmapRadius": 0.05,

#The maximal opacity the highest value in the heatmap will have. (will be overridden if opacity set)
"heatmapMaxOpacity": 0.5,

#The minimum opacity the lowest value in the heatmap will have (will be overridden if opacity set)
"heatmapMinOpacity": 0.1,

An object that represents the gradient (syntax: number string [0,1] : color string)
"heatmapGradient":{
            "0.25": "rgb(0,0,255)",
            "0.45": "rgb(0,255,255)",
            "0.65": "rgb(0,255,0)",
            "0.95": "rgb(255,255,0)",
            "1.0": "rgb(255,128,0)"
        },

Index run from servlet. Indexing map records http://localhost:8084/arupmap/data?action=INDEXMAP

Indexing sources http://localhost:8084/arupmap/data?action=INDEXSOURCES

Indexing practices http://localhost:8084/arupmap/data?action=INDEXPRACTICES

Owner

  • Name: Institute of Archaeology CAS, Prague
  • Login: ARUP-CAS
  • Kind: organization
  • Email: amcr@arup.cas.cz
  • Location: Prague, Czech Republic

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Novák"
  given-names: "David"
  orcid: "https://orcid.org/0000-0001-6592-6291"
  affiliation: "Czech Academy of Sciences, Institute of Archaeology, Prague"
- family-names: "Hasil"
  given-names: "Jan"
  orcid: "https://orcid.org/0000-0002-4643-8767"
  affiliation: "Czech Academy of Sciences, Institute of Archaeology, Prague"
- family-names: "Hernandez"
  given-names: "Alberto"
  affiliation: "Inovatika s.r.o"
- family-names: "Kudela"
  given-names: "Petr"
  affiliation: "Inovatika s.r.o"
title: "Archeologie online"
abstract: "Archaeology Online serves for presentation and access to information resources related to archaeology in the Czech Republic and exploring the past of its landscape."
version: 1.0.1
doi: 10.5281/zenodo.8329140
date-released: 2023-09-08
url: "https://github.com/ARUP-CAS/aiscr-aonline"
repository-code: "https://github.com/ARUP-CAS/aiscr-aonline"
license: GPL-3.0-or-later
type: software

GitHub Events

Total
Last Year

Dependencies

arup_map/pom.xml maven
  • org.apache.velocity:velocity-tools 2.0 compile
  • javax:javaee-web-api 7.0 provided
  • au.com.bytecode:opencsv 2.4
  • commons-io:commons-io 2.4
  • commons-logging:commons-logging 1.1.3
  • org.apache.solr:solr-solrj 5.0.0
  • org.apache.velocity:velocity 1.7
  • org.json:json 20140107