forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			127 lines
		
	
	
	
		
			4.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			127 lines
		
	
	
	
		
			4.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import LayerConfig from "../Customizations/JSON/LayerConfig";
 | 
						|
import SimpleMetaTagger from "./SimpleMetaTagger";
 | 
						|
import {ExtraFunction} from "./ExtraFunction";
 | 
						|
import {Relation} from "./Osm/ExtractRelations";
 | 
						|
 | 
						|
 | 
						|
interface Params {
 | 
						|
    featuresPerLayer: Map<string, any[]>,
 | 
						|
    memberships: Map<string, { role: string, relation: Relation }[]>
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * Metatagging adds various tags to the elements, e.g. lat, lon, surface area, ...
 | 
						|
 *
 | 
						|
 * All metatags start with an underscore
 | 
						|
 */
 | 
						|
export default class MetaTagging {
 | 
						|
 | 
						|
 | 
						|
    /**
 | 
						|
     * An actor which adds metatags on every feature in the given object
 | 
						|
     * The features are a list of geojson-features, with a "properties"-field and geometry
 | 
						|
     */
 | 
						|
    static addMetatags(features: { feature: any; freshness: Date }[],
 | 
						|
                       relations: Map<string, { role: string, relation: Relation }[]>, 
 | 
						|
                       layers: LayerConfig[],
 | 
						|
                       includeDates = true) {
 | 
						|
 | 
						|
        for (const metatag of SimpleMetaTagger.metatags) {
 | 
						|
            if(metatag.includesDates && !includeDates){
 | 
						|
                // We do not add dated entries
 | 
						|
                continue;
 | 
						|
            }
 | 
						|
            try {
 | 
						|
                metatag.addMetaTags(features);
 | 
						|
            } catch (e) {
 | 
						|
                console.error("Could not calculate metatag for ", metatag.keys.join(","), ":", e)
 | 
						|
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        // The functions - per layer - which add the new keys
 | 
						|
        const layerFuncs = new Map<string, ((params: Params, feature: any) => void)>();
 | 
						|
        for (const layer of layers) {
 | 
						|
            layerFuncs.set(layer.id, this.createRetaggingFunc(layer));
 | 
						|
        }
 | 
						|
 | 
						|
        const featuresPerLayer = new Map<string, any[]>();
 | 
						|
        for (const feature of features) {
 | 
						|
 | 
						|
            const key = feature.feature._matching_layer_id;
 | 
						|
            if (!featuresPerLayer.has(key)) {
 | 
						|
                featuresPerLayer.set(key, [])
 | 
						|
            }
 | 
						|
            featuresPerLayer.get(key).push(feature.feature)
 | 
						|
        }
 | 
						|
 | 
						|
        for (const feature of features) {
 | 
						|
            // @ts-ignore
 | 
						|
            const key = feature.feature._matching_layer_id;
 | 
						|
            const f = layerFuncs.get(key);
 | 
						|
            if (f === undefined) {
 | 
						|
                continue;
 | 
						|
            }
 | 
						|
            try{
 | 
						|
                f({featuresPerLayer: featuresPerLayer, memberships: relations}, feature.feature)
 | 
						|
            }catch(e){
 | 
						|
                console.error(e)
 | 
						|
            }
 | 
						|
           
 | 
						|
        }
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
    private static createRetaggingFunc(layer: LayerConfig):
 | 
						|
        ((params: Params, feature: any) => void) {
 | 
						|
        const calculatedTags: [string, string][] = layer.calculatedTags;
 | 
						|
        if (calculatedTags === undefined) {
 | 
						|
            return undefined;
 | 
						|
        }
 | 
						|
 | 
						|
        const functions: ((params: Params, feature: any) => void)[] = [];
 | 
						|
        for (const entry of calculatedTags) {
 | 
						|
            const key = entry[0]
 | 
						|
            const code = entry[1];
 | 
						|
            if (code === undefined) {
 | 
						|
                continue;
 | 
						|
            }
 | 
						|
            const func = new Function("feat", "return " + code + ";");
 | 
						|
 | 
						|
            try{
 | 
						|
                
 | 
						|
           
 | 
						|
            const f = (featuresPerLayer, feature: any) => {
 | 
						|
                try{
 | 
						|
                    feature.properties[key] = func(feature);
 | 
						|
                }catch(e){
 | 
						|
                    console.error("Could not calculate a metatag defined by "+code+" due to "+e+". This is code defined in the theme. Are you the theme creator? Doublecheck your code. Note that the metatags might not be stable on new features")
 | 
						|
                }
 | 
						|
              
 | 
						|
            }
 | 
						|
            functions.push(f)
 | 
						|
            }catch(e){
 | 
						|
                console.error("Could not create a dynamic function: ", e)
 | 
						|
            }
 | 
						|
        }
 | 
						|
        return (params: Params, feature) => {
 | 
						|
            const tags = feature.properties
 | 
						|
            if (tags === undefined) {
 | 
						|
                return;
 | 
						|
            }
 | 
						|
 | 
						|
            const relations = params.memberships.get(feature.properties.id)
 | 
						|
            ExtraFunction.FullPatchFeature(params.featuresPerLayer, relations, feature);
 | 
						|
            try {
 | 
						|
                for (const f of functions) {
 | 
						|
                    f(params, feature);
 | 
						|
                }
 | 
						|
            } catch (e) {
 | 
						|
                console.error("While calculating a tag value: ", e)
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
}
 |